-
-
Save sasqwatch/e94b44bf700bb3fc031ee3f88b13dced to your computer and use it in GitHub Desktop.
Python script to find all Windows binaries with autoElevate=True (uses sigcheck obviously)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: findelevate.py C:\Windows\System32\ | |
# Needs sigcheck.exe in path [https://technet.microsoft.com/en-us/sysinternals/bb897441.aspx] | |
import sys | |
import os | |
import glob | |
import subprocess | |
if len(sys.argv) < 2: | |
print "Usage: findelevate.py <PATH>" | |
print "Ex: Usage: findelevate.py C:\\Windows\\System32\\" | |
sys.exit() | |
d = sys.argv[1] | |
if not (d.endswith('\\')): | |
d = d+'\\' | |
exefiles = [] | |
if os.path.isdir(d): | |
exefiles = glob.glob(d+'*.exe') | |
i = 0 | |
for exe in exefiles: | |
p = subprocess.Popen(['sigcheck', '-nobanner','-m', exe],stdout=subprocess.PIPE,stderr=subprocess.PIPE) | |
out, err = p.communicate() | |
if '<autoElevate>true</autoElevate>' in out: | |
print exe.strip() | |
i = i + 1 | |
print "Found " + str(i) + " executables with autoElevate set to true!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment