This repository provides high-quality, automatically checked proxy lists updated regularly. Unlike standard scrapers, our system performs deep verification of every proxy to ensure reliability, speed, and anonymity.
- Deep Verification: Every proxy is tested against real targets (Google, YouTube, etc.).
- Protocol Support: HTTP, HTTPS, SOCKS4, SOCKS5.
- High Speed: Only proxies with low latency make it to the "MostStable" list.
- Secure: Strict SSL/TLS handshake verification.
- Categorized: Sorted by country, protocol, and specific website access.
| Protocol | ๐ก๏ธ MostStable (Elite) | โ๏ธ Stable (General) | |
|---|---|---|---|
| HTTP | Download | Download | Download |
| HTTPS | Download | Download | Download |
| SOCKS4 | Download | Download | Download |
| SOCKS5 | Download | Download | Download |
| ALL | Download | Download | Download |
โ๏ธ Telegram Ready: telegramProxys.txt (SOCKS5 verified for Telegram)- ๐พ Full Database (JSON): all.json (Contains metadata: Country, Ping, Latency, Uptime)
{
"ip": "1.2.3.4",
"port": 8080,
"protocol": "socks5",
"country": "Germany",
"ping": 312,
"status": "MostStable",
"telegram": true,
"ssl_cert_valid": true,
"sites": { "google.com": true, "netflix.com": false, "...": "..." }
}We don't just "ping" servers. Each proxy goes through a long chain of independent tests over ~30 minutes before it earns a place in the final list:
- Connectivity Test: Real requests to heavy websites (Google, YouTube, etc.) simulating a real user.
- Security Check: Proxies without SSL/TLS encryption support are discarded or downgraded.
- Stress Test: Multiple rounds of rechecks with cooldown intervals. Only the fastest and most stable proxies survive.
โฑ๏ธ A proxy that reaches "MostStable" has passed every single stage of this pipeline.
๐ Fix SSL / Hostname Mismatch Errors (Click to expand)
If you encounter SSL: WRONG_VERSION_NUMBER, CERTIFICATE_VERIFY_FAILED, or Hostname mismatch errors, this is normal for public HTTPS proxies that use shared certificates (CDN/Cloudflare).
To successfully use these proxies, you typically need to disable strict SSL verification for the proxy connection in your software.
1. Requests (Sync)
import requests
import urllib3
urllib3.disable_warnings()
# Important: Use the 'https' scheme
proxies = {"https": "https://IP:PORT"}
requests.get("https://google.com", proxies=proxies, verify=False)2. Httpx (Async / Modern)
import httpx
import ssl
# Create a custom SSL context for the proxy connection
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
mounts = {
"https://": httpx.AsyncHTTPTransport(proxy=httpx.Proxy(url="https://IP:PORT", ssl_context=ctx)),
"http://": httpx.AsyncHTTPTransport(proxy=httpx.Proxy(url="https://IP:PORT", ssl_context=ctx)),
}
async with httpx.AsyncClient(mounts=mounts, verify=False) as client:
resp = await client.get("https://google.com")๐ป Automated Download Examples (cURL, Python) - Click to expand
Get a list of high-speed SOCKS5 proxies:
curl -L "https://raw.githubusercontent.com/proxygenerator1/ProxyGenerator/main/MostStable/socks5.txt" -o socks5.txtLoad proxies directly into your script:
import requests
url = "https://raw.githubusercontent.com/proxygenerator1/ProxyGenerator/main/Stable/http.txt"
proxies = requests.get(url).text.strip().split("\n")
print(f"Loaded {len(proxies)} proxies")The data is organized for instant use:
MostStable/โ The Elite tier. High speed, full anonymity, 100% success rate on strict targets.Stable/โ Reliable workhorses. Good speed, suitable for most tasks.Unstable/โ Alive but pending re-verification or having higher latency.
Inside Stable and MostStable folders, you'll find a country/ directory.
- Example:
MostStable/country/Germany/socks5.txt
The most valuable feature. Proxies in these folders have guaranteed access to specific services:
- ๐บ Netflix:
ForSites/netflix/ - ๐ Google:
ForSites/google/ - ๐ธ Instagram:
ForSites/instagram/ - ๐ฎ Discord:
ForSites/discord/
This software and the provided lists are for educational purposes only. The repository owner is not responsible for any misuse of the provided material. The proxies are public and gathered from open sources.
