> For the complete documentation index, see [llms.txt](https://ed4m4s.blog/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ed4m4s.blog/master-1/nfs-enum.md).

# 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
```
