Sunday, September 20, 2020

How to browse the web anonymously on Manjaro with Kalitorify...

Download the project with git
$ git clone https://github.com/brainfucksec/kalitorify

Install dependencies
$ sudo pacman -S tor curl

Install make if not available in your system
$ sudo pacman -S make

* Important notes, proceed at your own risks:
kalitorify program was created for the Kali Linux operating system (Kali Linux rolling 2020.x), don't run on other Linux distributions if you're not sure what you're doing.

To make it works on Manjaro: Change UID that Tor runs as in the system (for Debian based distro, it's debian-tor. For Arch based distro, it's tor).
Open kalitorify.sh script with any text editor and search for debian-tor.

Before the changes:
# The UID that Tor runs as (varies from system to system)
#`id -u debian-tor` #Debian/Ubuntu
readonly tor_uid="$(id -u debian-tor)"

After the changes:
# The UID that Tor runs as (varies from system to system)
#`id -u debian-tor` #Debian/Ubuntu
readonly tor_uid="$(id -u tor)"
Save the changes.

Install kalitorify
$ cd kalitorify

$ sudo make install
Restart the machine.

Now check kalitorify version
$ kalitorify -v

To start kalitorify
$ sudo kalitorify -t

Sometimes transparent proxy failed to activate, kalitorify will suggest to restart with command below:
$ sudo kalitorify --restart


To stop kalitorify, use command below:
$ sudo kalitorify -c
Restart the machine.

Disclaimer:
Use these steps at your own risks. I will not be held responsible for any breaks, unable to restart, crash, damage or any legal terms that happen to your system.

No comments:

Post a Comment