A simple SOCKS5 proxy server for Windows. Run this on your UK VPS to bypass geo-restrictions.
- Install Python 3.x from https://python.org if not already installed
- Open PowerShell as Administrator
- Run:
cd C:\path\to\windows-socks5-proxy
pip install pysocks asyncio
python proxy_server.py- Double-click
start_proxy.bat - Copy the connection info displayed
When running, you'll see:
========================================
SOCKS5 PROXY SERVER RUNNING
========================================
External IP: 123.45.67.89
Port: 1080
Username: polymarket
Password: <random>
Connection String:
socks5://polymarket:<password>@123.45.67.89:1080
========================================
The script will attempt to open port 1080 in Windows Firewall. If it fails, manually run:
netsh advfirewall firewall add rule name="SOCKS5 Proxy" dir=in action=allow protocol=TCP localport=1080- Uses username/password authentication
- Generates random password on each start
- Only allows connections with valid credentials
Edit config.txt to change:
- Port (default: 1080)
- Username (default: polymarket)
- Password (leave empty for random)