Spaces:
Sleeping
Sleeping
File size: 31,580 Bytes
98e9a75 ae0a0ca 0e7a465 9609abc 61c2768 98e9a75 9609abc 61c2768 ae0a0ca 98e9a75 ae0a0ca 9609abc ae0a0ca 98e9a75 96ef720 ae0a0ca 495f8f5 ae0a0ca 5c77170 ae0a0ca 5c77170 ae0a0ca 06875d1 ae0a0ca ab2fb2f ae0a0ca 06875d1 ae0a0ca 7bc4d92 495f8f5 7bc4d92 5c77170 96ca549 5c77170 7bc4d92 98e9a75 61c2768 63f556d 61c2768 63f556d 61c2768 63f556d 61c2768 63f556d 61c2768 98e9a75 61c2768 5c77170 98e9a75 13fe225 98e9a75 ae0a0ca 13fe225 ae0a0ca 06875d1 61c2768 7bc4d92 ae0a0ca 98e9a75 9609abc 98e9a75 |
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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 |
import * as http from 'http';
import * as url from 'url';
import * as path from 'path';
import { chromium } from 'playwright';
import { locks } from 'web-locks';
import crypto from 'crypto';
import fs from 'fs';
import { setTimeout } from 'timers/promises';
import { WebSocketServer } from 'ws';
import UserAgent from 'user-agents';
import { v4 as uuidv4 } from 'uuid';
// npm i playwright
// npm i web-locks
// npm i ws
// npm i user-agents
// npm i uuid
// nohup cloudflared tunnel --url http://localhost:8080 --no-autoupdate & (or setsid)
// setsid node playwright.mjs (nohup doesnt work)
// curl 'https://gowah44030-playwright.hf.space/..
// https://gowah44030-playwright.hf.space/screenshot?js=1&url=https://www.investing.com
globalThis.state = Object.assign(globalThis.state||{}, {
browser: null,
context: null,
});
async function text_from_url(url, cookie) {
let { browser, context } = globalThis.state;
if (!browser) {
await locks.request('playwright_browser', async lock => {
browser = globalThis.state.browser = await chromium.launch();
context = globalThis.state.context = await browser.newContext({
javaScriptEnabled: false
}/*devices['iPhone 11']*/);
});
}
const page = await context.newPage();
if (cookie) {
if (cookie.endsWith(';')) cookie = cookie.slice(0, -1);
let cookies = cookie.split(';');
cookies = cookies.map(it=>{
let [name, value] = it.split('=');
return {name: name.trim(), value: value.trim(), url};
});
context.addCookies(cookies);
}
await context.route("**/*.{png,jpg,jpeg,css,js}", route => route.abort());
await page.goto(url);
let text;
let i = 0;
while (true) {
let new_text = await page.evaluate(() => document.body.innerText);
if (i > 5 || new_text?.length > 200) {
text = new_text;
break;
}
i++;
await new Promise(resolve=>setTimeout(resolve, 1000));
}
await page.close();
//await context.close();
// await browser.close();
return text;
}
async function screenshot(url, cookie, js_enabled) {
let { browser, context } = globalThis.state;
if (!browser) {
console.log('launch browser');
await locks.request('playwright_browser', async lock => {
browser = globalThis.state.browser = await chromium.launch();
context = globalThis.state.context = await browser.newContext({
javaScriptEnabled: js_enabled
}/*devices['iPhone 11']*/);
});
}
const page = await context.newPage();
if (cookie) {
if (cookie.endsWith(';')) cookie = cookie.slice(0, -1);
let cookies = cookie.split(';');
cookies = cookies.map(it=>{
let [name, value] = it.split('=');
return {name: name.trim(), value: value.trim(), url};
});
context.addCookies(cookies);
}
//await context.route("**/*.{png,jpg,jpeg,css,js}", route => route.abort());
await page.goto(url);
await setTimeout(2000);
// let id = crypto.randomUUID();
// let path = `/code/${id}.png`;
// await page.screenshot({ path, fullPage: true });
const buffer = await page.screenshot({fullPage: true});
await page.close();
//await context.close();
// await browser.close();
return buffer;
}
async function evaluate(url, code) {
let { browser, context } = globalThis.state;
if (!browser) {
console.log('launch browser');
await locks.request('playwright_browser', async lock => {
browser = globalThis.state.browser = await chromium.launch({
args: ['--disable-web-security'] //https://github.com/microsoft/playwright/issues/17631
});
context = globalThis.state.context = await browser.newContext({
javaScriptEnabled: true,
}/*devices['iPhone 11']*/);
});
}
const page = await context.newPage();
page.on('console', async (msg) => {console.log(msg);});
//await context.route("**/*.{png,jpg,jpeg,css,js}", route => route.abort());
await page.goto(url);
let result = await page.evaluate(code);
await page.close();
return result;
}
async function test_bot(url) {
// https://gist.github.com/nicoandmee/1ec1b6a07c94f82df41d2496194ef3a6
// https://gowah44030-playwright.hf.space/bot?url=https://nowsecue.nl
const UINT32_MAX = (2 ** 32) - 1;
const WEBGL_RENDERERS = ['ANGLE (NVIDIA Quadro 2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (NVIDIA Quadro K420 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro 2000M Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro K2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 3800 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (AMD Radeon R9 200 Series Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 3000 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Mobile Intel(R) 4 Series Express Chipset Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) G33/G31 Express Chipset Family Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (Intel(R) Graphics Media Accelerator 3150 Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (Intel(R) G41 Express Chipset Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 6150SE nForce 430 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 4000)', 'ANGLE (Mobile Intel(R) 965 Express Chipset Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family)', 'ANGLE (NVIDIA GeForce GTX 760 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (NVIDIA GeForce GTX 760 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (NVIDIA GeForce GTX 760 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (AMD Radeon HD 6310 Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Graphics Media Accelerator 3600 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) G33/G31 Express Chipset Family Direct3D9 vs_0_0 ps_2_0)', 'ANGLE (AMD Radeon HD 6320 Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) G33/G31 Express Chipset Family (Microsoft Corporation - WDDM 1.0) Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (Intel(R) G41 Express Chipset)', 'ANGLE (ATI Mobility Radeon HD 5470 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Q45/Q43 Express Chipset Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 310M Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) G41 Express Chipset Direct3D9 vs_3_0 ps_3_0)', 'ANGLE (Mobile Intel(R) 45 Express Chipset Family (Microsoft Corporation - WDDM 1.1) Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GT 440 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 4300/4500 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 7310 Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics)', 'ANGLE (Intel(R) 4 Series Internal Chipset Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon(TM) HD 6480G Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 3200 Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 7800 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) G41 Express Chipset (Microsoft Corporation - WDDM 1.1) Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 210 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GT 630 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 7340 Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) 82945G Express Chipset Family Direct3D9 vs_0_0 ps_2_0)', 'ANGLE (NVIDIA GeForce GT 430 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 7025 / NVIDIA nForce 630a Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Q35 Express Chipset Family Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (Intel(R) HD Graphics 4600 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 7520G Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD 760G (Microsoft Corporation WDDM 1.1) Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GT 220 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 9500 GT Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9 vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Graphics Media Accelerator HD Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 9800 GT Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Q965/Q963 Express Chipset Family (Microsoft Corporation - WDDM 1.0) Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (NVIDIA GeForce GTX 550 Ti Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Q965/Q963 Express Chipset Family Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (AMD M880G with ATI Mobility Radeon HD 4250 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GTX 650 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Mobility Radeon HD 5650 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 4200 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 7700 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) G33/G31 Express Chipset Family)', 'ANGLE (Intel(R) 82945G Express Chipset Family Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (SiS Mirage 3 Graphics Direct3D9Ex vs_2_0 ps_2_0)', 'ANGLE (NVIDIA GeForce GT 430)', 'ANGLE (AMD RADEON HD 6450 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon 3000 Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) 4 Series Internal Chipset Direct3D9 vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Q35 Express Chipset Family (Microsoft Corporation - WDDM 1.0) Direct3D9Ex vs_0_0 ps_2_0)', 'ANGLE (NVIDIA GeForce GT 220 Direct3D9 vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 7640G Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD 760G Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 6450 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GT 640 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 9200 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GT 610 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 6290 Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Mobility Radeon HD 4250 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 8600 GT Direct3D9 vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 5570 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 6800 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) G45/G43 Express Chipset Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 4600 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro NVS 160M Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 3000)', 'ANGLE (NVIDIA GeForce G100)', 'ANGLE (AMD Radeon HD 8610G + 8500M Dual Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Mobile Intel(R) 4 Series Express Chipset Family Direct3D9 vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 7025 / NVIDIA nForce 630a (Microsoft Corporation - WDDM) Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) Q965/Q963 Express Chipset Family Direct3D9 vs_0_0 ps_2_0)', 'ANGLE (AMD RADEON HD 6350 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 5450 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce 9500 GT)', 'ANGLE (AMD Radeon HD 6500M/5600/5700 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Mobile Intel(R) 965 Express Chipset Family)', 'ANGLE (NVIDIA GeForce 8400 GS Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9 vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GTX 560 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GT 620 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GTX 660 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon(TM) HD 6520G Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA GeForce GT 240 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (AMD Radeon HD 8240 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro NVS 140M)', 'ANGLE (Intel(R) Q35 Express Chipset Family Direct3D9 vs_0_0 ps_2_0)'];
function getBrowserfingerprint(buid, emulateFlag = 'desktop') {
const generateUserAgent = new UserAgent({
deviceCategory: emulateFlag,
});
const fingerprints = Array(1000).fill().map(() => generateUserAgent());
const WEBGL_PARAMETER = {
WEBGL_VENDOR: 'Google Inc.',
WEBGL_RENDERER: WEBGL_RENDERERS[Math.floor(Math.random() * WEBGL_RENDERERS.length)],
};
const fingerprint = Object.assign(fingerprints[Math.floor(Math.random() * fingerprints.length)].data, WEBGL_PARAMETER);
const buidHash = crypto.createHash('sha512').update(buid).digest();
fingerprint.BUID = buidHash.toString('base64');
fingerprint.random = (index) => {
const idx = index % 124;
if (idx < 62) return buidHash.readUInt32BE(idx) / UINT32_MAX;
return buidHash.readUInt32LE(idx - 62) / UINT32_MAX;
};
return fingerprint;
}
async function cloak(page, fingerprint, {
minWidth = 1280,
minHeight = 1024,
} = {}) {
console.debug(`fingerprint-webgl-vendor-${fingerprint.WEBGL_VENDOR}`);
console.debug(`fingerprint-webgl-renderer-${fingerprint.WEBGL_RENDERER}`);
console.debug(`fingerprint-ua-ua-${fingerprint.userAgent}`);
console.debug(`fingerprint-ua-platform-${fingerprint.platform}`);
console.debug(`fingerprint-deviceCategory-${fingerprint.deviceCategory}`);
console.debug(`fingerprint-viewportHeight-${fingerprint.viewportHeight}`);
console.debug(`fingerprint-viewportWidth-${fingerprint.viewportWidth}`);
const LOG_OVERRIDE = true;
if (LOG_OVERRIDE) {
await page.on('console', (msg) => {
if (msg && msg.text) {
if (typeof msg.text === 'function') {
debugConsole('PAGE LOG:', msg.text());
} else {
debugConsole('PAGE LOG:', msg.text);
}
} else {
debugConsole('PAGE LOG:', msg);
}
});
await page.on('pageerror', (err) => debug('PAGE ERR:', err));
}
const DIMENSION = {
isLandscape: true,
width: minWidth > fingerprint.viewportWidth ? minWidth : (parseInt(minWidth + (fingerprint.random(0)
* (fingerprint.screenWidth - minWidth)), 10)),
height: minHeight > fingerprint.viewportHeight ? minHeight : (parseInt(minHeight + (fingerprint.random(1)
* (fingerprint.screenHeight - minHeight)), 10)),
};
await page.addInitScript(async (fingerprint, LO, D) => {
const logOverride = (key, value) => {
if (!LO) return value;
console.warn(`Overriden: ${key}=${value}`);
return value;
};
function buildPlugin(spec) {
const plugin = spec;
plugin.length = spec.mimeTypes.length;
spec.mimeTypes.forEach((m, i) => {
plugin[i] = m;
Object.assign(m, {
enabledPlugin: plugin,
});
});
delete spec.mimeTypes;
return plugin;
}
const plugins = {
length: 4,
0: buildPlugin({
mimeTypes: [{
type: 'application/x-google-chrome-pdf',
suffixes: 'pdf',
description: 'Portable Document Format',
enabledPlugin: true,
}],
name: 'Chrome PDF Plugin',
description: 'Portable Document Format',
filename: 'internal-pdf-viewer',
}),
1: buildPlugin({
mimeTypes: [{
type: 'application/pdf',
suffixes: 'pdf',
description: '',
extensions: 'pdf',
enabledPlugin: true,
}],
name: 'Chrome PDF Viewer',
description: '',
filename: 'mhjfbmdgcfjbbpaeojofohoefgiehjai',
}),
2: buildPlugin({
mimeTypes: [{
type: 'application/x-nacl',
suffixes: '',
description: 'Native Client Executable',
enabledPlugin: true,
}, {
type: 'application/x-pnacl',
suffixes: '',
description: 'Portable Native Client Executable',
enabledPlugin: true,
},
{
type: 'text/html',
suffixes: '',
description: '',
enabledPlugin: true,
},
{
type: 'application/x-ppapi-vysor',
suffixes: '',
description: '',
enabledPlugin: true,
},
{
type: 'application/x-ppapi-vysor-audio',
suffixes: '',
description: '',
enabledPlugin: true,
},
],
name: 'Native Client',
description: '',
filename: fingerprint.platform === 'Win32' ? 'pepflashplayer.dll' : 'internal-nacl-plugin',
}),
3: buildPlugin({
mimeTypes: [{
type: 'application/x-ppapi-widevine-cdm',
suffixes: '',
description: 'Widevine Content Decryption Module',
enabledPlugin: true,
}],
name: 'Widevine Content Decryption Module',
description: 'Enables Widevine licenses for playback of HTML audio/video content. (version: 1.4.9.1070)',
filename: fingerprint.platform === 'Win32' ? 'widevinecdmadapter.dll' : 'widevinecdmadapter.plugin',
}),
};
window.screen.__defineGetter__('width', () => logOverride('width', fingerprint.screenWidth));
window.screen.__defineGetter__('availWidth', () => logOverride('availWidth', fingerprint.screenWidth));
window.__defineGetter__('innerWidth', () => logOverride('innerWidth', D.width));
window.__defineGetter__('outerWidth', () => logOverride('outerWidth', D.width));
window.screen.__defineGetter__('height', () => logOverride('height', fingerprint.screenHeight));
window.screen.__defineGetter__('availHeight', () => logOverride('availHeight', fingerprint.screenHeight));
window.__defineGetter__('innerHeight', () => logOverride('innerHeight', D.height - 74));
window.__defineGetter__('outerHeight', () => logOverride('outerHeight', D.height));
window.navigator.__defineGetter__('userAgent', () => logOverride('userAgent', fingerprint.userAgent));
window.navigator.__defineGetter__('platform', () => logOverride('platform', fingerprint.platform));
window.navigator.__defineGetter__('appName', () => logOverride('appName', fingerprint.appName));
window.navigator.__defineGetter__('appVersion', () => logOverride('appVersion', fingerprint.userAgent.substring(fingerprint.userAgent.indexOf('/') + 1, fingerprint.userAgent.length)));
const newProto = navigator.__proto__;
delete newProto.webdriver;
navigator.__proto__ = newProto
window.navigator.__defineGetter__('languages', () => logOverride('languages', ['en-US,en']));
window.navigator.__defineGetter__('getUserMedia', () => logOverride('getUserMedia', undefined));
window.navigator.__defineGetter__('webkitGetUserMedia', () => logOverride('webkitGetUserMedia', undefined));
// reject webRTC fingerprinting
window.__defineGetter__('MediaStreamTrack', () => logOverride('MediaStreamTrack', undefined));
window.__defineGetter__('RTCPeerConnection', () => logOverride('RTCPeerConnection', undefined));
window.__defineGetter__('RTCSessionDescription', () => logOverride('RTCSessionDescription', undefined));
window.__defineGetter__('webkitMediaStreamTrack', () => logOverride('webkitMediaStreamTrack', undefined));
window.__defineGetter__('webkitRTCPeerConnection', () => logOverride('webkitRTCPeerConnection', undefined));
window.__defineGetter__('webkitRTCSessionDescription', () => logOverride('webkitRTCSessionDescription', undefined));
window.navigator.__defineGetter__('getUserMedia', () => logOverride('getUserMedia', undefined));
window.navigator.__defineGetter__('webkitGetUserMedia', () => logOverride('webkitGetUserMedia', undefined));
window.navigator.__defineGetter__('plugins', () => logOverride('plugins', plugins));
// handle canvas
class WebGLRenderingContext {
constructor(cvs) {
this.extension = {
UNMASKED_VENDOR_WEBGL: 37445,
UNMASKED_RENDERER_WEBGL: 37446,
};
this.canvas = cvs;
this.parameter = '';
this.viewportWidth = cvs.width;
this.viewportHeight = cvs.height;
this.supportedExtensions = ['ANGLE_instanced_arrays', 'EXT_blend_minmax', 'EXT_color_buffer_half_float', 'EXT_frag_depth', 'EXT_shader_texture_lod', 'EXT_texture_filter_anisotropic', 'WEBKIT_EXT_texture_filter_anisotropic', 'EXT_sRGB', 'OES_element_index_uint', 'OES_standard_derivatives', 'OES_texture_float', 'OES_texture_float_linear', 'OES_texture_half_float', 'OES_texture_half_float_linear', 'OES_vertex_array_object', 'WEBGL_color_buffer_float', 'WEBGL_compressed_texture_s3tc', 'WEBKIT_WEBGL_compressed_texture_s3tc', 'WEBGL_compressed_texture_s3tc_srgb', 'WEBGL_debug_renderer_info', 'WEBGL_debug_shaders', 'WEBGL_depth_texture', 'WEBKIT_WEBGL_depth_texture', 'WEBGL_draw_buffers', 'WEBGL_lose_context', 'WEBKIT_WEBGL_lose_context'];
}
getExtension() {
return this.extension;
}
getParameter() {
return this.extension;
}
getSupportedExtensions() {
return this.supportedExtensions;
}
}
const canvas = document.createElement('canvas');
const canvasProto = Object.getPrototypeOf(canvas);
const origGetContext = canvasProto.getContext;
canvasProto.getContext = function getContext(...args) {
const context = origGetContext && (origGetContext.call(this, ...args) || origGetContext.call(this, args[0]));
if (!context) {
logOverride('canvas.getContext', 'new WebGLRenderingContext()');
return new WebGLRenderingContext(this);
}
return context;
};
canvasProto.getContext.toString = canvasProto.getContext.toString();
function hookPrototypeMethods(prefix, object) {
if (!object) return;
const originals = {};
const prototype = Object.getPrototypeOf(object);
Object
.getOwnPropertyNames(prototype)
.filter((n) => {
try {
return typeof prototype[n] === 'function';
} catch (error) {
return false;
}
})
.forEach((n) => {
originals[n] = prototype[n];
prototype[n] = function fn(...args) {
if (prefix === '2d' && (n === 'strokeText' || n === 'fillText')) {
const temp = Array.from(args);
temp[0] = fingerprint.BUID;
temp[1] = Math.max(0, temp[1] - 2);
temp[2] = Math.max(0, temp[2] - 2);
originals[n].call(this, ...temp);
}
const result = originals[n].call(this, ...args);
if (LO) {
let jsonResult;
try {
jsonResult = JSON.stringify(result);
} catch (e) {}
console.warn('function called', prefix, n, JSON.stringify(args), 'result:', result, jsonResult, `${result}`);
}
return result;
};
});
}
const gls = [];
try {
gls.push(document.createElement('canvas').getContext('webgl'));
gls.push(document.createElement('canvas').getContext('experimental-webgl'));
} catch (e) {}
gls.forEach((gl) => {
const glProto = Object.getPrototypeOf(gl);
const origGetParameter = glProto.getParameter;
const debugInfo = gl.getExtension('WEBGL_debug_renderer_info');
if (gl) {
glProto.getParameter = function getParameter(...args) {
if (args[0] === debugInfo.UNMASKED_VENDOR_WEBGL) return logOverride('gl.getParameter.UNMASKED_VENDOR_WEBGL', fingerprint.WEBGL_VENDOR);
if (args[0] === debugInfo.UNMASKED_RENDERER_WEBGL) return logOverride('gl.getParameter.UNMASKED_RENDERER_WEBGL', fingerprint.WEBGL_RENDERER);
if (args[0] === 33901) return new Float32Array([1, 8191]);
if (args[0] === 3386) return new Int32Array([16384, 16384]);
if (args[0] === 35661) return 80;
if (args[0] === 34076) return 16384;
if (args[0] === 36349) return 1024;
if (args[0] === 34024) return 16384;
if (args[0] === 3379) return 16384;
if (args[0] === 34921) return 16;
if (args[0] === 36347) return 1024;
return origGetParameter.call(this, ...args);
};
}
});
hookPrototypeMethods('webgl', document.createElement('canvas').getContext('webgl'));
hookPrototypeMethods('experimental-webgl', document.createElement('canvas').getContext('experimental-webgl'));
hookPrototypeMethods('2d', document.createElement('canvas').getContext('2d'));
hookPrototypeMethods('canvas', canvas);
hookPrototypeMethods('screen', window.screen);
hookPrototypeMethods('navigator', window.navigator);
hookPrototypeMethods('history', window.history);
}, fingerprint, LOG_OVERRIDE, DIMENSION);
// emulate permissions
await page.addInitScript(() => {
const originalQuery = window.navigator.permissions.query;
window.navigator.permissions.__proto__.query = (parameters) => (parameters.name === 'notifications' ?
Promise.resolve({
state: Notification.permission
}) :
originalQuery(parameters));
const oldCall = Function.prototype.call;
function call() {
return oldCall.apply(this, arguments);
}
Function.prototype.call = call;
const nativeToStringFunctionString = Error.toString().replace(
/Error/g,
'toString',
);
const oldToString = Function.prototype.toString;
function functionToString() {
if (this === window.navigator.permissions.query) {
return 'function query() { [native code] }';
}
if (this === functionToString) {
return nativeToStringFunctionString;
}
return oldCall.call(oldToString, this);
}
Function.prototype.toString = functionToString;
});
// must to hook getters
await page.goto('about:blank');
await page.setExtraHTTPHeaders({
'Accept-Language': 'en-US,en;q=0.9',
'Accept-Encoding': 'gzip, deflate, br',
});
await page.setViewport(DIMENSION);
}
const args = [
'--no-sandbox',
'--remote-debugging-port=9222',
'--disable-setuid-sandbox',
'--ignore-certificate-errors',
'--disk-cache-size=1',
'--disable-infobars',
'--disable-blink-features=AutomationControlled'
];
console.log('launchPersistentContext', url);
const browser = await chromium.launchPersistentContext('', {
headless: false,
bypassCSP: true,
ignoreHTTPSErrors: true,
args: args,
timezoneId: 'America/Los_Angeles',
});
// generate a fingerprint
const fingerprint = await getBrowserfingerprint(uuidv4());
let page = await browser.newPage();
// "cloak" our page with evasions
await cloak(page, fingerprint);
console.log('goto', url);
//await context.route("**/*.{png,jpg,jpeg,css,js}", route => route.abort());
await page.goto(url);
console.log('goto end');
await setTimeout(2000);
// let id = crypto.randomUUID();
// let path = `/code/${id}.png`;
// await page.screenshot({ path, fullPage: true });
const buffer = await page.screenshot({fullPage: true});
await page.close();
await browser.close();
return buffer;
}
const server = http.createServer(async function(req, res) {
const {query, pathname} = url.parse(req.url, true);
console.log(req.url, new Date());
res.setHeader('Access-Control-Allow-Origin', '*')
let _url = query.url;
let cookie = query.cookie;
let js_enabled = query.js;
try {
if (pathname == '/text') {
let text = await text_from_url(_url, cookie);
res.end(text);
} else if (pathname == '/screenshot') {
let buffer = await screenshot(_url, cookie, js_enabled);
res.writeHead(200,{'Content-type':'image/png'});
res.end(buffer);
// const readStream = fs.createReadStream(path);
// res.writeHead(200,{'Content-type':'image/png'});
// readStream.pipe(res);
// res.end();
} else if (pathname == '/bot') {
let buffer = await test_bot(_url);
res.writeHead(200,{'Content-type':'image/png'});
res.end(buffer);
} else if (pathname == '/evaluate') {
const buffers = [];
for await (const chunk of req) {
buffers.push(chunk);
}
const data = Buffer.concat(buffers).toString();
const {url, code} = JSON.parse(data);
try {
let result = await evaluate(url, code);
res.end(''+result);
} catch (e) {
res.end(e.toString());
}
} else {
res.end('hello');
}
} catch (e) {
res.end(e.toString());
}
});
const wss = new WebSocketServer({ server });
wss.on('connection', function connection(ws, req) {
console.log('wss.connection', req.url, req.headers);
ws.isAlive = true;
ws.on('pong', function heartbeat(){ //'Pong messages are automatically sent in response to ping messages as required by the spec.'
//console.log('pong');
this.isAlive = true;
});
ws.on('message', function message(data) {
console.log('received: %s', data);
});
ws.addEventListener('close', function close() {
console.log('ws.close');
});
//ws.send('something');
});
// https://github.com/websockets/ws
const interval = setInterval(function ping() {
wss.clients.forEach(function each(ws) {
if (ws.isAlive === false) return ws.terminate();
ws.isAlive = false;
ws.ping();
ws.send('ping');//why: used by client to detect dead connection (because browser cant access ping/pong frames...(?))
});
}, 30000);
server.listen(7860);
|