This file contains 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
fetch('https://xc.com/js/tripledes.js') | |
.then(res => res.text()) | |
.then(source => { | |
eval(source.replace('export { encryptByDES, decryptByDES }', '')); | |
const decryptKey = 'iZTE2V29USHROXhH'; | |
const encryptKey = 'Yo2NpZNkgVGRKSWN'; | |
CHAT_API.ws.addEventListener('message', ({ data }) => { | |
const decrypted = JSON.parse(decryptByDES(arrToB64(data), decryptKey))?.result?.text; | |
decrypted && console.log(decrypted); |
This file contains 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 { appendFileSync } from "node:fs"; | |
type Proxy = { | |
addr: string; | |
ip_geo_country: string; | |
ip_geo_iso: string; | |
ip_geo_city: string; | |
type: number; | |
}; | |
const headers = { |
This file contains 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 axiod from "https://deno.land/x/axiod@0.26.2/mod.ts"; | |
const subdomains = ["ping", "eu", "us", "au", "whitelabel", "rotate", "fn2"]; | |
const proxies = new Map<string, ProxyData>(); | |
interface ProxyData { | |
success: boolean; | |
isProxy: boolean; | |
country: string; | |
region: string; | |
city: string; | |
hostname: string; |
This file contains 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 chatgptisdown | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description access chatgpt while it's down, shêr#0196 | |
// @updateURL https://pastebin.com/raw/sdCemSzy | |
// @downloadURL https://pastebin.com/raw/sdCemSzy | |
// @author optionsx | |
// @match https://chat.openai.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com |