Termux is an Android terminal emulator and Linux environment app. For that reason, you can use Termux like a mini system for hacking. However, there are some differences between linux and termux, so not all tools can be run well with termux.
But don't worry about that, in this article, I will show you a list of 10 best hacking tools for termux and how to install it.
List of 10 best hacking tools for termux
1. Hydra
Hydra is a login cracker that supports many protocols to attack [Cisco AAA, Cisco auth, Cisco enable, CVS, FTP, HTTP(S)-FORM-GET, HTTP(S)-FORM-POST, HTTP(S)-GET, HTTP(S)-HEAD, HTTP-Proxy, ICQ, IMAP, IRC, LDAP, MS-SQL, MySQL, NNTP, Oracle Listener, Oracle SID, PC-Anywhere, PC-NFS, POP3, PostgreSQL, RDP, Rexec, Rlogin, Rsh, SIP, SMB(NT), SMTP, SMTP Enum, SNMP v1+v2+v3, SOCKS5, SSH (v1 and v2), SSHKEY, Subversion, Teamspeak (TS2), Telnet, VMware-Auth, VNC and XMPP)]
Install:
pkg install hydra2. Metasploit Framework
I won't say much about this Metasploit tool, it is a tool that very popular for penetration testing and just a keyword search on google, you will have a lot of information about Metasploit.
Install (Android below 7.0):
pkg install unstable-repo
pkg install metasploitInstall (Android 7.0 or later):
curl -LO https://github.com/termux/termux-packages/files/3995119/metasploit_5.0.65-1_all.deb.gz
gunzip metasploit_5.0.65-1_all.deb.gz
dpkg -i metasploit_5.0.65-1_all.deb
apt -f installNotice: If Metasploit has a new version and you want to update Metasploit. Reinstall, never run the msfupdate command if you don't want an error, at least for the time being.
3. Nmap
A powerful network scanner
Install:
pkg install nmap4. Wireshark
If you want to trace and analyze the network. Wireshark is always by your side
Install:
Comming soon5. Bettercap
Bettercap is the Swiss army knife for network attacks and monitoring. It is a network security tool for network capture, analysis and MITM attacks.
Install:
pkg install root-repo
pkg install golang git libpcap-dev libusb-dev
sudo su
mount -o rw,remount /
mkdir -p /home/builder/.termux-build/_cache/18-arm-21-v2/bin/
ln -s `which pkg-config` /home/builder/.termux-build/_cache/18-arm-21-v2/bin/arm-linux-androideabi-pkg-config
go get github.com/bettercap/bettercap
cd $GOPATH/src/github.com/bettercap/bettercap
make build
sudo make install6. Slowloris
Slowloris is a type of denial of service attack tool which allows a single machine to take down another machine's web server with minimal bandwidth and side effects on unrelated services and ports
Install:
git clone https://github.com/gkbrk/slowloris.git
cd slowloris
python3 slowloris.py7. SQLMap
A powerful tool to exploit web SQL injection vulnerability.
Install:
pkg in unstable-repo
pkg install sqlmap






