I've found two necessary updates to the course Materials, regarding the chapter 7.
Firstly, nmap scanning for the SMB vulnerability MS08-067.
The only way i saw the machine 10.11.1.5 was VULNERABLE was executing this command:
nmap -n -v -Pn --script vuln -p139,445 10.11.1.5
Regarding NFS, to make things work just like described in the pwk materials (precisely in 7.4.2 section), it's needed to mount the nfs share with the option nfsvers=3
or else, the permissions will come with the 'nobody' owner (not user id 1014)
e.g. (to make things work as described): sudo mount -o nolock,rw,nfsvers=3 10.11.1.72:/home /OSCP/Lab/10.11.1.72/nfsdir/
Peace out!
Firstly, nmap scanning for the SMB vulnerability MS08-067.
The only way i saw the machine 10.11.1.5 was VULNERABLE was executing this command:
nmap -n -v -Pn --script vuln -p139,445 10.11.1.5
Regarding NFS, to make things work just like described in the pwk materials (precisely in 7.4.2 section), it's needed to mount the nfs share with the option nfsvers=3
or else, the permissions will come with the 'nobody' owner (not user id 1014)
e.g. (to make things work as described): sudo mount -o nolock,rw,nfsvers=3 10.11.1.72:/home /OSCP/Lab/10.11.1.72/nfsdir/
Peace out!
Comment