NFS
βΉοΈ Informations¶
- π Website: HackTheBox
- π Module: Footprinting
- π Link: NFS
βQuestion¶
Enumerate the NFS service and submit the contents of the flag.txt in the "nfs" share as the answer.
π Walkthrough¶
We will use showmount
to see mounts in NFS
mkdir /tmp/mnt; sudo mount -t nfs 10.129.202.5:/ /tmp/mnt -o nolock; cd /tmp/mnt
tree
.
βββ mnt
βΒ Β βββ nfsshare
βΒ Β βββ flag.txt
βββ var
βββ nfs
βββ flag.txt
5 directories, 2 files
nfs
folder Answer
HTB{*********************************}
βQuestion¶
Enumerate the NFS service and submit the contents of the flag.txt in the "nfsshare" share as the answer.
π Walkthrough¶
Following the previous commands, the flag is in nfsshare
folder
Answer
HTB{*****************************************************}