Skip to content

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

License

Notifications You must be signed in to change notification settings

zeroday0619/caterpillar

 
 

Repository files navigation

gnh1201/caterpillar

FOSSA Status DOI

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

Cover image - Caterpillar on a tree looking at a rocket flying over the clouds

You can connect all physical and logical channels with communication capabilities to the web!

Imagine various means such as time machines, satellites, quantum technology, sound, light, the Philosopher's Stone, or Excalibur, just like in science fiction movies! Caterpillar Proxy supports the implementation of extensions for Connectors, Filters, and RPC methods to bring your imagination to life.

Use cases

How it works

Basic structure

* You <-> Proxy client (Python) <-> Parasitized proxy server (Optional, PHP/LAMP) <-> On the Web
* You <-> Proxy client (Python) <-> Connector extensions (Optional, Python) <-> 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).

Connector extensions

This project supports the implementation of Connector extensions. The provided basic examples include implementations of web archives (caches) and serial communication as Connector extensions.

(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=localhost
SERVER_CONNECTION_TYPE=
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

Note: If using Caterpillar Proxy (Python) alone, set SERVER_URL=localhost. Otherwise, use the endpoint URL of the Worker script (PHP or Java), e.g., SERVER_URL=https://example.org.

  • (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

Contributors

Contributors

Our roadmap

Roadmap image

Report abuse

License

FOSSA Status

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 62.4%
  • PHP 16.3%
  • HTML 12.4%
  • Java 7.8%
  • Batchfile 0.5%
  • Shell 0.4%
  • Dockerfile 0.2%