Blame
| 8c7c49 | Steven Anderson | 2024-12-17 19:42:08 | 1 | # nmap |
| 2 | ||||
| 3 | #### quick portscan of a subnet and display readably on terminal |
|||
| 4 | nmap -sn 192.168.1.0/24 -oG - |
|||
| 5 | ||||
| 6 | #### identify service on port |
|||
| 7 | nmap -sV -p80 192.168.1.1 |
|||
| 8 | ||||
| 9 | #### identify OS |
|||
| 10 | sudo nmap -O 192.168.1.1 |
|||
| 11 | ||||
| 12 | #### uses vulscan script to check target services for vulnerabilities. |
|||
| 13 | alias nmap_check_for_vulns="nmap --script=vuln" |