Network and Container Scanning Cheatsheet
Summary
Accurate-Cyber-Defense shares a compact announcement listing nmap scan options and examples plus container scanning commands. It covers CIDR, decoy, fragment, badsum, source and MAC spoofing nmap flags, Docker Trivy and Grype examples, and system commands like !help and !status. This reference aids authorized security testing and faster community workflows.
ange scan
║ !nmap 192.168.1.0/24 - CIDR scan
║ !nmap -D <decoy1,decoy2> <target> - Decoy scan
║ !nmap -f <target> - Fragment packets
║ !nmap --badsum <target> - Invalid checksum
║ !nmap -S <IP> <target> - Spoof source IP
║ !nmap --spoof-mac <MAC> <target> - Spoof MAC
║
║?[92m📊 SYSTEM COMMANDS:?[0m
║ !help - Show this help
║ !status - System status
║ !history [limit] - Command history
║ !clear - Clear screen
║ !exit / !quit - Exit
║
║?[92m💡 EXAMPLES:?[0m
║ docker scout quickview nginx:latest
║ docker scan --json nginx:latest
║ trivy image --severity HIGH,CRITICAL nginx:latest
║ grype docker:nginx:latest
║ !nmap -sV 192.168.1.1
║ !nmap --script vuln example.com
║ !nmap -p 80,443,22 192.168.1.1
║ docker run --rm aquasec/trivy:latest image nginx:latest
║ docker run --rm anchore/grype:latest docker:nginx:latest
║
║?[97m⚠️ For authorized security testing only?[0m
╚══════════════════════════════════════════════════════════════════════════════╝