2024-09-24 07:49:01 +02:00
|
|
|
mubeng
|
|
|
|
======
|
|
|
|
|
|
|
|
[mubeng][1] has 2 core functionality:
|
|
|
|
|
|
|
|
1. Run proxy server as proxy IP rotation
|
|
|
|
2. Perform proxy checks
|
|
|
|
|
|
|
|
## Quick Start
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ mubeng --version
|
|
|
|
|
|
|
|
$ echo "socks5://x.x.x.x:1080" | mubeng -v -a 0.0.0.0:3128 -f -
|
|
|
|
|
|
|
|
$ curl localhost:3128/cert > mubeng.der
|
|
|
|
|
|
|
|
$ openssl x509 -inform der -outform pem -in mubeng.der -out mubeng.crt
|
|
|
|
|
|
|
|
$ curl --cacert mubeng.crt -x localhost:3128 https://ipinfo.io
|
|
|
|
```
|
|
|
|
|
2024-09-24 07:51:24 +02:00
|
|
|
[Install a root CA certificate in the trust store][2]
|
|
|
|
|
2024-09-24 07:49:01 +02:00
|
|
|
[1]: https://github.com/kitabisa/mubeng
|
2024-09-24 07:57:29 +02:00
|
|
|
[2]: https://documentation.ubuntu.com/server/how-to/security/install-a-root-ca-certificate-in-the-trust-store/
|