killchain-compendium/Enumeration/NFS.md

13 lines
148 B
Markdown
Raw Normal View History

2022-11-13 01:16:26 +01:00
# NFS Enumeration
## Find Mounts
* `rpcinfo -p $TARGET_IP`
* `showmount -e $TARGET_IP`
## Mount
```sh
mount -t nfs $TARGET_IP /tmp/nfsfiles
```