A website traffic generator with proxy scraping, unique visitor fingerprinting, and a futuristic GUI.
Main dashboard — live stats, control panel, and real-time graph
Settings page — country filter, thread limits, delay config, proxy sources
Cloudflare analytics showing unique visitors from generated traffic
- Proxy scraper — scrapes 18+ proxy sources continuously, maintains a pool of 30K+ proxies
- Unique visitors — each request generates a unique browser fingerprint (UA, screen, cookies, headers, timezone, platform)
- Proxy-only mode — never exposes your real IP; only uses proxy connections
- Country filter — filter proxies by country (Settings page)
- Live stats — real-time dashboard with total requests, success/fail, unique visitor count, requests/min, and live graph
- Background validator — continuously tests proxies with 40 concurrent workers to build a pool of working proxies
- Changeable URL — target any website
- Right-click paste — context menu on URL field for paste/clear
- Python 3.10+
- Windows / Linux / macOS
pip install customtkinter Pillow requests matplotlibpython main.py- Enter a target URL (right-click to paste)
- Adjust threads and delay as needed
- Click ▶ START
- Monitor live stats on the dashboard
- Country filter — restrict proxies by country (e.g., "United States", "Russia")
- Max threads — slider to cap worker thread count (1–200)
- Max delay — min/max delay between requests in seconds
- Proxy sources — editable list of proxy source URLs
- Proxy scraper fetches proxies from 18+ sources in a background thread, adding them to the pool incrementally
- Background validator continuously tests 80 proxies at a time (40 concurrent workers), moving working ones to the pool
- Workers pick a random proxy, generate a unique visitor profile (fingerprint + cookies + headers), and send the request
- If a proxy fails, it's blacklisted and the next one is tried (up to 15 attempts)
- Only proxy connections — no direct IP fallback; if no proxy works, the request is counted as failed
traffic_gen/
├── main.py # Entry point
├── requirements.txt # Dependencies
├── data/ # Auto-created cache (proxies, stats)
└── modules/
├── gui.py # customtkinter futuristic GUI
├── proxy_scraper.py # Proxy source scraper + validator
├── traffic_engine.py # Multi-threaded request engine
├── visitor.py # Unique browser fingerprint generator
├── stats.py # Traffic statistics tracking
├── user_agent.py # User agent rotation
└── referrer.py # HTTP referrer rotation