|
1 |
| -# cloudflare-proxy-ban-checker |
| 1 | +# proxy-checker |
2 | 2 |
|
3 |
| -Checks a set of proxies against a protected CloudFlare website to check if the proxies are banned or not. |
| 3 | +Check for a set of proxies different conditions, is the proxy working, does the proxy bypass cloudflare and so on. |
| 4 | +This project is using GoColly as main engine. |
| 5 | + |
| 6 | +# Features |
| 7 | + |
| 8 | +- Checks if the proxy is working |
| 9 | +- Checks if the proxy bypass a website protected by CloudFlare |
4 | 10 |
|
5 | 11 | # Installation
|
6 | 12 |
|
7 | 13 | Very simple :
|
8 | 14 |
|
9 | 15 | ```
|
10 |
| -git clone git@github.com:kangoo13/cloudflare-proxy-ban-checker.git |
11 |
| -cd cloudflare-proxy-ban-checker |
| 16 | +git clone git@github.com:kangoo13/proxy-checker.git |
| 17 | +cd proxy-checker |
12 | 18 | go build
|
13 |
| -./cloudflare-proxy-ban-checker -h |
14 |
| -Usage: cloudflare-proxy-ban-checker [--goodproxiespath GOODPROXIESPATH] [--badproxiespath BADPROXIESPATH] [--timeoutproxy TIMEOUTPROXY] WEBSITE PROXYLIST |
| 19 | +./proxy-checker -h |
| 20 | +Usage: proxy-checker [--timeoutproxy TIMEOUTPROXY] [--cloudflarebypass] [--basic] [--websitecloudflare WEBSITECLOUDFLARE] PROXYLIST GOODPROXIESPATH |
15 | 21 |
|
16 | 22 | Positional arguments:
|
17 |
| - WEBSITE website to test proxy against cloudflare |
18 | 23 | PROXYLIST path to the proxyList
|
| 24 | + GOODPROXIESPATH path to the good proxies identified |
19 | 25 |
|
20 | 26 | Options:
|
21 |
| - --goodproxiespath GOODPROXIESPATH |
22 |
| - path to the good proxies identified [default: good.txt] |
23 |
| - --badproxiespath BADPROXIESPATH |
24 |
| - path to the bad proxies identified [default: bad.txt] |
25 |
| - --timeoutproxy TIMEOUTPROXY |
26 |
| - timeout proxy duration [default: 5] |
| 27 | + --timeoutproxy TIMEOUTPROXY, -t TIMEOUTPROXY |
| 28 | + timeout proxy duration in seconds [default: 4] |
| 29 | + --cloudflarebypass, -c |
| 30 | + if activated, check if proxy bypass cloudflare |
| 31 | + --basic, -b if activated, simply checks if proxy is working [default: true] |
| 32 | + --websitecloudflare WEBSITECLOUDFLARE, -w WEBSITECLOUDFLARE |
| 33 | + website to test proxy against cloudflare, needed if -cf |
27 | 34 | --help, -h display this help and exit
|
| 35 | +
|
28 | 36 | ```
|
29 | 37 |
|
| 38 | +# Contribution |
| 39 | + |
| 40 | +Implementing new checkers or enhancing them is welcome ! |
| 41 | + |
| 42 | +# Chat |
| 43 | + |
| 44 | +Feel free to speak with me on FreeNode IRC, my nickname is kangoo13 |
0 commit comments