recaptcha-v2-solver
Version:
ReCaptcha v2 bypass solution using three methods: Audio transcription, Visual (Gemini), and 2Captcha
21 lines (18 loc) • 587 B
JavaScript
const winston = require('winston');
function createLogger(options = {}) {
const { level = 'info' } = options;
return winston.createLogger({
level: level,
format: winston.format.combine(
winston.format.timestamp(),
winston.format.colorize(),
winston.format.printf(({ level, message, timestamp }) => {
return `${timestamp} ${level}: ${message}`;
})
),
transports: [
new winston.transports.Console()
]
});
}
module.exports = createLogger;