Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 411 Bytes

File metadata and controls

21 lines (18 loc) · 411 Bytes

Network File System (NFS) enumeration and exploitation

Initial enumeration

  • Nmap NFS scripts:
nmap -vv -p 2049 -sT --script=+nfs* <ip>
  • List shares:
showmount -e <ip>

Share mounting

mkdir /tmp/mount
sudo mount -t nfs <ip>:<share_name> /tmp/mount/ -nolock
sudo umount /tmp/mount