Join WhatsApp

Join Now

Join Telegram

Join Now

How To Install Aircrack NG In Termux | Latest Method 2025

By Saboor Shawkat

Updated on:

Aircrack NG In Termux
5/5 - (4 votes)

In This Post I Am Going To Show You How You Can Install Aircrack NG In Termux. I Will Show You How You Can Install The Dependencies And Then Install The Aircrack NG With Easiest And The Latest Method. We Will Go Through The Step By Step Guide About Aircrack NG. We Will Test The Aircrack NG In Termux By Checking The Cracking Speed Of The Tool. So Let’s Start,

How To Install Aircrack NG In Termux?

Aircrack NG Can Be Installed In Termux Using The GitHub. We Will Clone The Repository Of Aircrack NG Then We Will Install It. One Must Know That This We Have Different Codes For Different Architectures. Follow The Below Steps To Install Aircrack NG In Termux.

Step 1: Open The Termux App And Connect To The Internet Connection.

Step 2: Type pkg update && pkg upgrade -y To Update And Upgrade All The Packages Of Termux.

ShellScript
pkg update && pkg upgrade -y

Step 3: Install Dependencies For The Aircrack NG Using apt install libc++ libnl libpcap libsqlite openssl pcre zlib -y Command.

ShellScript
apt install libc++ libnl libpcap libsqlite openssl pcre zlib -y
Installing Dependencies For Aircrack NG

Step 4: Install The Wget In Termux Using pkg install wget -y Command So That We Can Download Aircrack NG Files From Web.

ShellScript
pkg install wget -y

Step 5: Now We Have Check The Architecture Of Our Device So That We Can Install The Correct Version Of Aircrack NG In Termux. Type uname -m To Check The Architecture Of Your Device. Follow The Below Steps After Your Own Architecture Now.

ShellScript
uname -m
Checking The Uname Of Device

Step 6: Download The Zip File For Your Architecture Using The Below Commands:

For AARCH 64 We Need To Type wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-aarch64/aircrack-ng_3_1.7_aarch64.deb Command.

ShellScript
wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-aarch64/aircrack-ng_3_1.7_aarch64.deb
Downloading Files For Aircrack NG

For ARM We Need To Type wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-arm/aircrack-ng_3_1.7_arm.deb Command.

ShellScript
wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-arm/aircrack-ng_3_1.7_arm.deb

For x86_64 We Need To Type wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-x86_64/aircrack-ng_3_1.7_x86_64.deb Command.

ShellScript
wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-x86_64/aircrack-ng_3_1.7_x86_64.deb

For i686 We Need To Type wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-i686/aircrack-ng_3_1.7_i686.deb Command.

ShellScript
wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-i686/aircrack-ng_3_1.7_i686.deb

Step 7: Start The Installation Of The Aircrack NG In Termux Using The Below Commands For Different Architectures In Termux:

For AARCH 64 Type dpkg -i aircrack-ng_3_1.7_aarch64.deb Command To Install Aircrack NG In Termux.

ShellScript
dpkg -i aircrack-ng_3_1.7_aarch64.deb
Installing Aircrack NG In Termux

For ARM Type dpkg -i aircrack-ng_3_1.7_arm.deb Command To Install Aircrack NG In Termux.

ShellScript
dpkg -i aircrack-ng_3_1.7_arm.deb

For x86_64 Type dpkg -i aircrack-ng_3_1.7_x86_64.deb Command To Install Aircrack NG In Termux.

ShellScript
dpkg -i aircrack-ng_3_1.7_x86_64.deb

For i686 Type dpkg -i aircrack-ng_3_1.7_i686.deb Command To Install Aircrack NG In Termux.

ShellScript
dpkg -i aircrack-ng_3_1.7_i686.deb

Wait Till The Installation Has Been Finished And Once The Installation Has Been Completed You Can Check If The Aircrack NG Has Been Successfully Installed Or Not In Your Termux Using aircrack-ng -S Command.

How To Use Aircrack NG In Termux?

