111 - Pentesting rpc
RPC stands for Remote Procedure Call, a protocol for making requests to a remote computer system, typically in order to execute a function or retrieve some data. An RPC is initiated by a client and sent to a server, which processes the request and returns a response. The client and server communicate using a defined interface and message format, allowing them to exchange data and coordinate their activities.
nmap
sudo nmap -p 111 --script=rpcinfo $IP
sudo nmap -p 111 --script=nfs-ls $IP
sudo nmap -p 111 --script=nfs-statfs $IP
sudo nmap -p 111 --script=nfs-showmount $IP