An automated, ultra-fast proxy collector and validator running 24/7. This repository hosts pre-verified, active public proxy lists categorized by protocol, optimized for web scraping, anonymity, and integration.
| Protocol | Active Count | Raw Access Link |
|---|---|---|
| π HTTP / HTTPS | 169 |
http.txt |
| π‘οΈ SOCKS4 | 67 |
socks4.txt |
| π SOCKS5 | 155 |
socks5.txt |
| π¦ All Combined | 391 |
working_proxies.txt |
- Deduplication Audit Rate: 100% Unique Addresses
- Current Success Verification Rate:
6.26% - Validation Protocol: Full HTTP Request/Response Round-trip check.
These lists are optimized for automated scripts, CI/CD pipelines, and applications. You can access the live lists programmatically through raw HTTP or GitHub's REST API.
Use these simple shell commands to dynamically integrate the proxy lists directly into your servers:
# Download all working proxies
curl -o proxies.txt https://raw.githubusercontent.com/stormsia/proxy-list/main/working_proxies.txt
# Download categorized lists
curl -o http_proxies.txt https://raw.githubusercontent.com/stormsia/proxy-list/main/http.txt
curl -o socks4_proxies.txt https://raw.githubusercontent.com/stormsia/proxy-list/main/socks4.txt
curl -o socks5_proxies.txt https://raw.githubusercontent.com/stormsia/proxy-list/main/socks5.txtYou can quickly parse the lists in Python using the standard urllib or requests:
import urllib.request
# Base URL for raw access
base_url = "https://raw.githubusercontent.com/stormsia/proxy-list/main"
# Fetch and print active proxies for each protocol
for protocol in ["http", "socks4", "socks5"]:
url = f"{base_url}/{protocol}.txt"
try:
with urllib.request.urlopen(url) as response:
proxies = response.read().decode('utf-8').splitlines()
print(f"Loaded {len(proxies)} active {protocol.upper()} proxies.")
except Exception as e:
print(f"Failed to fetch {protocol} list: {e}")If your system integrates via GitHub API, fetch the file metadata and Base64 content using:
GET https://api.github.com/repos/stormsia/proxy-list/contents/working_proxies.txt
Accept: application/vnd.github.v3+jsonThese proxies are gathered from public directories. We do not host, control, or monitor proxy servers. Use at your own risk.
MIT License