Logo
Notes Directory
On this page

TCP (2049) - NFS

NFS

Showmount

View/List shared folders

Terminal window
showmount -e victim_ip
Export list for <victim_ip>:
/profiles (everyone)

Mount NFS

Terminal window
sudo mount -t nfs victim_ip:/profiles <local-destination>

If you encounter an error while mounting NFS, you may need to install the nfs-common package.

After mounting, it’s better to copy all files or important files from the victim to your local machine.

Terminal window
sudo cp <local-destination>/* .

It will copy all NFS files to your current working directory.

Unmount NFS

Terminal window
sudo umount <local-destination>