> For the complete documentation index, see [llms.txt](https://ret2basic.gitbook.io/ctfnote/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ret2basic.gitbook.io/ctfnote/red-teaming/enumeration/nmap.md).

# Nmap

## nmapAutomator

{% embed url="<https://github.com/21y4d/nmapAutomator>" %}
nmapAutomator - Github
{% endembed %}

Run all scans:

```bash
sudo nmapAutomator -H <remote_ip> -t all
```

## Ippsec's Method

Run a full scan in the background:

```bash
nmap -sC -sV -oA nmap/<hostname> <remote_ip>
```

Options:

`-sC`: use **default scripts**

`-sV`: enumerate **versions**

`-oA`: output **all formats**
