Termux Apk Download Latest Version For Android 2024

Termux is an app you can install on your Android phone or tablet that gives you a Linux-like command line environment. This means you can run many of the same commands and programs you would on a Linux computer, but right on your mobile device.

Table of Contents

What Can You Do with Termux?

  • Run Linux Commands: You can use typical Linux commands like ls to list files, cd to change directories, and more.

  • Install Software: Termux has its own package manager, so you can install software and tools just like you would on a regular Linux system. For example, you can install Python or Node.js to write and run programs.

  • Edit Files: You can create and edit files using text editors like nano or vim directly from your phone.

  • Customize: You can change how Termux looks and works to make it suit your needs better. This might include changing the color scheme or font size.

  • Extend Features: By installing additional packages, you can add more features to Termux. For example, the Termux API package lets you use your phone’s features, like the camera or sending SMS messages, from the command line.

Termux Apk Download All Versions

Termux VersionDirect Download Link
0.118
0.117Download Now
0.116

Downloading and installing the Termux app on your Android device is easy. Here’s how you can do it:

  1. Download F-Droid: Open your browser and go to the F-Droid website. Download and install the F-Droid app by following the instructions on the website.

  2. Open F-Droid: Once F-Droid is installed, open it from your app drawer.

  3. Search for Termux: In F-Droid, use the search function to find Termux.

  4. Install Termux: Tap on Termux in the search results and then tap “Install.” F-Droid will download and install Termux on your device.

That’s it! You now have Termux installed on your Android device, and you’re ready to explore its powerful command-line capabilities.

Termux Commands Lists

Termux provides a wide range of commands categorized based on their functionality. Here’s an explanation of some common Termux commands grouped by category:

File Management Commands

CommandDescription
lsLists files and directories.
cdChanges the current directory.
mkdirCreates a new directory.
rmRemoves files or directories.
cpCopies files or directories.
mvMoves or renames files or directories.
findSearches for files in a directory hierarchy.
touchCreates an empty file or updates the timestamp of an existing file.

Text Editing Commands

CommandDescription
nanoA simple text editor for creating or editing files.
vimA powerful text editor for advanced users.
catDisplays the contents of a file.
grepSearches for patterns in text files.
sedA stream editor for filtering and transforming text.
lessViews the contents of a file one screen at a time.

Package Management Commands

CommandDescription
pkgPackage manager for installing, updating, or removing packages.
aptPackage management tool for managing Debian-based packages.
dpkgThe Debian package manager for handling .deb files.

Network Commands

CommandDescription
pingCheck if a host is reachable.
curlTransfers data to or from a server.
wgetDownload files from the internet.
sshConnects to a remote server securely.
ifconfigConfigures or displays network interface parameters.
netstatDisplays network connections, routing tables, and interface statistics.

System Information Commands

CommandDescription
topDisplays a dynamic real-time view of system processes.
htopAn interactive process viewer.
dfShows disk space usage.
freeDisplays memory usage.
uname -aDisplays detailed information about the system.
uptimeIt shows how long the system has been running.
psDisplays are currently running processes.

Development Commands

CommandDescription
gccCompiles C programs.
clangCompiles C and C++ programs.
pythonRuns Python scripts or starts the Python interpreter.
nodeExecutes JavaScript code with Node.js.
rubyInterprets and runs Ruby scripts.
javacCompiles Java source files.
javaRuns Java applications.
perlRuns Perl scripts.

Version Control Commands

CommandDescription
gitManages source code versioning and collaboration.
svnSubversion is a version control system similar to Git.

Other Useful Commands

CommandDescription
ssh-keygenGenerates SSH keys for secure authentication.
termux-setup-storageSets up access to the device’s external storage.
termux-notificationSends notifications from the command line.
termux-toastDisplays a toast message on the screen.
chmodChanges file permissions.
chownChanges file ownership.
killTerminates processes by PID.
zipCompresses files into a ZIP archive.
unzipExtracts files from a ZIP archive.
tarArchiving files are stored in a tarball and optionally compressed.

 

Best Termux Hacking Tools 2024

Termux is a powerful terminal emulator for Android that allows you to run Linux-based applications and scripts. Here’s a list of some of the best Termux hacking tools, as well as a brief description and installation guide for each.

