-
-
Save jefftriplett/9748036 to your computer and use it in GitHub Desktop.
""" | |
setup: | |
pip install requests | |
pip install requests[socks] | |
super helpful: | |
- http://packetforger.wordpress.com/2013/08/27/pythons-requests-module-with-socks-support-requesocks/ | |
- http://docs.python-requests.org/en/master/user/advanced/#proxies | |
""" | |
import requests | |
proxies = { | |
'http': 'socks5://127.0.0.1:9150', | |
'https': 'socks5://127.0.0.1:9150' | |
} | |
def main(): | |
url = 'http://ifconfig.me/ip' | |
response = requests.get(url) | |
print('ip: {}'.format(response.text.strip())) | |
response = requests.get(url, proxies=proxies) | |
print('tor ip: {}'.format(response.text.strip())) | |
if __name__ == '__main__': | |
main() |
Try port 9150 with tor browser open if that didn't work
1- Tor Should be Installed
sudo apt install tor
2- Tor Service must be opened
sudo service tor start
3- install requirements
pip install requests
pip install requests[socks]
4 - change the port in the tool from 9150 to 9050
5 - RUN :)
its works, thank a lot...
@dznet, @itJunky, @siddiquim-vmware add a .to so your hiddenwiki host value becomes
zqktlwi4fecvo6ri.onion.to
Now, time for the red pill:
The request module is not looking up the
.onion
domain via the socks proxy but via standard dns. Since there is no rootonion
domain provided by icann or other NIC operators your lookup goes off to the root dns servers then dies.The solution is to use the
socks5h://
protocol in order to enable remote DNS resolving via the socks proxy in case the local DNS resolving process fails. Use The Source Luke.
This worked for me 👍
Thank you very much good man!