Proxy Checker is a concurrent CLI tool for validating large proxy lists, classifying anonymity level, and exporting results in multiple formats.
Validating proxy lists manually is slow, noisy, and difficult to scale. Teams often need more than a simple alive-or-dead check. They need protocol detection, retry logic, latency measurements, and structured output they can use in downstream workflows.
This project automates the validation pipeline by:
- checking proxies concurrently through a worker-pool model
- supporting HTTP, HTTPS, SOCKS4, and SOCKS5 flows
- handling authenticated proxies
- retrying timeout-based failures
- classifying anonymity levels
- exporting usable results for both humans and scripts
- Node.js
node-fetchhttps-proxy-agentsocks-proxy-agentcli-progresstableminimist
- Concurrent validation for faster throughput
- Interactive CLI progress and alive-proxy logging
- Deduplication before execution
- Automatic protocol fallback when protocol is not specified
- Error categorization for timeout, connection refusal, authentication failure, and other failures
- Geo and ISP enrichment for successful checks
- Export support for TXT, CSV, JSON,
alive.txt, andelite.txt
- Install dependencies.
git clone https://github.com/gumaygo/proxy-checker.git
cd proxy-checker
npm install-
Add proxy entries to
data/proxies.txt. -
Run the checker.
npm startUse custom runtime settings when needed:
node index.js --concurrency 20 --timeout 5000 --retry 2| Flag | Alias | Default | Description |
|---|---|---|---|
--concurrency |
-c |
10 |
Number of simultaneous checks |
--timeout |
-t |
7000 |
Request timeout in milliseconds |
--retry |
-r |
1 |
Retry count on timeout |
--target |
https://httpbin.org/get |
Validation endpoint |
--- Proxy Checker ---
Real IP : 203.0.113.10
Proxies : 250 (18 duplicates removed)
Concurrency : 20 | Timeout: 5000ms | Retry: 2x
Target : https://httpbin.org/get
[ALIVE] 198.51.100.20:8080 (https) [Elite] US - Ashburn - 421ms
[ALIVE] socks5://203.0.113.8:1080 (socks5) [Anonymous] SG - Singapore - 538ms
Total Alive : 67
Total Dead : 183
Anonymity : Elite=42 | Anonymous=19 | Transparent=6
Avg Latency : 612ms | Fastest: 198.51.100.20:8080 (421ms)
Dead Reasons : Timeout=95 | ConnRefused=57 | AuthFailed=11 | Other=20
The run generates structured output in the data/ folder:
results.txtfor the full logalive.txtfor sorted alive proxieselite.txtfor elite proxies onlyresults.csvfor spreadsheet analysisresults.jsonfor programmatic consumption
- Speeds up large-batch proxy validation with concurrency
- Produces analyst-friendly and machine-friendly outputs in one run
- Demonstrates backend engineering strengths in reliability, observability, and tooling