> ## Documentation Index
> Fetch the complete documentation index at: https://paulkadali.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Enumeration

> Information Gathering and Footprinting & Scanning

## whois

```bash theme={null}
whois foo.bar
```

## subdomains

```bash theme={null}
sublit3r -d foo.bar
```

## ping sweeps

```bash theme={null}
fping -a -g 10.10.10.0/24
```

```bash theme={null}
nmap -sS -n 10.10.10.0/24
```

## Nmap

### OS Fingerprinting

```bash theme={null}
nmap -Pn -A -O 10.10.10.10
```

### Quick scan

```bash theme={null}
nmap -sC -sV -A -T4 10.10.10.10 --open
```

### Full scan

```bash theme={null}
nmap -sC -sV -A -T4 -p- 10.10.10.10 --open
```
