#Footprinting the Service
Intrusionz3r0X@htb[/htb]$ sudo nmap 10.129.14.128 -p111,2049 -sV -sC
Intrusionz3r0X@htb[/htb]$ sudo nmap --script nfs* 10.129.14.128 -sV -p111,2049
#Show Available NFS Shares
Intrusionz3r0X@htb[/htb]$ showmount -e 10.129.14.128
#Mount the NFS
Intrusionz3r0X@htb[/htb]$ sudo mount -t nfs 10.129.14.128:/ ./target-NFS/ -o nolock
#Unmount the NFS
Intrusionz3r0X@htb[/htb]$ sudo umount ./target-NFS