Kali Linux - If you had to pick ONLY five tools to use as an Information Security Manager - what tools would you pick?
Nmap, wireshark, burp, metasploit, a good text editor
More on reddit.comInteresting tools in kali?
Give me some Kali Linux tools suggestion
BEST TOOLS IN KALI
Which Kali Linux Tools are essential for beginners in ethical hacking and Web Testing?
How frequently are these recommended Kali Linux Tools updated, and how can users ensure they have the latest features and security patches?
Can these Kali Linux Tools be used for both penetration testing and vulnerability assessments?
Videos
This might sound like a stupid question, but I always find myself distracted by the number of tools Kali has.
I want to narrow down my focus to just a few tools - rather than being the jack of all trades, master of none.
https://tools.kali.org/tools-listing
I'm a new user to this whole Linux Ecosystem and I was quite intrigued by what Kali has to offer.. Idk much about any of it and I have a real basic idea of "N-map" and "MetaSploit" What are the must learn tools for starters and what resources are best to follow?
- Add Kali Linux Repositories to Ubuntu:
echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" | sudo tee /etc/apt/sources.list.d/kali.list
2.Add Kali GPG Key:
wget -q -O - https://archive.kali.org/archive-key.asc | sudo apt-key add -
3.Update APT package list: sudo apt update
4.Install Specific Kali Tools: sudo apt install amass
If you only want to install a few tools and avoid potential future conflicts, you can remove the Kali repositories after installing the tools:
Remove Kali Repositories After Installation (Optional):
sudo rm /etc/apt/sources.list.d/kali.list
Update APT:
sudo apt update
I will also provide some additional options:
1)Using snap to Install Tools
Some tools can be installed via snap, which is a universal package manager:
Install using snap: `sudo snap install amass --classic`
2)Use Katoolin:
Katoolin is a script that simplifies the process of installing Kali Linux tools on Ubuntu:
Install Katoolin:
sudo apt install python3 python3-pip
sudo pip3 install katoolin
Run Katoolin: sudo katoolin
Follow the on-screen instructions to install categories of tools.
Amass in-depth DNS enumeration and network mapping tool can be installed without enabling any potentially unsafe additional repositories by installing the amass snap package with the following command.
sudo snap install amass
To start Amass from the terminal type the command amass
Subcommands:
amass intel - Discover targets for enumerations
amass enum - Perform enumerations and network mapping
amass viz - Visualize enumeration results
amass track - Track differences between enumerations
amass db - Manipulate the Amass graph database
The OWASP Amass Project has developed a tool to help information security professionals perform network mapping of attack surfaces and external asset discovery using open source information gathering and active reconnaissance techniques.
For general information about installing other Kali Linux tools in Ubuntu refer to Proper Installation of Kali linux tools in Ubuntu. If you don't need to install too many Kali Linux tools, check first if the software that you are trying to install is included in the default Ubuntu software repositories and read the warning at LionSec / katoolin GitHub webpage.