InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Follow publication

Configuring TOR with Python

Mayank Pandey
InfoSec Write-ups
Published in
4 min readAug 12, 2022
Photo by RealToughCandy.com

What is TOR?

Tor installation

sudo apt-get install tor
sudo service tor start
curl --socks5 localhost:9050 --socks5-hostname localhost:9050 -s https://check.torproject.org/ | cat | grep -m 1 Congratulations | xargs
Congratulations. This browser is configured to use Tor.

Configuring with Python

sudo pip3 install requests
sudo pip3 install requests[socks]
sudo pip3 install requests[security]
sudo pip3 install cryptography
import requests
requests.get('https://ident.me').text
proxies = {
'http': 'socks5://127.0.0.1:9050',
'https': 'socks5://127.0.0.1:9050'
}
requests.get('https://ident.me', proxies=proxies).text

Getting New Identity

sudo pip3 install stem
sudo pip3 install fake_useragent
sudo nano /etc/tor/torrc
ControlPort 9051
CookieAuthentication 1
sudo service tor restart

Packing it all in a Script

Use Cases for this Tool

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Responses (3)

Write a response