NFS (111,2049)
Scanning using NMAP
sudo nmap 10.129.14.128 -p111,2049 -sV -sC
Getting the contents using NMAP
sudo nmap --script nfs* 10.129.14.128 -sV -p111,2049
Show available NFS shares
showmount -e 10.129.14.128
Mounting NFS share
mkdir target-NFS
sudo mount -t nfs 10.129.14.128:/ ./target-NFS/ -o nolock
cd target-NFS
tree .
Unmounting the NFS share
sudo umount ./target-NFS
Last updated