Tuesday, January 27, 2015

Fix a BIG Security Hole in Flash / Adobe

Flash / Adobe has a Zero Day bug

This script will find your latest Flash/Adobe ActiveX EXE and run it to find updates like for the Zero Day bugs

Adobe Begins Auto-Update Patching of Second Flash Player Zero Day

Pasted from


# Update-Flash.ps1
# This script will find your latest Flash/Adobe ActiveX EXE and run it to find updates like for the Zero Day bugs
# Adobe Begins Auto-Update Patching of Second Flash Player Zero Day
# Pasted from <http://threatpost.com/adobe-begins-auto-update-patching-of-second-flash-player-zero-day/110640>
$name = gci C:\Windows\System32\Macromed\Flash\FlashUtil64*ActiveX.exe | Sort Name -Descending | select name -First 1
$ExeName = $name.Name
$ExeName
$run = "C:\Windows\System32\Macromed\Flash\$ExeName -update activex"
$run
cmd /C "$run"
view raw gistfile1.ps1 hosted with ❤ by GitHub



No comments:

Post a Comment