Skip to content

๐Ÿš€ Free HTTP, HTTPS, SOCKS4 & SOCKS5 proxy list. Auto-updated & deeply verified. Sorted by country, protocol & site access.

License

Notifications You must be signed in to change notification settings

proxygenerator1/ProxyGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

1 Commit
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿš€ ProxyGenerator โ€” Free Proxy List (HTTP, HTTPS, SOCKS4, SOCKS5)

Proxy Stats

๐Ÿ“Œ Introduction

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.


๐Ÿš€ Key Features

  • 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.

๐Ÿ“ฅ Download Proxies

Protocol ๐Ÿ›ก๏ธ MostStable (Elite) โš–๏ธ Stable (General) โš ๏ธ Unstable (Alive)
HTTP Download Download Download
HTTPS Download Download Download
SOCKS4 Download Download Download
SOCKS5 Download Download Download
ALL Download Download Download

๐Ÿ”— Quick Links

  • โœˆ๏ธ Telegram Ready: telegramProxys.txt (SOCKS5 verified for Telegram)
  • ๐Ÿ’พ Full Database (JSON): all.json (Contains metadata: Country, Ping, Latency, Uptime)

๐Ÿ“‹ JSON Structure (one proxy)

{
    "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, "...": "..." }
}

๐Ÿ› ๏ธ How It Works (The Logic)

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:

  1. Connectivity Test: Real requests to heavy websites (Google, YouTube, etc.) simulating a real user.
  2. Security Check: Proxies without SSL/TLS encryption support are discarded or downgraded.
  3. 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.

Python Code Examples

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

1. Simple CLI (cURL)

Get a list of high-speed SOCKS5 proxies:

curl -L "https://raw.githubusercontent.com/proxygenerator1/ProxyGenerator/main/MostStable/socks5.txt" -o socks5.txt

2. Python

Load 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")

๐Ÿ“‚ Repository Structure

The data is organized for instant use:

๐ŸŒŸ Quality Categories

  • 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.

๐ŸŒ By Country

Inside Stable and MostStable folders, you'll find a country/ directory.

  • Example: MostStable/country/Germany/socks5.txt

๐ŸŽฏ For Specific Sites (ForSites/)

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/

โš–๏ธ Disclaimer

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.