File size: 11,748 Bytes
63c5b6b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | import { spawnSync } from 'child_process';
import fs from 'fs';
import path from 'path';
import os from 'os';
import { Readable } from 'stream';
import vosk from 'vosk-koffi';
import wav from 'wav';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
vosk.setLogLevel(-1);
const MODEL_DIR = path.resolve(__dirname, "model");
const model = new vosk.Model(MODEL_DIR);
const SOURCE_FILE = "sound.mp3";
const OUT_FILE = "out.wav";
const MAIN_FRAME = "iframe[title='reCAPTCHA']";
const BFRAME = "iframe[src*='google.com/recaptcha'][src*='bframe']";
const CHALLENGE = "body > div > div";
class Mutex {
constructor(name = "Mutex") {
this.name = name;
this._locked = false;
this._queue = [];
}
async lock(tag) {
if (this._locked) {
if (tag) {
console.log(`[${this.name}] ${tag} waiting`);
}
return new Promise((resolve) => {
this._queue.push(() => {
this._lock(tag);
resolve();
});
});
}
this._lock(tag);
}
unlock(tag) {
if (this._locked) {
if (tag) {
console.log(`[${this.name}] ${tag} unlocked`);
}
this._locked = false;
this._queue.shift()?.();
}
}
_lock(tag) {
this._locked = true;
if (tag) {
console.log(`[${this.name}] ${tag} locked`);
}
}
}
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
function createDir() {
const dir = path.resolve(os.tmpdir(), "reSOLVER-" + Math.random().toString().slice(2));
if (fs.existsSync(dir)) {
fs.rmSync(dir, { recursive: true });
}
fs.mkdirSync(dir, { recursive: true });
return dir;
}
function convert(dir, ffmpeg = "ffmpeg") {
const args = [
"-loglevel",
"error",
"-i",
SOURCE_FILE,
"-acodec",
"pcm_s16le",
"-ac",
"1",
"-ar",
"16000",
OUT_FILE,
];
spawnSync(ffmpeg, args, { cwd: dir });
}
function recognize(dir) {
return new Promise((resolve) => {
const stream = fs.createReadStream(path.resolve(dir, OUT_FILE), { highWaterMark: 4096 });
const reader = new wav.Reader();
const readable = new Readable().wrap(reader);
reader.on("format", async ({ audioFormat, sampleRate, channels }) => {
if (audioFormat != 1 || channels != 1) {
throw new Error("Audio file must be WAV with mono PCM.");
}
const rec = new vosk.Recognizer({ model, sampleRate });
rec.setMaxAlternatives(10);
rec.setWords(true);
rec.setPartialWords(true);
for await (const data of readable) {
const end_of_speech = rec.acceptWaveform(data);
if (end_of_speech) {
const result = rec
.result()
.alternatives.sort((a, b) => b.confidence - a.confidence)[0].text;
stream.close(() => resolve(result));
}
}
rec.free();
});
stream.pipe(reader);
});
}
async function getText(res, ffmpeg = "ffmpeg") {
const tempDir = createDir();
fs.writeFileSync(path.resolve(tempDir, SOURCE_FILE), await res.body());
convert(tempDir, ffmpeg);
const result = await recognize(tempDir);
fs.rmSync(tempDir, { recursive: true });
return result;
}
export async function solve(page, { delay = 64, wait = 5000, retry = 3, ffmpeg = "ffmpeg" } = {}) {
console.log("Starting reCAPTCHA solver...");
try {
await page.waitForSelector('iframe', { state: "attached", timeout: wait });
console.log("Found iframes on page");
const allIframes = await page.$$('iframe');
console.log(`Total iframes found: ${allIframes.length}`);
for (let i = 0; i < allIframes.length; i++) {
const src = await allIframes[i].getAttribute('src');
const title = await allIframes[i].getAttribute('title');
console.log(`Iframe ${i}: src=${src}, title=${title}`);
}
} catch (error) {
console.error("Error finding iframes:", error.message);
throw new Error("No reCAPTCHA detected");
}
let invisible = false;
let b_iframe = null;
const bframeSelectors = [
"iframe[src*='/recaptcha/api2/bframe']",
"iframe[src*='/recaptcha/enterprise/bframe']",
"iframe[src*='bframe']"
];
for (const selector of bframeSelectors) {
try {
await page.waitForSelector(selector, { state: "attached", timeout: 2000 });
b_iframe = await page.$(selector);
if (b_iframe) {
console.log(`Found bframe with selector: ${selector}`);
break;
}
} catch {
continue;
}
}
if (b_iframe === null) {
console.log("Bframe not found yet, checking main frame...");
try {
await page.waitForSelector(MAIN_FRAME, { state: "attached", timeout: wait });
const iframe = await page.$(MAIN_FRAME);
if (iframe === null) {
throw new Error("Could not find reCAPTCHA iframe");
}
const box_page = await iframe.contentFrame();
if (box_page === null) {
throw new Error("Could not find reCAPTCHA iframe content");
}
invisible = (await box_page.$("div.rc-anchor-invisible")) ? true : false;
console.log("invisible:", invisible);
if (invisible === true) {
return false;
} else {
const label = await box_page.$("#recaptcha-anchor-label");
if (label === null) {
throw new Error("Could not find reCAPTCHA label");
}
console.log("Clicking reCAPTCHA checkbox...");
await label.click();
await sleep(2000);
for (const selector of bframeSelectors) {
b_iframe = await page.$(selector);
if (b_iframe) {
console.log(`Found bframe after click: ${selector}`);
break;
}
}
}
} catch (error) {
console.error("Error handling main frame:", error.message);
throw new Error("Could not find reCAPTCHA popup iframe");
}
}
if (b_iframe === null) {
throw new Error("Could not find reCAPTCHA popup iframe after all attempts");
}
const bframe = await b_iframe.contentFrame();
if (bframe === null) {
throw new Error("Could not find reCAPTCHA popup iframe content");
}
await sleep(1000);
const challenge = await bframe.$(CHALLENGE);
if (challenge === null) {
console.log("No challenge found yet, this might be OK");
return false;
}
const required = await challenge.evaluate(
(elm) => !elm.classList.contains("rc-footer"),
);
console.log("action required:", required);
if (required === false) {
return false;
}
await bframe.waitForSelector("#recaptcha-audio-button", { timeout: wait });
const audio_button = await bframe.$("#recaptcha-audio-button");
if (audio_button === null) {
throw new Error("Could not find reCAPTCHA audio button");
}
const mutex = new Mutex();
await mutex.lock("init");
let passed = false;
let answer = Promise.resolve("");
const listener = async (res) => {
if (res.headers()["content-type"] === "audio/mp3") {
console.log(`got audio from ${res.url()}`);
answer = new Promise((resolve) => {
getText(res, ffmpeg)
.then(resolve)
.catch(() => undefined);
});
mutex.unlock("get sound");
} else if (
res.url().startsWith("https://www.google.com/recaptcha/api2/userverify") ||
res.url().startsWith("https://www.google.com/recaptcha/enterprise/userverify")
) {
const raw = (await res.body()).toString().replace(")]}'\n", "");
const json = JSON.parse(raw);
passed = json[2] === 1;
mutex.unlock("verified");
}
};
page.on("response", listener);
await audio_button.click();
let tried = 0;
while (passed === false) {
if (tried++ >= retry) {
throw new Error("Could not solve reCAPTCHA");
}
await Promise.race([
mutex.lock("ready"),
sleep(wait).then(() => {
throw new Error("No Audio Found");
}),
]);
await bframe.waitForSelector("#audio-source", { state: "attached", timeout: wait });
await bframe.waitForSelector("#audio-response", { timeout: wait });
console.log("recognized:", await answer);
const input = await bframe.$("#audio-response");
if (input === null) {
throw new Error("Could not find reCAPTCHA audio input");
}
await input.type(await answer, { delay });
const button = await bframe.$("#recaptcha-verify-button");
if (button === null) {
throw new Error("Could not find reCAPTCHA verify button");
}
await button.click();
await mutex.lock("done");
console.log("passed:", passed);
}
page.off("response", listener);
await sleep(1000);
let token = null;
try {
const iframe = await page.$(MAIN_FRAME);
if (iframe) {
const box_page = await iframe.contentFrame();
if (box_page) {
const textarea = await box_page.$('#g-recaptcha-response');
if (textarea) {
token = await textarea.evaluate(el => el.value);
console.log("Token found in textarea:", token?.substring(0, 50) + "...");
}
}
}
} catch (error) {
console.log("Error extracting token from iframe:", error.message);
}
if (!token) {
try {
const textarea = await page.$('#g-recaptcha-response');
if (textarea) {
token = await textarea.evaluate(el => el.value);
console.log("Token found in main page:", token?.substring(0, 50) + "...");
}
} catch (error) {
console.log("Error extracting token from main page:", error.message);
}
}
if (!token) {
try {
const allTextareas = await page.$('textarea');
for (const textarea of allTextareas) {
const name = await textarea.getAttribute('name');
const id = await textarea.getAttribute('id');
if (name === 'g-recaptcha-response' || id === 'g-recaptcha-response') {
token = await textarea.evaluate(el => el.value);
console.log("Token found in textarea by attribute:", token?.substring(0, 50) + "...");
break;
}
}
} catch (error) {
console.log("Error searching all textareas:", error.message);
}
}
console.log("Final token:", token ? `${token.substring(0, 50)}... (length: ${token.length})` : "not found");
return { success: true, token };
} |