Arcrack NG Can Be Used For Various Purposes That Depends Upon Our Need, We Will Talk About Few Methods And Uses Of Aircrack NG In Termux. Some Of The Uses May Require A Root Permission In Aircrack NG. Follow The Steps To See How To Use Aircrack NG In Termux.

First Use: We Will First Know How We Can Check The Decrypting Speed Of Aircrack NG. For This We Need To Type aircrack-ng -S Command In Termux.

ShellScript
aircrack-ng -S
Checking Decrypting Speed In Aircrack NG

Second Use: It Can Used To Moniter All The Wifi Networks. This Can Be Done Using aircrack-ng wlan0 Command In Termux.

ShellScript
aircrack-ng wlan0

Third Use: It Can Be Used To Capture Network Packets. This Can Be Done Using aircrack-ng --bssid --channel -w wlan0 Command.

ShellScript
aircrack-ng --bssid --channel -w wlan0

Fourth Use: You Can Also Recover The Forgotten Wifi Passwords Using Aircrack NG. This Can Be Done Using aircrack-ng -b <BSSID> -w <wordlist> <capture_file> Command.

ShellScript
aircrack-ng -b <BSSID> -w <wordlist> <capture_file>

Please Make Sure Use The Data Instead Of The Names. Replace

  • <BSSID> With Mac Address On Which You Want To Perform Attack.
  • <wordlist> With The Location Of The Wordlist Where It Is Downloaded.
  • <capture_file> With The File Name.

How To Install Aircrack NG In Termux Using A Single Command?

Instead Of Typing Commands One By One You Can Simply Automate The Work Just By Combining All The Commands With The ‘&’ Sign. Type pkg update && pkg upgrade -y && apt install libc++ libnl libpcap libsqlite openssl pcre zlib -y && pkg install wget -y && wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-aarch64/aircrack-ng_3_1.7_aarch64.deb && dpkg -i aircrack-ng_3_1.7_aarch64.deb Command In Termux To Install Aircrack NG In Arch Based Architecture Android Device.

ShellScript
pkg update && pkg upgrade -y && apt install libc++ libnl libpcap libsqlite openssl pcre zlib -y && pkg install wget -y && wget https://raw.githubusercontent.com/pitube08642/aircrack-ng-for-termux/main/dists/termux/aircrack-ng/binary-aarch64/aircrack-ng_3_1.7_aarch64.deb && dpkg -i aircrack-ng_3_1.7_aarch64.deb

You Can Also Combine Yours Architecture Based Command Just As I Have Did In The Above Command. Make Sure To Follow The Step By Step Method If Any Error Occurred. The Step By Step Guide Will Help You To Check The Problem While Installing Aircrack NG In Termux.

How To Remove Aircrack NG From Termux?

If You Have Completed Using Aircrack NG Or Have Just Bored With The Tool, You Can Go For The Removing Of The Aircrack NG In Termux. You Just Need To Go To The Directory Where The Aircrack NG Has Been Downloaded Then Type rm -rf Command Followed By The Name Of The Zip File To Remove It.

Conclusion:

Aircrack NG Comes With A Lot Of Features In Termux. This Tool Was Previously Available In Termux Packages But Unfortunately It Has Been Removed From It And Now Can Be Installed From Github. The Tool Require Root Permissions For Most Of The Things. This Tool Is Preinstalled In Kali Linux And Can Be Installed In Ubuntu And Other Distros. This Whole Information Is Only For The Educational Purposes And We Do Not Support Any Hacking. Remember With Great Powers Comes Great Responsibilities. Thanks For Reading.

Frequently Asked Questions:

What Is Aircrack NG?

Aircrack NG Is A Network Based Pentesting Tool That Can Be Used To Test The Networks And Make The Networks More Secure.

Does Aircrack NG Require Root Permissions?

Aircrack NG Does Not Require Any Root Permission To Install But May Require Root Permission To Work.

Can We Hack A Network Using Aircrack NG?

Aircrack Ng Is Used To Test The Networks And Does Not Encourage Any Kind Of Network Hacking.

Leave a Comment