Vulnhub Vulnpix
Lessons Learned
- https://blog.christophetd.fr/write-up-vulnix/ <- Master Blog
- If an NFS is version 3, you can read UID and GID (user id and group id).
- If you make a user with the correct UID and GID, they can access and write to the share.
We see the UID and GID is 2008. We must add that.
root@kali:~# groupadd --gid 2008 vulnix_group root@kali:~# useradd --uid 2008 --groups vulnix_group tester root@kali:~# su - tester
Comments
Post a Comment