Skip to main content

INSTALLING ALL KALI LINUX TOOLS ON OTHER LINUX OS


Whenever it comes to Penetration and Security Testing , KALI LINUX is considered one of best ever penetration testing Operating System. As It have hundreds of security testing tools.

However there are some disadvantages of Kali. Like, you can use STEAM OS as your Linux Preference, You may use Ubuntu as beginner, but they don't have those all tools that are present in Kali.

So here I want to introduce a tool that can install all Kali Linux tools in your Linux OS (obviously, other then kali) .
It's KATOOLIN  , It's a Python-Based Tool , available on GITHUB, CLICK HERE.

OR Directly Clone it into your system from terminal by copying following line:

git clone https://github.com/LionSec/katoolin.git


So now you have Katoolin installed.
Next step is to make it executable. Do it by copying following command to your Terminal

chmod +x /usr/bin/katoolin


usr/bin/katoolin is location where katoolin script is saved.

Next, run katoolin by simply typing katoolin in Terminal.



It's very easy to run Katoolin!
There are options with their details in front of them.

I recommend to select option 2.
It will show all categories of Kali Tools.


Now type 0 and hit enter.
It will get list of all install-able tools.


Again type 0 and hit enter , It will start process of installing tools, so now you can install all kali tools and get into security testing.

Did you find it helpful, If you face any problem, tell in comments.


THANKS FOR READING THE POST!

STAY TUNED FOR MORE!

We will be back soon with more articles 

Till then...

Follow me on Instagram 

There you will find some awesome programming memes!




Comments

Resources

Popular posts from this blog

WHAT IS OBFUSCATION? AND HOW TO OBFUSCATE DIFFERENT PROGRAMMING LANGUAGES!

OBFUSCATION - A very important part of closed source programming! That helps in security of apps, websites,softwares, etc. We'll mention about obfuscating code of different languages, if we're missing something, that you were expecting, tell in comments, I'll add that one! But first of all,what is obfuscation? Dictionary meaning of obfuscation is , the action of making something obscure, unclear, or unintelligible. It's so similar in programming too, so in programming,   It's simply conversion of a code in a computer language into some secret unreadable, non-understandable code! That could be understood by only compiler or the machine you are running on! Why obfuscation? It's too easy to decompile C# or Java code, and it could allow goons to read all the code of a program, and then he/she may copy it or even harm the organization! So, most of languages have a compiler that converts your raw code into Byte Code , that either converts it into non...

WEB SERVER FINGERPRINTING USING NETCAT- INFORMATION GATHERING

Hey There! I just thought about starting a Web Security Testing Series! So , here it is! I just started the Series with Information Gathering, so it's a part of Information Gathering that is- "Web Server Fingerprinting" If you are beginner , it could be good start, because the information gathering is one of most initial stages of Web Security Testing (aka Hacking). Objective of Information gathering is to get more and more info about victim, so we can select the perfect attack or exploit , that could easily Find a vulnerability and get your way into system! I'll perform fingerprinting using Netcat Tool, that is pre-installed in Kali Linux, but it's bright side is that you could use it on WINDOWS, It's compiled to Windows Executable File by a non-official authority, so go and get it here ! And If it's not installed on your Linux System, run following command in Terminal! sudo apt-get install netcat Netcat is called Swiss Army Knife of Hack...