pip install -r requirements.txt
pip install javascript
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)2024_12_29_06_08_54.2.mp4
discord: lobyx1
Exposes the service as a webserver
gunicorn -c gunicorn.config.py app:apppython3 app:appPOST 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"
}
}View example.http
docker build -t cfbypass .docker run -it -p1180:1180 cfbypass| 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 |


