Termux(Android hacking machines) full tutorials for begginer
Helo freinds i am Yasin today we will discuss about Termux tools and see the full process from the beginningTable of Content
- Termux definitions
- How to install termux
- Most important termux hacking tools
- How to install webserver php
- Important notice
1Termux definitions
Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically - additional packages are available using the APT package manager.Compared to the millions of apps in Google Play Store, which in Mr. Peters words are considered “ports” of Linux applications which are made in an Android way, TERMUX is a pure LINUX app having a platform independent architecture making it portable and compatible with even Windows.
Before we continue, a simple line explanation on its UI: its UI is command line interface based.
Think MS-DOS and all those computers of yesteryears which came before Windows and MacOS and you will know what I am talking about. No shiny icons or instructions. Just you and your skills
2,How to install termux
1,Download Termux app and install it.Open Termux and wait for its complete installation.
Download herehere
2.Now, for first time you need to use this command
apt update
3.Now,we can use apt command.To know how to use apt , click on Help in Termux app (Long press in Termux Terminal window will bring menu )
4.To get list of available packages,use this command:
apt list
5.To install any package,say python ,use this command:
apt install python
6.To search any package,say python. Use this command:
apt search python
7.To remove/uninstall a package,say python , use this command:
apt remove python
8.To see installed packages, use this command:
apt list –installed

I hope this post will be useful to Android users who want to use Terminal with Linux environment on Android without need of rooting their phone.
3,Most important termux hacking tools
There is a growing community of hackers and penetration testers who are using Termux.
Some of the tools available in Termux on Android and Chrome are:
Hydra
It used to crack password of Gmail and etc
To install hydra
Open termux
apt upgrade && apt update
apt install git
git clone https://github.com/Gameye98/Black-Hydra.
cd Black-Hydra
pkg install python
pkg install python 2
python2 blackhydra.py
Now your brute force tool installed and ready to use
.Metasploit framework
Installing a Script for Metasploit
You can use it for Android to Android/Windows hacking. It is the best way to hack another android like WATCH_DOGSStyle :)
To install Metasploit-Framework in TermuX, enter the following commands carefully and one by one in the TermuX (After entering a single command line, don`t forget to press enter, and wait for the process to complete if any).
First of all, we have to install WGET script, for this, enter:
pkg install wget
— This is required to download script
(Wait till it is Completely installed)
Now we have to go to HOME directory, for this enter:
cd $HOME
Now, we have to install a script for Completely Installing All-in-One Metasploit Package. For this, enter:
wget Auxilus.github.io/metasploit.sh
Other stepInstalling Metasploit Framework
To run the newly installed script for installing Metasploit Framework, enter this command:
bash metasploit.sh
This script will install the latest version of Metasploit-Framework script also include some extras to make updating Metasploit faster. If all goes well, i.e. No red colored warnings, you can start Metasploit using the following simple steps:
First we have to go to the Metasploit directory (If you recently installed Metasploit, you don`t have to follow this step) by typing this:
cd metasploit-framework
Now to run Metasploit, enter this command (anywhere, because shortcut is created by the Script) :
msfconsole
.NMAP
How to install NMAP in Termux:
step1: open Termux
step2: type
“apt install nmap”
without double quote, then enter.
To know the accurate account of all of the online hosts on your network:
step3: type “nmap –sn 192.168.1.1-255” without double quotes, then enter.
How to scan any website:
step4: type “nmap –u mysite.com” without double quotes, then enter.
Here you will get Nmap scan report of mysite.com. How many ports are running in your network, and these ports are opened or not. What service is running like HTTP or https, TCP, rpcbind.
How to scan on any IP address on your network:
Step5: type “nmap 192.168.1.1” without double quote, then enter.
bettercap
In order to compile bettercap on Android
- In Termux, type:
pkg install golang git libpcap-dev libusb1.0-dev
and say "y" to the dependencies. - Type
go get github.com/bettercap/bettercap
and wait. - Your build is in
go/bin/bettercap
Slowloris
What is Slowloris?
Slowloris is basically an HTTP Denial of Service attack that affects threaded servers. It works like this:
We start making lots of HTTP requests.
We send headers periodically (every ~15 seconds) to keep the connections open.
We never close the connection unless the server does so. If the server closes a connection, we create a new one keep doing the same thing.
This exhausts the servers thread pool and the server can't reply to other people.
How to install and run?
You can clone the git repo or install using pip. Here's how you run it.
sudo pip3 install slowloris
slowloris example.com
That's all it takes to install and run
slowloris.py.
If you want to clone using git instead of pip, here's how you do it.
git clone https://github.com/gkbrk/slowloris.git
cd slowloris
python3 slowloris.py example.com
SOCKS5 proxy support
However, if you plan on using the -x option in order to use a SOCKS5 proxy for connecting instead of a direct connection over your IP address, you will need to install the PySockslibrary (or any other implementation of the socks library) as well. PySocks is a fork from SocksiPy by GitHub user @Anorov and can easily be installed by adding PySocks to the pip command above or running it again like so:
sudo pip3 install PySocks
You can then use the -x option to activate SOCKS5 support and the --proxy-host and --proxy-port option to specify the SOCKS5 proxy host and its port, if they are different from the standard 127.0.0.1:8080.
Configuration options
It is possible to modify the behaviour of slowloris with command-line arguments.
License
The code is licensed under the MIT License
Sqlmap
What is Sqlmap?
Sqlmap is an open source software. Sqlmap is one of the most powerful penetration testing tools available on the internet. It is one of my favorite tools and it is coded in python. You can use sqlmap to exploit and extract database information from SQL vulnerable websites.
Procedure
1: Open Termux and type command
pkg update
and press Enter.
- Now install the Python2 by command
pkg install python2
and press Enter - Install git by command
pkg install git
2: Now we are going to clone the Sqlmap
- Type command
git clone https://github.com/sqlmapproject/sqlmap.git
and press Enter - GitHub link is also given in Requirements. Its a 59MB package wait until it downloads completely. Make sure you have a good and stable internet connection unless the error occurred. When it completes the download it must show this type of message shown in this screenshot.
3: After completing the downloading
- Type command
ls
to see the list of available files there. - Type command
cd sqlmap
and press Enter. Now you are in sqlmap directory - Type command
ls
to see the list of available files there.
4: Now we are going to install the Sqlmap
- Type command
python2 sqlmap.py

5: How to use?
- Type command
python2 sqlmap.py -u (url)
and press Enter. Here (url) is the link or your website. In this screenshot i will test it on my own Website.
How to install webserver php
First of all I have to say that this experimental is tested and worked only with the Iris web framework, written in Golang and Android version 5.1.
Steps
Open your android device and follow the steps below.
- Install & open termux
- Execute the following commands by order
$ pkg install golang
$ export GOPATH=/data/data/com.termux/files/home/go
$ go get -u -v github.com/kataras/iris
$ cd /data/data/com.termux/files/home/go/src/github.com/kataras/iris/_examples/hello-world $ go run main.go
Warning: There a lot of third party "tutorials" on the Internet. Most of them created for clickbait and are not working in the real world. Some of them are even forcing confused users to install a malware on their devices. We are not responsible about any damage caused by following these "tutorials". And we aren't helping with hacking/cracking someone or something, even if you will say that you have a permission.3. Open your favorite browser and navigate to
http://localhost:8080
http://localhost:8080
0 Comments