2.0.11 • Published 4 years ago

proxy-checker-cli v2.0.11

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

proxy-checker-cli

Simple utility which is designed to accept a file of ip:port lines and to produce beautiful table of check results in terminal and to write the file with proxies which passed the checks successfully. Processes proxies concurrently (20 threads are running at the same time by default) so can be used for quite large files without overloading the server resources.

Installation

npm i -g proxy-checker-cli

Example usage:

proxy-checker-cli listofproxies.txt --code=20. -o goodproxies.txt --url=https://google.com

Which will get proxies from listofproxies.txt file, try to request https://google.com and check that reply http code is 20x

Proxy tests included out of the box:

  • Expected http code ( --code=200 ) - regex supported
  • Expected text in body ( --text=sometext )
  • Expected no specified text in body ( --notext=error )

Arguments list:

  --input file                       The input file to process. The file is expected to contain ip:port lines      
                                     without protocol specified. This is a default argument.                       
  -o, --output file                  Output good ips to txt file.                                                  
  -v, --verbose                      Turn on debug output.                                                         
  -s, --silent                       Do not output visual table, only write result to files.                       
  -h, --help                         Print this usage guide.                                                       
  -t, --timeout number               Number of seconds to wait for connection to proxy and for the whole request.  
  -p, --protocol string              Protocol to append to proxy ip (the file is expected to contain ip:port lines 
                                     without protocol specified).                                                  
  -u, --url string                   Url to connect to validate proxy.                                             
  --text string                      Text expected in body to validate proxy.                                      
  --notext string                    Text expected to not exist in body to validate proxy.                         
  --code string                      Http code expected for test to succeed.                                       
  -c, --concurrency integer          Maximum Concurrency threads (default: 20)                                     
  --user-agent string                User agent to use for http(s) connections to tested websites.                 
  --header headername: headervalue   Header to attach to request for http(s) connections to tested websites.       
                                     Accepts multiple args.                                                        
  -l, --limit integer                Limit number of proxies to check. Can be negative to trim trailing proxies    
                                     from file (like arr.slice(0, -100) in js)   

Sample output to terminal:

2.0.11

4 years ago

2.0.10

4 years ago

2.0.9

4 years ago

2.0.7

4 years ago

2.0.8

4 years ago

2.0.6

4 years ago

2.0.5

4 years ago

2.0.4

4 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.0

4 years ago