Nmap

Nmap (Network Mapper) is a free and open-source port scanning tool. It’s widely used for network discovery and security auditing. It can identify hosts and services on a network, thus creating a “map” of the network.

				
					pkg update && pkg upgrade -y
pkg install curl
pkg install nmap
				
			

Wireshark

Wireshark is a network protocol analyzer that captures and interacts with network traffic in real time. It’s used for network troubleshooting, analysis, and software development.

				
					apt update && apt upgrade
apt install wget -y
wget https://raw.githubusercontent.com/Hax4us/Hax4us.github.io/master/sources-aarch64.list.txt
mv sources-aarch64.list.txt sources.list
mv sources.list $PREFIX/etc/apt
wget https://xeffyr.github.io/termux-x-repository/pubkey.gpg
apt install gnupg gnupg2 && apt-key add pubkey.gpg -y
apt update -y
apt install wireshark

				
			

Nikto

Nikto is a web server scanner that tests for multiple vulnerabilities. It’s designed to find potential problems and security issues on web servers.

				
					apt update && apt upgrade
pkg install git
pkg install perl
git clone https://github.com/sullo/nikto.git
cd nikto/program
perl nikto.pl -h <Target Website>
				
			

Social Engineering Toolkit (SET)

SET is an open-source penetration testing framework designed for social engineering. It allows security professionals to perform advanced attacks.

				
					pkg update && pkg upgrade -y
apt install curl -y
curl -LO https://raw.githubusercontent.com/Hax4us/setoolkit/master/setoolkit.sh
sh setoolkit.sh
cd setoolkit
./setup.py install
./setoolkit
				
			

FSociety Hacking Toolkit

FSociety is a penetration testing framework that includes various tools featured in the TV series Mr. Robot.

				
					pkg update && pkg upgrade
pkg install git
pkg install python2
git clone https://github.com/Manisso/fsociety.git
cd fsociety
chmod +x install.sh

				
			

Zphisher

Zphisher is an advanced phishing toolkit that offers over 30 phishing pages for various social media platforms.

				
					pkg update && pkg upgrade -y
apt install git curl php openssh -y
git clone git://github.com/htr-tech/zphisher.git
cd zphisher
				
			

Tool-X

Tool-X is a tool that allows you to install over 370 hacking tools in Termux with a single click. It’s designed to save time and effort.

				
					pkg update && pkg upgrade -y
pkg install git
git clone https://github.com/Rajkumrdusad/Tool-X.git
cd Tool-X
chmod +x install.aex
sh install.aex
./install.aex

				
			

Seeker

Seeker hosts a fake website that requests location permissions from the target. If the target grants permission, it provides detailed location information.

				
					sudo apt-get update
sudo apt-get install python3 python3-pip php ssh git
pip3 install requests
git clone https://github.com/thewhiteh4t/seeker
cd seeker
python3 ./seeker.py -h

				
			

FAQs

Termux is an Android app that provides a Linux environment on your smartphone. It’s like having a mini-Linux computer in your pocket, where you can run commands and scripts and even install and use various software packages.

Yes, Termux is safe if you download it from trusted sources like the Google Play Store or F-Droid. Just like any other tool, it depends on how you use it. Avoid running suspicious scripts or commands from unknown sources.

Absolutely! Termux works perfectly fine on non-rooted devices. You don’t need root access to use most of the features and tools available in Termux.

Termux lets you do a lot of things, like coding, running scripts, managing files, connecting to servers via SSH, and much more. You can even turn your phone into a portable hacking and penetration-testing device (ethically, of course).

You can install software on Termux using the pkg Command. For example, to install a package like git, you would type pkg install git. It’s similar to how you install software on Linux.

Yes, you can run Python scripts on Termux. Just install Python by typing. pkg install pythonThen, you can run your scripts just like you would on any other computer.

Yes, Termux can access your phone’s storage, but you must permit it first. Run termux-setup-storage To set up access to your internal and external storage.

 

Yes, you can use Termux for ethical hacking and penetration testing. Many tools, such as Nmap and Metasploit, are available in Termux. Just remember always to have permission before testing any systems.

Review Termux App