An0nProxy is an automatic proxy rotator designed for bug bounty hunters and security researchers. It fetches live SOCKS5 proxies from multiple sources, tests them for functionality, and configures proxychains4 to provide 100% IP hiding. If no live proxies are available, it falls back to TOR for anonymity.
- Automatic Proxy Fetching: Retrieves SOCKS5 proxies from reliable sources including ProxyScrape, GitHub repositories, and CDN-hosted lists.
- Proxy Testing: Tests up to 100 proxies concurrently with a 15-second timeout to ensure they are live and functional.
- Proxychains4 Integration: Automatically updates the proxychains4 configuration file with working proxies.
- TOR Fallback: Includes TOR as a reliable fallback when no SOCKS5 proxies are available.
- Cron Job Support: Can be scheduled to run periodically using cron jobs to maintain fresh proxy lists.
- Fast and Efficient: Uses parallel processing for quick proxy testing and configuration updates.
proxychains4- Proxy chains tooltor- The Onion Routercurl- Command line tool for transferring dataparallel- GNU parallel for concurrent executionsudo- For modifying system configuration files
-
Clone this repository:
git clone https://github.com/JereC4str0/An0nProxy.git cd An0nProxy -
Make the script executable:
chmod +x An0nproxy.sh
-
Ensure required tools are installed:
sudo apt update sudo apt install proxychains4 tor curl parallel
-
Start TOR service:
sudo systemctl start tor sudo systemctl enable tor
Run the script to update proxies:
./An0nproxy.shUse proxychains4 with your tools:
proxychains4 nmap -sV target.com
proxychains4 sqlmap -u "http://target.com/vuln"To automatically update proxies every hour, add the following to your crontab:
crontab -eAdd this line (adjust path as needed):
0 * * * * /path/to/An0nProxy/An0nproxy.sh
For every 30 minutes:
*/30 * * * * /path/to/An0nProxy/An0nproxy.sh
For every 15 minutes:
*/15 * * * * /path/to/An0nProxy/An0nproxy.sh
- Fetches proxies from multiple sources
- Tests proxies concurrently using parallel processing
- Updates proxychains4 configuration with live proxies
- Adds TOR as fallback
- Displays final configuration
This project is open source. Please use responsibly and in accordance with applicable laws.
This tool is intended for ethical security research and bug bounty programs only. Ensure you have permission before testing on any systems.
