# Host discovery

COMING SOON

### VHOST discovery

#### ffuf

```
ffuf -w wordlist.txt -u http://somesite.com -H "Host: FUZZ.somesite.com"
```

Ping sweep with nMap:

```
nmap -sn 10.11.1.1-254
```

Sweeping for specific open ports

```
nmap -p 80 10.11.1.1-254
```
