Caterpillar Proxy - The simple and parasitic web proxy with SPAM filter (formerly, php-httpproxy)
Go to file
2024-07-11 21:42:23 +09:00
.github Create FUNDING.yml 2024-02-23 17:10:43 +09:00
assets Update roadmap.png 2024-07-11 21:42:23 +09:00
plugins Merge branch 'gnh1201:main' into logging-system 2024-07-11 15:41:13 +09:00
.gitignore Add roadmap image 2024-07-11 20:53:06 +09:00
base.py fix: use_extension value extension 2024-07-11 16:02:51 +09:00
caterpillar.service Create caterpillar.service 2024-02-21 02:24:06 +09:00
console.html Update console.html 2024-06-26 16:21:05 +09:00
Dockerfile Create Dockerfile 2024-03-06 15:11:13 +09:00
download_certs.bat Rename certs/download_certs.bat to download_certs.bat 2024-07-11 16:43:28 +09:00
download_certs.sh Rename certs/download_certs.sh to download_certs.sh 2024-07-11 16:43:39 +09:00
LICENSE Initial commit 2022-10-06 02:16:30 +09:00
README.md Add roadmap image 2024-07-11 20:53:06 +09:00
requirements-dev.txt feat: apply ruff linter and update .gitignore 2024-07-11 15:05:51 +09:00
requirements.txt Create requirements.txt 2022-10-06 13:29:24 +09:00
ruff.toml feat: ruff exclude append assets data 2024-07-11 15:19:50 +09:00
server.py Merge pull request #28 from zeroday0619/logging-system 2024-07-11 17:12:40 +09:00
smtp.py feat: implemented a custom logger and fixed some invalid code implementations 2024-07-09 17:01:25 +09:00
web.py fix: use_extension value extension 2024-07-11 16:02:51 +09:00

gnh1201/caterpillar

Caterpillar Proxy - The simple web debugging proxy (formerly, php-httpproxy)

title image

Use cases

How it works

Basic structure

You <-> Proxy client (Python) <-> Parasitized proxy server (Optional, PHP) <-> On the Web

For example, build a simple web debugging proxy on the shared servers.

Stateful mode

This project supports two modes of connection. The default is stateless. You can use the stateful mode to avoid being constrained by transfer capacity limits. See the Stateful mode (github.com/gnh1201/caterpillar wiki).

(Optional) Before to use

If you have a server that will be parasitized and you want to proxy it, you should upload the index.php file to a shared server. The index.php file is located in the assets/php directory within this repository.

How to use

  1. Write a file .env(Linux) or settings.ini(Windows). Like this:
[settings]
PORT=5555
SERVER_URL=http://example.org
SERVER_CONNECTION_TYPE=stateless
CA_KEY=ca.key
CA_CERT=ca.crt
CERT_KEY=cert.key
CERT_DIR=certs/
OPENSSL_BINPATH=openssl
CLIENT_ENCODING=utf-8
USE_EXTENSIONS=wayback.Wayback,bio.PyBio
  • (Optional) Create a certificate for SSL decryption
chmod +x configure_certs.sh
./configure_certs.sh
sudo apt-get install -y ca-certificates
sudo cp ca.crt /usr/local/share/ca-certificates/caterpillar-ca.crt
sudo update-ca-certificates
  1. Run python3 server.py and set HTTP(S) proxy in your web browser (e.g. Firefox, Chromium)

  2. Test 100MB/SSL, 1GB/SSL, 10GB/SSL download and check the speed.

  3. Enjoy it

  4. (Optional) With Cloudflare, we can expect to accelerate the 4x speed and reduce the network stuck.

Extensions

Thanks to

Our roadmap

roadmap image

Report abuse