04-10-2025, 08:54 AM
(03-23-2025, 08:35 AM)5150 Wrote:
Virus Total
nice program, i like the ui.
here are a few suggestions to make it quicker:
instead of doing requests.get() you should first create a global session using session = requests.Session()
this is a lot quicker as requests.get() is creating a session object every-time its called
then you can just do session.get() instead.
In the function check_socks_proxy() and check_http_https_proxy() nothing is done with the response.
this is where you should do session.head() . head requests are a lot more efficient as they do not return a body (only headers).
also instead of checking response.status_code == 200. you should do response.ok . the 'ok' attribute is just a boolean value that already exists on response.
it will also be True if it receives other ok status codes such as 201, 202, 203, etc etc.
then after you are done with a request you can simply clear any cookies that where set with session.cookies.clear()
Selling private web3/crypto vulnerabilities and data.
dm for simplex.