Sign in to follow this  
www00

Python help

Recommended Posts

I want to make checker with python

i need to add proxy option 

what i need ??

Share this post


Link to post
Share on other sites

depends how do you check the account

Share this post


Link to post
Share on other sites

Like all checkers 

i need add combo and proxy

and start checking

Share this post


Link to post
Share on other sites

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'})

Share this post


Link to post
Share on other sites

Tnx bro i search this point a lot of time 

tnx

Share this post


Link to post
Share on other sites

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

Share this post


Link to post
Share on other sites

Thank you for the answers, i was also looking for the same stuff

Share this post


Link to post
Share on other sites

requests.post("URL", data={}, proxies={"https":random.choice(proxies)})

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this