NFS
ABOUT
Network File System (NFS) is a network file system developed by Sun Microsystems and has the same purpose as SMB. Its purpose is to access file systems over a network as if they were local. NFS is used between Linux and Unix systems. This means that NFS clients cannot communicate directly with SMB servers. The /etc/exports
file contains a table of physical filesystems on an NFS server accessible by the clients.
Dangerous Settings
rw
- Read and write permissions.insecure
- Ports above 1024 will be used.nohide
- If another file system was mounted below an exported directory, this directory is exported by its own exports entry.no_root_squash
- All files created by root are kept with the UID/GID 0.
Tips2Hack
Basic nmap footprinting
Show available NFS shares
Mounting & Unmounting NFS shares
Last updated