✨ Why This Is Cool
No need for big PC setups or heavy tools. We’ll use Termux — a terminal emulator that lets you run real Linux commands on Android. Perfect for learning ethical hacking, scanning networks, and flexing your tech skills on the go 😎
📚 What You’ll Learn
- How to install and setup Termux properly
- Install real pentesting tools (Nmap, Hydra, SQLMap)
- Scan devices on your WiFi like a cyber ninja 🥷
- Automate recon with a simple bash script
🔧 Step-by-Step Guide
1️⃣ Install Termux
First, make sure you're using the legit version from F-Droid, not the Play Store one (that one’s old). Download here 👉 https://f-droid.org/en/packages/com.termux/
If you’re confused, I’ve already written a simple guide to install it the right way 💡 Check out 👉 How to Install Termux Correctly (Noobs Read This)
2️⃣ Update & Install Basics
pkg update && pkg upgrade -y
pkg install git -y
pkg install python -y
pkg install curl wget -y
These are the essentials to make your Termux environment healthy and ready for 🔥
3️⃣ Install Pentesting Tools
pkg install nmap -y # network scanner 📡
pkg install hydra -y # bruteforcer 🔓
pkg install sqlmap -y # sql injection tool 🐍
pkg install net-tools -y # for ifconfig etc 🛠️
These are like your pocket weapons 🧰 You don’t need all the tools in the world, just the right ones.
4️⃣ Scan Your WiFi Network
Find your local IP using:
ifconfig
Then scan all connected devices (change IP as per your subnet):
nmap -sP 192.168.1.0/24
You’ll see a list of devices with their IP & MAC addresses 🔍
5️⃣ Get Detailed Info on a Target
nmap -A 192.168.1.105
This gives you info like:
- Open Ports 🔓
- Detected Operating System 🧠
- Running Services and Versions
Feeling cool already? 😎 Wait till the next step…
6️⃣ BONUS: Automate Recon with a Script 💻
Create a file called recon.sh with the following:
#!/data/data/com.termux/files/usr/bin/bash
echo "Enter target IP:"
read target
echo "Scanning $target 🔍"
nmap -A $target > recon_$target.txt
echo "Saved as recon_$target.txt ✅"
Then run this to give permission and start scanning:
chmod +x recon.sh
./recon.sh
Now every scan gets saved and you can look back at them like a proper analyst 🔥
💡 Pro Tips from Saad
- Run
termux-wake-lock
to prevent your phone from sleeping while scanning - Use
tmux
if you wanna multitask inside Termux like a hacker boss 💼 - Wanna take it even further? Check this 🔥 Install Metasploit on Termux
🔥 Final Thoughts
Bro, you just turned your phone into a cyber lab 😤 This is proof that learning cybersecurity doesn’t need expensive gear — just the right mindset, some curiosity, and Termux.
Wanna flex your setup? Drop a comment below or tag me somewhere! I might even feature your build 👀Stay Ethical 👾
0 Comments