File Sharing ๐ŸŒถ๏ธ

  • If we find the port 139 or 445 use (like Samba):

enum4linux IP_HOST

  • If there is a NFS server running on a port like 2049, check the remote shares:

showmount -e IP_HOST
  • Now mount:

sudo mkdir /mnt/nfs
sudo mount -t nfs IP_HOST:DIRECTORY /mnt/nfs
ls -la /mnt/nfs/

Last updated

Was this helpful?