Port 111 - Rpcbind/portmapper
Enumeration
# Check if rpcbind running in the subnet
nmap -sV -p111 --script=rpcinfo 10.11.1.1-254
# Check if rpcbind running on the box
nmap -sSUC -p111 192.168.10.1
# Login to the port
rpcclient -U "" 10.11.1.111
srvinfo
enumdomusers
getdompwinfo
querydominfo
netshareenum
netshareenumall
querydispinfo
# rpcbind + NFS
nmap -p 111 --script nfs* 10.11.1.72
rpcinfo -p 10.11.1.111 # enum NFS shares
showmount -e 10.11.1.111 # show if we can mount
NFS Share Mount
Last updated