www00 4 I want to make checker with python i need to add proxy option what i need ?? Quote Share this post Link to post Share on other sites
www00 4 Like all checkers i need add combo and proxy and start checking Quote Share this post Link to post Share on other sites
KiiRan 2 if you're making requests with requests module then add this line to args of the req like that: session.request("POST", data=payload, headers=headers, proxies={'https': YOURPROXY, 'http': YOURPROXY'}) if you want to use sock5 then session.request("POST", data=payload, headers=headers, proxies={'https': socks5://YOURPROXY, 'http': socks5://YOURPROXY'}) Quote Share this post Link to post Share on other sites
www00 4 Tnx bro i search this point a lot of time tnx Quote Share this post Link to post Share on other sites
darksh33p 0 if you're making requests with requests module then add this line to args of the req like that: session.request("POST", data=payload, headers=headers, proxies={'https': YOURPROXY, 'http': YOURPROXY'}) if you want to use sock5 then session.request("POST", data=payload, headers=headers, proxies={'https': socks5://YOURPROXY, 'http': socks5://YOURPROXY'}) u might also need to install request[socks] module if using older version requests module Quote Share this post Link to post Share on other sites
BlindFoggi91 0 Thank you for the answers, i was also looking for the same stuff Quote Share this post Link to post Share on other sites
desu333 0 requests.post("URL", data={}, proxies={"https":random.choice(proxies)}) Quote Share this post Link to post Share on other sites