NFS Enumeration
- NFS allows file sharing across network as if they existed in local system.
- NMAP Enumeration:
- nmap --script=nfs-ls.nse,nfs-showmount.nse,nfs-statfs.nse -p 2049 IP
- showmount Enumeration:
- showmount IP (apt install nfs-common , if not work)
- Mount NFS:
- mount -t nfs -o ver=2 IP:/home /mnt/somedir
- Reference: