Whats Termux Tools?
Termux is the most famous terminal emulator on the rundown by download check. It includes a great, bright UI (really sweet), support for bash and zsh shells, SSH support, and a python reassure. It does what you need it to do and it doesn't actually get as you would prefer while you do it. It's likewise free without any promotions, in-application buys, or anything accursed.Top 5 Most popular Termux tools
Best Termux Tools For Ethical Hacking in 2021: Here is the best tools list for the android Termux hacking app. With these tools, you can learn ethical hacking from the android Termux app.- Metasploit Framework
- Nmap
- SQLMAP
- Wireshark
- Social Engineering Toolkit
1.Metasploit Framework
Metasploit contains a lot of tools that allow you to test vulnerabilities and execute attacks on another system. it is one of the most used penetration testing tools. You can basically remotely access the victim's data.
To install Metasploit Framework.
Step 1:
Open the termux app and type or paste the below command to update and upgrade all the packages in the termux app.
Open the termux app and type or paste the below command to update and upgrade all the packages in the termux app.
pkg update && pkg upgrade
This command will update the termux so in the installation we don't get any error.
Step 2:
Now we will have to install some scripts and dependencies using the below command.
Step 2:
Now we will have to install some scripts and dependencies using the below command.
pkg install git curl wget nmap -y
we are installing 4 packages using a single command.
Copy-paste this command and this command will Download the Metasploit in termux app.
Step 4:
We will use the chmod command to make the Metasploit.sh file executable.
- git will allow us to copy the files from the GitHub repository.
- Wget will get the data from web servers.
- curl stands for Client URL and it will allow transferring data using various protocols.
- Nmap is a network mapper it's for network discovery.
Copy-paste this command and this command will Download the Metasploit in termux app.
curl -LO raw.githubusercontent.com/Hax4us/Metasploit_termux/master/metasploit.shPlease wait it can take some time to download.
Step 4:
We will use the chmod command to make the Metasploit.sh file executable.
chmod 777 metasploit.sh
If you will type ls you can see that the Metasploit.sh file will be green now
Step 5:
Type this command to install Metasploit on your system.
./metasploit.sh
Presently pause for a minute and let the termux introduce the Metasploit on your Termux appropriately it can require some investment between 20-60 mins.
Simply type the underneath order to run the Metasploit, It will take 20 to 60 Sec to open
msfconsole
After opening the Metasploit it will show some type of logo and there will be M on that.
2.Nmap
Nmap is an Open Source Network mapper that permits you to check your organization and gather Important information about the organization just as every one of the gadgets associated with it. For turning into a decent programmer you should realize how to gather information about any gadget and network and with the assistance of the Nmap device you can get all that data in a couple of orders. To gather the information about the Device Nmap sends a bundle and afterward examinations it to get the Information.
Nmap is a truly significant device and we don't need any bugs while running it so we will initially redesign the bundles utilizing the underneath order.
$ apt update && apt upgrade -y
$ pkg install nmapNow if you see the $ sign on your Termux that means its Completely installed
Nmap Termux :
To scan a Website you must have permissions Else it can cause you Trouble, Nmap allows you to Scan there Test website so, in this post, we will use that website, you just have to type Nmap and then the site name you can paste the below command in the termux to scan the Nmap test website. nmap Scanme.nmap.org
Output :
You can see that we got an IP-Adress of the website in the second line as well as we can see the latency is 0.24 Seconds.and we can also see all the open port of the website.
Output :
You can see that we got an IP-Adress of the website in the second line as well as we can see the latency is 0.24 Seconds.and we can also see all the open port of the website.
Scan your Local Network with Nmap Termux :
If You just wanna scan your Local network (Your Intire subnet )and know How many devices are connected with your Wifi then you can use this command. This command will give you a list of all Devices in the network as well as you all the open ports of those devices.nmap 192.168.1.1/24Output :
Now you can see in the below picture, I have 2 devices in my network. and you can also see all the open ports. The 192.168.1.202 Host is up and the latency is 0.0025s. If you have multiple devices on your netw
Aggressive scan using Nmap Termux :
In the above Local Network scan, It won't show you detailed information but if you want to see every possible detail then you can use -A argument in the command. I am just gonna use the above command with -A argument.
nmap -A 192.168.1.1/24
Output :
Now you can see Its showing iBall Baton I Login as well as it is showing the URL of the login page. This is just my local network that's why you are unable to see anything interesting but if are scanning any website then it can surely give you some extra data.
Here you can see that Nmap is checking for port 80 only but on my entire network.
Now you can see Its showing iBall Baton I Login as well as it is showing the URL of the login page. This is just my local network that's why you are unable to see anything interesting but if are scanning any website then it can surely give you some extra data.
Scan a Single port in Nmap Termux :
If you just wanna scan a Single Port of a Particular Ip address then you can do that using the below command. Here I am scanning the entire network for the port 80 but you can put a single IP and it will work Perfectly. The advantage of scanning a single port is that it will save you some extra time especially when you are in a hurry.nmap -p 80 192.168.1.1/24
Output :
Here you can see that Nmap is checking for port 80 only but on my entire network.
0 Comments