Executive Risk Summary
"A use-after-free vulnerability in Internet Explorer 9 allows remote attackers to execute arbitrary code via a crafted web site. This vulnerability can be exploited by an unauthenticated attacker to gain control of the affected system."
Anticipated Attack Path
- 1. Initial Exploitation: Attacker crafts a malicious web site to exploit the use-after-free vulnerability
- 2. Privilege Escalation: Exploited code executes with the privileges of the current user
- 3. Lateral Movement: Attacker uses the compromised system to move laterally within the network
Am I Vulnerable?
- Verify that Internet Explorer 9 is updated to the latest patch level
- Restrict access to untrusted web sites
- Implement a web application firewall to detect and prevent exploitation attempts
Operational Audit Arsenal
Target Type Process
Target Asset iexplore.exe
Standard Path C:\Program Files\Internet Explorer
PowerShell
# 🛠️ Senior Engineer Universal Audit
# Target: iexplore.exe (Process)
$Targets = 'iexplore.exe'
$SearchPaths = @("$env:windir\System32", "$env:ProgramFiles", "${env:ProgramFiles(x86)}")
Get-ChildItem -Path $SearchPaths -Include $Targets -Recurse -ErrorAction SilentlyContinue |
Select-Object FullName, @{Name="Version";Expression={$_.VersionInfo.ProductVersion}} Patch Impact Forecast
Reboot Required Likely
Minimal, but may require restarting Internet Explorer
Internal Work Notes
Apply MS12-071 patch to Internet Explorer 9 to mitigate use-after-free vulnerability, PowerShell audit command: Get-HotFix -Id KB2744842
Technical Intelligence & Operational Utilities • Delivered Weekly
Intelligence Sources
Official Advisoryhttp://secunia.com/advisories/51202
Official Advisoryhttp://www.securityfocus.com/bid/56421
Official Advisoryhttp://www.securitytracker.com/id?1027749
Official Advisoryhttp://www.us-cert.gov/cas/techalerts/TA12-318A.html
MSRC Advisoryhttps://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-071
Official Advisoryhttps://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A15886
Official Advisoryhttp://secunia.com/advisories/51202
Official Advisoryhttp://www.securityfocus.com/bid/56421
Official Advisoryhttp://www.securitytracker.com/id?1027749
Official Advisoryhttp://www.us-cert.gov/cas/techalerts/TA12-318A.html
MSRC Advisoryhttps://docs.microsoft.com/en-us/security-updates/securitybulletins/2012/ms12-071
Official Advisoryhttps://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A15886
Related Microsoft Threats
Data compiled from NVD, MSRC, and CISA KEV Catalog. Intelligence synthesized via AI. Scripts provided for diagnostic purposes under MIT License.