Privilege Escalation (privesc)
When getting access to a server, either during a CTF or a pentesting assignment, you will probably have a limited access to the server itself. Probably because you accessed it through a compromised user. Your goal is to find a way to become root which would give you unlimited access to the server and the running programs. See, developers and sysadmins can make mistakes and have the programs running with the wrong settings. Leveraging these mistakes can give you the keys to root.
Here are two extensive guides about privesc for Windows and Linux:
You’ll notice in these guides that, to find the mistakes that will get us root, it’s all about enumerating the server permissions, the programs running, the cron jobs, etc. And we have tools to do that for us!
I have a very limited experience in Windows privesc so I will explain how to upload enumeration tools to Linux servers only in this post.
The tools
From my Tools list, you’ll find these two very useful enumeration tools:
The command lines
So now that we have the tools on our computer, how to get them to the compromised server?
Quite simple: we will use a python module called SimpleHTTPServer. It is normally used like other modules in python programs, but the SimpleHTTPServer module can also be invoked directly using the -m switch of the interpreter with a port number argument. This serves the files relative to the current directory.
With python3:
Now anyone with your IP address and this port number can access this directory and its files through HTTP request, including the compromised server!
So we launch the SimpleHTTPServer from the directory where we have our LinEnum and pspy programs. And from the compromised linux server, we write:
cURL is a command-line tool for getting or sending data including files using URL syntax. Now your downloaded program won’t have the permission to run so to make it executable, write:
And now to execute it, write “./linenum.sh” in the server directory where the downloaded linenum program is.
Sometimes, curl will not be authorized to be used by the user you compromised, but you can use wget in this case. Let’s use pspy this time as an example:
Same thing now, we do “chmod +x pspy64” and then “./pspy64”, and it will run!
I hope this was a useful article! There are probably other ways to upload files to a server such as using netcat, but I found the commands in this post to be the simplest for me. And of course I took the example of enumeration tools, but you can use it to upload many more useful tools you would need for your privesc!
Have fun uploading files now!