Skip to main content

Practical Guide to exploiting the unquoted service path vulnerability in Windows

What is the unquoted service path vulnerability in Windows?

When a service in Windows is started, Windows has to try to find it. Usually, this is an easy task because the path is well-defined and contained in quotation marks. Like this example from a commercial VPN service:

Windows Service with a Quoted Path.png

Windows has no question about where to find this executable.

However…

If the path contains spaces and is not surrounded by quotation marks, then Windows has to guess where to find your service.  Like this for example:

Windows Service That May Be vulnerable with an Un-quoted Service Path

Now Windows has to try to figure out what file the folks at AMD are referring to. Since spaces on the command line could either be a part of the FILE PATH or they could indicate COMMAND-LINE ARGUMENTS.

Here is Windows’ chain of thought:

Are they asking me to run

Nope

Are they asking me to run

Nope

Are they asking me to run

Yeah!

So who cares if you can use unquoted paths to execute something?

Well, attackers do. If an attacker has a low level account and wants to escalate privileges, he can look for a service that runs with SYSTEM or ADMINISTRATOR rights and use that service to execute a command of his choice.  All he has to do is drop a malicious file named C:\Program.exe and have the file create a new user.

OK Cool. So how do you exploit the vulnerability IRL?

Frequently in engagements, we have to escalate privileges. First thing we need to do is find a service that is vulnerable. Luckily, the evil mastermind HarmJ0y (Twitter: @HarmJ0y) has created some scripts that do exactly that. This command will get you set-up:

Here is an example of what you are looking for:

Using Powershell to find Un-Quoted Service path vulnerabilities

Now, all we need is a way to create a malicious Program.exe to create a new user.

Let’s use Metasploit to create a malicious exe!

We fired up MSFVenom and created an exe payload. Here are some good details on how to do this. Only to find out that this thing needs to be running as a SERVICE and can’t be just a run-of-the-mill EXE. Scratch that. Let’s use Metasploit to create a malicious exe!

Let’s use Metasploit to create a malicious service-exe!

Back to MSFVenom.

Will give us a list of available payload formats. We add a “-f exe-service” and add the file to the target. Only to find out that their Anti-virus knows metasploit and doesn’t like it. Scratch that Let’s use Metasploit to create a malicious service-exe!

Let’s use Veil-Evasion Framework to bypass AV!

Nothing against Veil, but I couldn’t get it to work right on my Kali machine. It looks like it has a ton of cool features. But each time I ran into problems, I read on the forums someone who has the same problem and the answer is always “Wipe Kali and re-install Veil on a clean OS.” That was not an option in this circumstance. So scratch that Let’s use Veil-Evasion Framework to bypass AV!

Lets use C# to make our own service executable and bypass A/V!

Yes, it has come down to this. After hours of trying to get a malicious executable, we have to build our own. I followed this guide to build a basic service executable in C#. It takes a while but I eventually get one that works. The payload I added to the basic service is underlined below:

* may not be pretty code, but I’ve been working on this waaay to long at this point to care 🙂
**you can find the full project on github here: https://github.com/mattymcfatty/unquotedPoC

I build the EXE. I upload it to the target. I rename it to C:\Program.exe. I restart the vulnerable service and…

[drumroll]

Out Exploit Payload executes on windows

The event logs show that the exploit RAN!!!

Let’s see if we have a new “mattymcfatty” user

Unquoted service path vulnerability used to create a windows user.png

PAYDIRT!

Turns out, I learned two things from this endeavor:

  1. How to exploit the unquoted service path vulnerability to escalate privileges on a Windows system
  2. But also, how to evade Anti-Virus by building a custom executable

Both are good tricks to keep in your arsenal.  Hit me up with comments/questions. Happy Hacking!

For more information, check out the privilege escalation portion of the book The Hacker Playbook 2: Practical Guide To Penetration Testing. It helped me immensely in getting this exploit working.

Matt South

Matt is a penetration tester from Kansas City, MO. He specializes in web and mobile application testing, but loves all things security. Matt's favorite types of exploits to find are business logic flaws that an automated scanner would miss.

3 Comments

  • Steve Campbell says:

    Thanks for the article. I’ve starred this on Github. I was wondering why you added a user but stopped short of adding the user to the local administrators group? Would that be as simple as appending “&& net localgroup administrators mattymcfatty /add” to the command?. Thanks

  • Simon Biewald says:

    How you createted the C:\Programs.exe? Usually you should need admin rights to write a file direct to C:\

  • christian says:

    Thanks for share your work, im looking for some exploit similar for windows 10 and 7 updated, but i have no luck, i will searching.