Network File Sharing (NFS)
Sharing a fileserver over the network sometimes allows you to upload files as root and escalate privileges
Finding NFS folders
cat /etc/exports/home/backup *(rw,sync,insecure,no_root_squash,no_subtree_check)
/tmp *(rw,sync,insecure,no_root_squash,no_subtree_check)
/home/ubuntu/sharedfolder *(rw,sync,insecure,no_subtree_check)Finding NFS folders from the outside
$ showmount -e 10.10.158.49
Export list for 10.10.158.49:
/home/ubuntu/sharedfolder *
/tmp *
/home/backup *Uploading a SUID binary
Last updated