This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Proxy Bridge - Improved Version with SSH and auto-discovery | |
| # Core functionality: litebike server + client auto-discovery + SSH remote start | |
| set -e | |
| # Colors | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| CHROME_DIR="$HOME/Library/Application Support/Google/Chrome" | |
| TMP_DIR="/tmp/chrome-debug-profile" | |
| CHROME_BIN="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" | |
| # Gather profiles + emails | |
| declare -a profiles emails | |
| for dir in "$CHROME_DIR/Default" "$CHROME_DIR"/Profile*; do | |
| [ -d "$dir" ] || continue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { exec } from "node:child_process" | |
| import { createReadStream, createWriteStream, existsSync, readFileSync } from "node:fs" | |
| import { mkdir } from "node:fs/promises" | |
| import { basename, dirname, join } from "node:path" | |
| import { pipeline } from "node:stream/promises" | |
| import { promisify } from "node:util" | |
| import { createGzip } from "node:zlib" | |
| import { PutObjectCommand, S3Client } from "@aws-sdk/client-s3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const path = require('path'); | |
| const pathTo2captchaExtension = path.join(__dirname, '2captcha-solver'); | |
| const pathToPuppeteerStreamExtension = path.join(__dirname, 'puppeteer-stream-ext'); | |
| const { Cluster } = require('puppeteer-cluster'); | |
| const puppeteer = require("puppeteer-extra"); | |
| // add recaptcha plugin to solve captchas automatically |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { chromium, Page } from "playwright-core" | |
| /** | |
| * Entrypoint. | |
| * | |
| * @remarks | |
| * Demonstrates a safe typing algorithm that mimics human typing cadence. | |
| * | |
| * @public | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| action_pool_depth | |
| Current value (from the default) = -1 | |
| From //build/toolchain/BUILD.gn:11 | |
| Pool for non goma tasks. | |
| added_rust_stdlib_libs | |
| Current value (from the default) = [] | |
| From //build/config/rust.gni:44 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Recaptcha Solver (Automatically solves Recaptcha in browser) | |
| // @namespace Recaptcha Solver | |
| // @version 2.1 | |
| // @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser | |
| // @author engageub | |
| // @match *://*/recaptcha/* | |
| // @connect engageub.pythonanywhere.com | |
| // @connect engageub1.pythonanywhere.com | |
| // @grant GM_xmlhttpRequest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class TableOfContents { | |
| static listContainerClass = 'articleTOC__list'; | |
| static listItemClass = 'articleTOC__item'; | |
| static listLinkClass = 'articleTOC__link'; | |
| static modifierSeparator = '--'; | |
| /* | |
| * @description Gets a list of all title elements having an ID in a given container | |
| * @param {HTMLElement} container - An element containing title elements (h1, h2, h3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ClientStorage { | |
| /** | |
| * Converts a string into a namespaced string | |
| * @param {string} namespace the namespace | |
| * @param {string} keyname keyname | |
| * @returns {string} a string with namespace.keyname | |
| */ | |
| static getNamespacedKeyName(namespace, keyname) { | |
| let namespacedKeyName = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Buffer } from "buffer" | |
| import { createHash } from "crypto" | |
| import { HTTPRequest, Protocol } from "puppeteer-core" | |
| import { isPuppeteerPage, Page } from "../types" | |
| type CaptureSnapshotResponse = Protocol.DOMSnapshot.CaptureSnapshotResponse | |
| type RequestHook = (request: HTTPRequest) => Promise<void> |
NewerOlder