Prepare Termux (basic)
Run these in Termux to get a good baseline environment:
- pkg update && pkg upgrade -y
- pkg install git -y
- pkg install python -y
- pkg install python-pip -y
- pkg install nano -y
- pkg install curl -y
Install useful defensive / analysis tools (for learning & diagnostics)
These tools help you inspect networks, capture packets, and scan your own hosts. Use them only legally.
- pkg install nmap # network scanner (use on your own network)
- pkg install netcat # simple TCP/UDP connections & testing
- pkg install tcpdump # packet capture (needs root for some interfaces)
- pkg install openssh # ssh client/server for secure remote access








