RustScan is a modern and very fast port scanning tool used to find open ports on a target system. It works much faster than traditional scanners because it quickly detects open ports and then passes them to Nmap for detailed scanning. You can run RustScan in Termux to perform network scanning and learning purposes directly from your Android device. Here’s a simple list of what you can do with rustscan:
- Find open ports quickly
- Detect running services
- Perform network reconnaissance
- Combine with Nmap for deep scanning
- Learn basic networking and security
Installation Commands
Update Termux and install required packages:
apt update && apt upgrade && apt install rust wget curl -yInstall RustScan:
apt install rustscan -yCheck installation:
rustscan -hUsage Commands
Scan a target IP:
rustscan -a 192.168.1.1Scan a domain:
rustscan -a example.comScan specific ports:
rustscan -a 192.168.1.1 -p 22,80,443Scan all ports:
rustscan -a 192.168.1.1 -p -Increase speed (threads):
rustscan -a 192.168.1.1 --ulimit 5000Run RustScan with Nmap (deep scan):
rustscan -a 192.168.1.1 -- -A -sVSave results:
rustscan -a 192.168.1.1 > output.txtBasic Commands
Show help menu:
rustscan -hCheck version:
rustscan -VSimple scan:
rustscan -a target.com