How to use "Tor" Browser in kali linux
Hello friends, today i am going to setup Tor Browser in kali linux.
Did you know that you can do this within 10 minutes? Lets get started.
You will first need to download the TOR application from the OFFICIAL website- https://www.torproject.org/download/download-easy.html.en
The TOR browser allows you to navigate the web via the TOR network.
Extract the file & move to Desktop.....
Now open our Terminal & go to your Tor File
ex:
root@bob:~# cd Desktop
root@bob:~/Desktop# cd tor-browser_en-US
root@bob:~/Desktop/tor-browser_en-US/Browser# leafpad start-tor-browser
Once the file is opened in leafpad, press ctrl + f and type root and then search,
Now change the value from 0 to 1, as you are allowing Tor browser file with root
privilege.
For Example:
Before Change:
if [ "`id -u`" -eq 0 ]; then
complain "The Tor Browser Bundle should not be run as root. Exiting."
exit 1
fi
After Change:
if [ "`id -u`" -eq 1 ]; then
complain "The Tor Browser Bundle should not be run as root. Exiting."
exit 1
fi
Save the file & exit.
root@bob:~/Desktop/tor-browser_en-US/Browser# ./start-tor-browser to start Browser
and you will watch the video....
Hello friends, today i am going to setup Tor Browser in kali linux.
Did you know that you can do this within 10 minutes? Lets get started.
You will first need to download the TOR application from the OFFICIAL website- https://www.torproject.org/download/download-easy.html.en
The TOR browser allows you to navigate the web via the TOR network.
Extract the file & move to Desktop.....
Now open our Terminal & go to your Tor File
ex:
root@bob:~# cd Desktop
root@bob:~/Desktop# cd tor-browser_en-US
root@bob:~/Desktop/tor-browser_en-US/Browser# leafpad start-tor-browser
Once the file is opened in leafpad, press ctrl + f and type root and then search,
Now change the value from 0 to 1, as you are allowing Tor browser file with root
privilege.
For Example:
Before Change:
if [ "`id -u`" -eq 0 ]; then
complain "The Tor Browser Bundle should not be run as root. Exiting."
exit 1
fi
After Change:
complain "The Tor Browser Bundle should not be run as root. Exiting."
exit 1
fi
Save the file & exit.
root@bob:~/Desktop/tor-browser_en-US/Browser# ./start-tor-browser to start Browser
and you will watch the video....
No comments:
Post a Comment