Welcome to the walkthrough of Photographer 1 presented by VulnHub, a boot-to-root machine which focuses on Koken CMS unrestricted file upload vulnerability leading to RCE. The vulnerable machine can be downloaded from here . Hints for machine. Netdiscover, Nmap Port 8000 Koken CMS Smbclient Php file upload Shell Finding SUID - php7.2 Privilege Escalation Walkthrough: # Finding IP address Once the machine is deployed the first task is to obtain its IP address. We will use tool named netdiscover to discover all the IPs in our internal network Command is sudo netdiscover -i eth0 Since no other virtual machine is up, this seems like the IP address of the victim. # Nmap scan As usual we start with basic nmap scan. Command is sudo nmap -sC -sV -T4 <IP> Command details sudo – to run with root privileges -sC – running default scripts -sV – Version/Services info -T4 – faster execution Looking at the results we have a higher port 8000 open that is running Kok...