Hack The Box: ScriptKiddie(Linux)
Lets start our hacking with nmap scan as usual. nmap scan We can see that port 22 and 5000 are open and on 5000 we have a webpage. Lets take a look at the webpage. There are three parts of the webpage. First one is a normal nmap scan. It shows nothing new for us to explore. nmap section of the webpage Next is the payload section, which can create payloads. It has something interesting. One is venom and other is the part where we can upload a file. payloads section of the webpage The last section is sploits where any input containing probably alphanumeric characters isn’t allowed. And we get only one message if we try any sort of injection attack. But it is used to search for common vulnerabilities. sploits section of the webpage We can try searching for venom here ,given nothing else was useful, directory busting leads to nothing. venom search Here we get to know its a metasploit framework and after searching we can find a POC for this which makes an apk file, that we can up...