# NFS Enum

### Enumerate NFS shares

```
nmap -p 111 --script=nfs-ls,nfs-statfs,nfs-showmount 10.10.10.10
```

### Port 2049

```
showmount -e 10.10.10.20

Mount it like this:
sudo mount -t nfs REMOTE_BOX_IP_ADDRESS:/remote/path /my/path/NFS

cd /my/path/NFS
```
