Python Requests w/ proxy leaking real IP

bladee4r

Regular Member
Joined
May 3, 2021
Messages
390
Reaction score
360
Hey, anyone have experience with Requests leaking real IP even though using proxy?
 
show the requests code configuration there is probably something wrong with the proxy dictionary or something like that
 
Code:
proxies={'http':'http://usernameass@iport'}
response = l.post('link',headers=headers,proxies=proxies)

I just saw cloudfare had an update. Cloudfare is the one that is getting me. It might be that
 
proxies={'http':'http://username:pass@ip:port'}
response = l.post('link',headers=headers,proxies=proxies)

I just saw cloudfare had an update. Cloudfare is the one that is getting me. It might be that
Lol use code blocks. :P
 
Back
Top