# Caden64 standard nmap requires a nmap directory to be created in the local directory ```bash nmap -sC -sV -p- -v -T4 -oA nmap/{PROJECT_NAME}-all {TARGET} ``` # Standard Scripts ```bash -sC ``` # Standard Versions ```bash -sV ``` # All ports ```bash -p- ``` # Top 100 ports ```bash -F ``` # Timing the default is `-T 3` but for ctf's you can typically use `-T 4` and if you have permission you can use `-T 5` which generates the traffic super fast at the cost of being super noisy ```bash -T {1-5} ``` # Output all format ```bash -oA {OUTPUT-FILE-NAME} ``` # Verbose ```bash -v ``` ## Double verbose ```bash -vv ```