8000 GitHub - yaelahrip/untidetect-tools: List of anti-detect and humanizing tools and browsers, including captcha solvers and sms-activation.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

List of anti-detect and humanizing tools and browsers, including captcha solvers and sms-activation.

Notifications You must be signed in to change notification settings

yaelahrip/untidetect-tools

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 

Repository files navigation

Curated anti-detect tools list

Just making a tools list for my project, feel free to send pull requests :) While looking around, it may be a good idea to sign up on all the Discord channels each product has to find some interesting insides from users.

Important: if you work on something related to undetection, like humanizing puppeteer actions, we may consider collaboration, as I'm working currently on it too. My TG.

😊 - automation supported on free plan πŸ™„ - not supported

Anti-detect browsers

  • Undetectable - 5 cloud profiles free, $49 for unlimited local with 25 "configs", 1 additional config $1 (API + driver automation) πŸ™„
  • NSTBrowser - 10 profiles open/day free, $29(299) for 3000 open profiles per day, quite new on the market 😊
  • Multilogin - starts from €74 for 100 profiles
  • Incogniton - 10 free for 2 months then 3 only, $29.99/Month for 50 πŸ™„
  • Octo Browser - starts from €21 for 10
  • Gologin - 3 free for 1 month, $24 for 100 profiles, no unlimited plan, free proxies πŸ™„
  • AdsPower - 2 profiles free, $5.4 for 10 profiles, no unlimited plan πŸ™„
  • Morelogin - 2 free, $9 for 10 profiles and 2 users 😊
  • Dolphin-anty - 10 free, $89 for 100 😊
  • Kameleo - starts €59/user with unlimited profiles
  • Vmlogin - $99 for 200 profiles
  • Indigo - €99 for 100 profiles
  • GhostBrowser - 4 profiles free, $21 unlimited ?
  • Bablosoft - free browser automation studio, for Puppeteer look at puppeteer-with-fingerprints, the only browser as I know that supports faking canvas (with PerfectCanvas. If you need a code for your website to generate own canvases I can sell you it. Then you can add it to your fingerprints (Their PerfectCanvas is very slow and you can get only 30-40 per day, otherwise you will need to buy CustomServer) 😊
  • OctoBrowser - €21 for 10 profiles
  • ixBrowser - free 10/created a day, but doesn't mask everything (for example, no GPU masking) πŸ™„
  • Gpmlogin - didn't check it yet, pricing is for unlimited use, for 1pc it is $125
  • VektorT13 - anti-detect based on virtual machines
  • Wade - from $30/month, automation from $160 πŸ™„
  • Camoufox - launched via Python, based on Firefox 😊
  • LightPanda - not anti-detect, but fast browser for scraping 😊
  • Whologin - free plan has unlimited profiles but no automation. paid - $89/everything πŸ™„
  • PotaBrowser - patched chromium
  • ChromePowerApp - chinese multiaccounter (but fingerprints are weak, cant change screen, fonts, GPU) 😊
  • BitBrowser - 10 free, 50/$9, antidetect from Hong Kong 😊
  • 0detect - 5 free, 50/$14, automation from $111 πŸ™„
  • ADBLogin - The First anti-detect browser free forever

Useless:

A bit old article on how anti-detect browsers can be detected. Example from the article: if( Object.getOwnPropertyNames(navigator)[0] ) alert('fake parameters detected');

Detection tests

Others:

More tools can be found: at https://github.com/kkoooqq/fakebrowser

Anti-detect libs

Privacy Manager - 12 modules to change fingerprint of your computer.

For Puppeteer:

For Playwright:

For Selenium/Python:

For request libs:

Chrome launch arguments:

  • --profile-directory=${dir_name} // should be together with userDataDir
  • --accept-lang=en,en-US, // th,en,en-GB,en-US works only on new profile dirs
  • --user-agent=${user_agent} // properly changes user-agent in headers and JS runtime
  • --disable-extensions-except=${EXTENSION_PATH}
  • --load-extension=${EXTENSION_PATH}
  • --disable-site-isolation-trials helps to detect all iframes on the page for Puppeteer, without it frames from another domain will be inaccessible
  • --aggressive-cache-discard // useful in case u want more time for a debugger to attach or an extension to modify something
  • --disable-gpu // less detectable canvas fingerprint, but GPU vendor/renderer still will be present

Humanizing

Captha solvers

SMS confirmations

  • SmsActivate - min top up ~$2.5, high commissions
  • VakSms - not every country is available
  • SmsHub - looks like the cheapest but has a lot of low-quality numbers(at least in Thailand), sometimes specifying an operator helps
  • GrizzlySms
  • 5Sim - expensive for some countries but has activation rate data available (Thailand for example)
  • OnlineSim - very expensive
  • SmsBower - min top up $2.86, low commission
  • 365sms - top up from $1

Residential proxies

List of mobile proxies - many small providers

  • BrightData - around $8/GB
  • DataImpulse - 6796 from $1/GB (has $5/5Gb welcome package, but normally top-up is $50+). IMAP/SMTP blocked.
  • WebShare - $6/Gb (from 4.5), IPs: from $6/month per 20 (shared). IMAP/SMTP works.
  • GeoNode - $4/Gb (from $1.7)
  • LunaProxy - $3/Gb (from $0.8), has static too ($3/week, $5/month), IMAP/SMTP blocked.
  • Piaproxy
  • Soax - starts at $6.6/GB and less
  • IPRoyal - starts at around 5.25/GB for 10GB, less too expensive (IMAP only if spending 5k)
  • 922proxy - $3/GB (up to 60 min), $0.22/IP, $5/30 days
  • 9proxy.com - $0.07-0.2/IP
  • ProxyEmpire - $2-5.71/GB

Buying accounts

Hm. Cant get it right? You can always shortcut:

Many other stuff can be found at BlackHatWorld but usually more expensive.

Other

Antidetection tips

Browser - use separately downloaded version of Chrome instead of Chromium, and pass it in executablePath in Puppeteer.

What is available in a JS worker:

Worker is another sneaky way to detect real browser data, as you can't modify object properties in it with some extension. window, screen, and access to DOM are not available (and therefor canvas)

  • Timezone ( Intl.DateTimeFormat().resolvedOptions().timeZone )
  • Language ( navigator.language || navigator.userLanguage )
  • User agent ( navigator.userAgent )
  • Hardware Concurrency ( navigator.hardwareConcurrency )
  • GPU data (except Linux & Firefox upd 30.01.2024)

About

List of anti-detect and humanizing tools and browsers, including captcha solvers and sms-activation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0