metabypass
Version:
Solve any type of captcha effortlessly with our AI-powered solutions. From text-based captchas to Google reCAPTCHA and hCAPTCHA
14 lines (13 loc) • 447 B
JavaScript
const getToken = require("./authentication");
const { captchaSolver, getBase64Encoded, getBase64LocalCaptcha } = require("./text_captcha");
const { getRecaptchaId, getRecaptchaResult } = require("./recaptcha_v2");
const { getRecaptchaResponse } = require("./recaptcha_v3");
module.exports = {
getToken,
captchaSolver,
getBase64Encoded,
getRecaptchaId,
getRecaptchaResult,
getRecaptchaResponse,
getBase64LocalCaptcha,
};