admin-finder icon indicating copy to clipboard operation
admin-finder copied to clipboard

Random User-Agent + Proxy support

Open ServerRaider opened this issue 3 years ago • 1 comments

Maybe implement a function like --random-agent to get a random User-Agent on evry new request. Also you can implement use of proxy-servers (socks4,socks5,http) to avoid problems with IDS like CloudFlare and whatever.

ServerRaider avatar Dec 10 '20 21:12 ServerRaider

@ServerRaider Thanks for the suggestion.

Random user-agent on every request might make it slower. Currently it is only getting a random user-agent and using the same agent on all the requests. As for the proxy, I can implement it inside, but there is another simpler way, using linux env vars.

export HTTP_PROXY=10.10.1.10:3128
export HTTPS_PROXY=10.10.1.11:1080

Export those variables before executing the code and it should use the proxy. I will consider adding those two features into the code. Thanks again.

the-c0d3r avatar Dec 13 '20 08:12 the-c0d3r