How to Install Wireshark in Termux (No Root) | वायरशार्क कैसे इंस्टॉल करें
What Is Wireshark?
Wireshark is a free and open-source network protocol analyzer. It allows you to capture and inspect network traffic at a very detailed level. Wireshark is widely used by network administrators, security researchers, ethical hackers, and professionals for troubleshooting and analysis.
It comes pre-installed in Kali Linux and is also available for Windows, Linux, and macOS. Using Termux, it can be installed on Android without root access.
Wireshark for root users (check here)
Install Wireshark in Termux
Follow the steps below carefully to install Wireshark on Android using Termux.
Step 1: Install and Update Termux
- Download and install Termux from the Play Store: Install Termux
- Open Termux and update packages:
apt update
Step 2: Check Device Architecture
Run one of the following commands:
uname -m
dpkg --print-architecture
Supported architectures:
- ARM / AArch64
- ARMHF / ARMv7 / ARMv5
Method 1: AArch64 / ARMv8 Devices
- Install wget:
apt install wget
- Download repository list:
wget https://raw.githubusercontent.com/Hax4us/Hax4us.github.io/master/sources-aarch64.list.txt
- Rename and move repository file:
mv sources-aarch64.list.txt sources.list
mv sources.list $PREFIX/etc/apt
- Add repository key and update:
wget https://xeffyr.github.io/termux-x-repository/pubkey.gpg
apt install gnupg gnupg2 -y
apt-key add pubkey.gpg
apt update -y
- Install Wireshark:
apt install wireshark
Method 2: ARM / ARMv7 / ARMHF Devices
- Update packages:
apt update && apt upgrade
- Install wget:
apt install wget
- Download repository list:
wget https://raw.githubusercontent.com/Hax4us/Hax4us.github.io/master/sources-arm.list.txt
- Rename and move repository file:
mv sources-arm.list.txt sources.list
mv sources.list $PREFIX/etc/apt
- Add repository key and update:
wget https://xeffyr.github.io/termux-x-repository/pubkey.gpg
apt install gnupg gnupg2 -y
apt-key add pubkey.gpg
apt update -y
- Install Wireshark:
apt install wireshark
Installation Complete
Wireshark has been successfully installed in Termux without root access.
Thank you 😎