2022-01-16 18:20:39 +00:00
|
|
|
---
|
|
|
|
title: "nmap"
|
|
|
|
tags: [ "Documentation", "networking" ]
|
|
|
|
---
|
2020-01-02 00:04:35 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
> nmap 192.168.1.1/24
|
|
|
|
|
|
|
|
Flags:
|
|
|
|
|
|
|
|
| Flag | Meaning | Effect |
|
|
|
|
| :---| :---| :---|
|
|
|
|
| -F | Fast | First 100 ports only |
|
|
|
|
|
|
|
|
Look for a web server, which has ports 80 and 443 open:
|
|
|
|
|
|
|
|
> nmap 192.168.1.1/24 -p 80,443 --open
|
|
|
|
|
|
|
|
|
|
|
|
|