Generated: 2026-03-09 17:09:20 UTC
| Metric | Value |
|---|---|
| Territories Hunted | 4 repositories |
| Total Discovered | 379,333 proxies |
| Working Proxies | 9,231 proxies |
| Hunt Success Rate | 2.43% |
| Geographic Coverage | 10 countries, 10 cities |
| Geolocated Proxies | 8,377 (90.7% coverage) |
| Average Hunt Score | 50.0/100 |
| Average Response Time | 1306ms |
- Canada: 2,367 proxies (25.6%)
- United States: 1,133 proxies (12.3%)
- Netherlands: 966 proxies (10.5%)
- China: 743 proxies (8.0%)
- Vietnam: 438 proxies (4.7%)
- The Netherlands: 392 proxies (4.2%)
- Japan: 327 proxies (3.5%)
- Finland: 261 proxies (2.8%)
- Cambodia: 218 proxies (2.4%)
- Germany: 132 proxies (1.4%)
| Repository | Proxies | Hunt Score | Avg Response |
|---|---|---|---|
heads/main |
7,528 | 50.0/100 | 1320ms |
Proxy-List/main |
1,246 | 50.0/100 | 1394ms |
PROXY-List/master |
404 | 50.0/100 | 1040ms |
main/proxies |
53 | 50.0/100 | 1471ms |
- HTTPS: 7,794 proxies (84.4%)
- SOCKS4: 679 proxies (7.4%)
- SOCKS5: 758 proxies (8.2%)
- Fastest Repository Response: 1040ms
- Slowest Repository Response: 1471ms
- Average Hunt Score: 50.0/100
- Pack Success Rate: 2.43%
- 🎯 Scent Tracking: Analyzes repository freshness and activity patterns
- 🏹 Pack Behavior: Community engagement and owner reputation analysis
- 🗺️ Territory Mapping: Content analysis and file pattern detection
- 🧠 Learning System: Improves success rates through hunt result feedback
- 🌍 Geolocation: Multi-provider IP location with intelligent caching
- 📄 Main Results - Clean IP:PORT list
- 📊 Enhanced JSON - Full data with geolocation
- 📈 Hunt Statistics - Detailed analytics
- 🗂️ By Type - Organized by protocol
- 🌐 Live Dashboard - Interactive web interface
import json
import requests
# Load hunt results
with open('proxy_hound_results.json', 'r') as f:
hunt_data = json.load(f)
# Use highest scoring proxies first
best_proxies = sorted(hunt_data['proxies'],
key=lambda x: x['hunt_score'],
reverse=True)
# Test a proxy
proxy = best_proxies[0]
proxy_url = f"http://{proxy['ip']}:{proxy['port']}"
proxies = {
'http': proxy_url,
'https': proxy_url
}
try:
response = requests.get('https://httpbin.org/ip',
proxies=proxies,
timeout=5)
print(f"✅ Proxy works! Your IP: {response.json()['origin']}")
print(f"📍 Location: {proxy.get('city', 'Unknown')}, {proxy.get('country', 'Unknown')}")
except:
print("❌ Proxy failed")# Use a high-scoring proxy
curl -x proxy_ip:proxy_port https://httpbin.org/ip
# Test with timeout
curl --connect-timeout 3 -x proxy_ip:proxy_port https://httpbin.org/ip// Load hunt results (in Node.js)
const huntData = require('./proxy_hound_results.json');
// Get best proxies by hunt score
const bestProxies = huntData.proxies
.sort((a, b) => b.hunt_score - a.hunt_score)
.slice(0, 10);
console.log('🎯 Top 10 Hunt Results:');
bestProxies.forEach((proxy, i) => {
console.log(`${i+1}. ${proxy.ip}:${proxy.port} (Score: ${proxy.hunt_score}/100, ${proxy.country})`);
});- 🔒 Geographic Diversity: 10 countries for enhanced anonymity
- ⚡ Performance Tested: All proxies validated for functionality
- 🎯 Quality Scored: Advanced algorithm ranks proxy reliability
- 🌍 Geolocated: Location data for strategic selection
- Rotate Proxies: Use different proxies for different requests
- Test First: Always verify proxy functionality before production use
- Monitor Performance: Track response times and success rates
- Geographic Selection: Choose proxies based on your target region
- Respect Rate Limits: Don't overload proxy providers
This hunt report is automatically generated every 8 hours using:
- Advanced Repository Analysis with pack behavior tracking
- Multi-Provider Geolocation with intelligent fallback
- High-Performance Validation (100 concurrent tests)
- Machine Learning hunt success optimization
The JSON exports can be directly integrated into:
- Load balancers and proxy rotators
- Web scraping frameworks
- API testing tools
- Geographic proxy selection systems
- Hunt Score Algorithm: Predictive proxy quality scoring
- Geographic Intelligence: Strategic proxy location selection
- Performance Analytics: Response time and success rate tracking
- Learning Optimization: Continuous improvement through feedback
Proxy Hound v2.1 successfully analyzed 4 repository territories and discovered 379,333 potential proxies. Through advanced pack validation and geolocation analysis, 9,231 high-quality proxies were confirmed working across 10 countries.
- 🎯 Scent Analysis: 50.0/100 average territory quality
- 🌍 Global Coverage: 10 countries, 10 cities mapped
- ⚡ Performance: 1306ms average response time
- 🔬 Validation Rate: 2.43% proxies passed strict testing
Report generated by Proxy Hound v2.1 - Advanced Repository Hunter with Geolocation Intelligence
🌟 Star this repository if Proxy Hound helped you find quality proxies!