Created
May 31, 2017 15:03
-
-
Save ntddk/ed4d4d10842dac40110aa8b6b62a3391 to your computer and use it in GitHub Desktop.
windbg-doublepulsar-detection-script
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
#!/usr/bin/env python | |
# coding: utf-8 | |
import pykd | |
for i in pykd.dbgCommand('dps srv!SrvTransaction2DispatchTable').split('\n'): | |
if len(i) > 0 and '00000000' not in i and 'srv!' not in i: # addr addr symbol | |
print 'Doublepulsar hook detected: ' + i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment