111 - NFS
Network File System
Scan with nmap or use NSE scripts to locate NFS shares
nmap -v -p 111 10.11.1.1-254
nmap -sV -p 111 --script=rpcinfo 10.11.1.1-254 Enumeration
nmap -p 111 --script nfs* $RHOST
nmap -sV -p 111 --script=rpcinfo $RHOST
nmap -p 111 --script nfs* 10.11.1.72
rpcinfo -p $targetip
rpcbind $targetipMounting shares
showmount --exports $target_ip
mount -o nolock $target_ip:/ /mntLast updated