No description
Find a file
2025-07-25 00:35:20 -05:00
.gitignore initialize 2025-07-23 01:06:26 -05:00
.python-version initialize 2025-07-23 01:06:26 -05:00
LICENSE chore(license): add AGPLv3 2025-07-23 13:17:19 -05:00
proxy.py style: use self.config directly instead of assigning a variable 2025-07-25 00:35:20 -05:00
pyproject.toml chore(license): add license to pyproject.toml 2025-07-23 13:21:59 -05:00
README.md docs: fix formatting 2025-07-23 01:27:19 -05:00
requirements.txt chore(deps): add requirements.txt 2025-07-23 13:14:39 -05:00
uv.lock initialize 2025-07-23 01:06:26 -05:00

chromedriver-http-proxy

Simple HTTP proxy that renders pages with undetected-chromedriver and returns the rendered HTML.

Features

  • Solves Anubis
  • Solves go-away
  • Solves similiar POW challenges
  • Sometimes bypasses Cloudflare Turnstile

Installation

uv:

sudo apt install chromium # or sudo pacman -S chromium
uv venv
source .venv/bin/activate
uv pip install -r pyproject.toml
uvx playwright install

pip:

sudo apt install chromium # or sudo pacman -S chromium
pip install -r requirements.txt
playwright install

Usage

Run proxy.py, and make a request to localhost:32323/?url=https://ifconfig.me.

You can also pass several arguments.

# default port: 32323
# default host: 0.0.0.0
# default wait: 10 (seconds)
# default user agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36
# default headless mode: True
python proxy.py --host 127.0.0.1 --port 1337 --wait 5 --headless False --user-agent "Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.0.1) Gecko/20020921 Netscape/7.0"

Notes

I built this mainly to solve Anubis challenges for my Miniflux RSS instance, so it's a little rough around the edges.

This proxy has no authentication, and I don't plan to add any (PRs welcome though!). Don't expose it to the internet.

TODO

  • Docker image
  • Send JS/CSS to the client
  • Custom Chromium binary locations
  • More CLI arguments to control ChromeDriver behavior
  • Error handling (404, 403, 429)
  • Screenshot endpoint
  • Allow custom headers
  • POST requests

Similiar Projects

  • Kad - A simple HTTP proxy server that forwards all requests through curl-impersonate