# NFS Enumeration
## Find Mounts
* `rpcinfo -p $TARGET_IP`
* `showmount -e $TARGET_IP`
## Mount
```sh
mount -t nfs $TARGET_IP /tmp/nfsfiles
```