# 1. Enumeration

# Automated approach

```bash
autorecon TARGET_IP
```

# Manual approach

```bash
nmap TARGET_IP -p- --min-rate 1400 -sV -T 4 -sC -oN output.txt
```

<p class="callout warning">If the target is Windows use the below</p>

```bash
nmap TARGET_IP -Pn -sV -T 4 -sC -oN output.txt

#or this if you want to dive deeper

nmap TARGET_IP -Pn -p- -sV -T 4 -sC -oN output.txt
```