TASIOMIND.DEV — OPERATIONAL▸▸▸FULL STACK DEVELOPER @ GWQ SERVICEPLUS AG▸▸▸FOUNDER — K8SGPT.AI▸▸▸OPEN SOURCE: ACTIVE▸▸▸DISTRIBUTED SYSTEMS / KUBERNETES / AI▸▸▸RUST + GO + PYTHON▸▸▸FIELD TESTED / STATUS — NOMINAL▸▸▸LOCATION: EUROPE/BERLIN▸▸▸TASIOMIND.DEV — OPERATIONAL▸▸▸FULL STACK DEVELOPER @ GWQ SERVICEPLUS AG▸▸▸FOUNDER — K8SGPT.AI▸▸▸OPEN SOURCE: ACTIVE▸▸▸DISTRIBUTED SYSTEMS / KUBERNETES / AI▸▸▸RUST + GO + PYTHON▸▸▸FIELD TESTED / STATUS — NOMINAL▸▸▸LOCATION: EUROPE/BERLIN▸▸▸

nmap

February 9, 2024

  • find hacking targets
  • vulnerabilities that you can exploit
  • see what ports are open (default ports can tell you what services are running on these ports)
code
# Scan entire network (ping an entire network to see what devices are online)
nmap -sP 10.7.1.0

nmap -v -A www.badstore.net

sudo nmap -A 10.77.1.0/24
  • -v: verbose output
  • -A: Enable OS detection, version detection (for protocols), script scanning, and traceroute
  • -O: Enable OS detection
code
sudo nmap -sT -p 80,443 10.7.1.0/24
  • sT TCP connect, i.e. full open scan

This scanning of entire networks might be blocked by firewalls (IDS: Intrusion Detection System) and may even be illegal. so you use -sS instead, the S is for stealthy