Skip to content
This repository was archived by the owner on Dec 13, 2025. It is now read-only.

reneManqueros/Cloudflare-Bypass

Repository files navigation

Requirements

pip install -r requirements.txt
pip install javascript

Example

from aqua import CF_Solver

cf = CF_Solver('https://discord.com')
cookie = cf.cookie()
print(cookie)

# other
cf = CF_Solver('https://tempail.com')
cookie2 = cf.cookie()
print(cookie2)

# follow up requests
response = cf.client.get(url=url, timeout=10)
response = cf.client.post(url=url, data=data, json=json, timeout=10)

Turnstile Reverse Engineering Progress

  • Reversed challenge token: dev cons

  • Challenge Request Reversed: ch

  • small showcase

2024_12_29_06_08_54.2.mp4

discord: lobyx1

Web server

Exposes the service as a webserver

Run

Production

gunicorn -c gunicorn.config.py app:app

Development

python3 app:app

Sample call

POST http://localhost:1180/process
content-type: application/json

{
  "url": "https://unix.stackexchange.com",
  "proxy": "127.0.0.1:8080",
  "cookie_only": true,
  "insecure_skip_verify": true,
  "headers": {
    "header1": "value1"
   }
}

More examples

View example.http

Docker

Build

docker build -t cfbypass .

Run

docker run -it -p1180:1180 cfbypass

Parameters

Env var Description Default
GUNICORN_WORKER_COUNT Max gunicorn workers 8
GUNICORN_THREADS Max gunicorn threads 8
GUNICORN_TIMEOUT Max time per request 60
GUNICORN_BACKLOG Max requests to keep in queue 16

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors