We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Dumbproxy also supports dynamic SNI spoofing. You can take some SNI whitelist (like this one and specify the following script in -js-proxy-router:
-js-proxy-router
const sniList = readFile("whitelist.txt") .split(/\r?\n|\r|\n/g) .map(line => line.replace(/#.*$/, "").trim()) .filter(line => line !== ""); const pick = arr => arr[Math.floor(Math.random() * arr.length)]; //print("loaded domains:"); //print(JSON.stringify(Array.from(sniList))); function getProxy(req, dst, username) { const sni = pick(sniList); const proxyURL = `https://USERNAME:[email protected]:443?sni=${sni}`; print(`proxyURL = ${proxyURL}`); return proxyURL; }
There was an error while loading. Please reload this page.