#!/usr/bin/env python # Spy_Check.py - Insecurety Research 2012 # Checks generically for Spyeye infection # Note: This is NOT a definitive test. If it comes clean, scan anyway. # This technique worked fine on most version of Spyeye import os import sys spypath = '''%SystemDrive%\cleansweep.exe\''' #thx to @Zy0d0x it now checks all drives. if os.path.exists(spypath): print "Host infected with Spyeye!\n" print "Clean your box with an AV?" sys.exit(0) else: print "Host seems clean. Scan anyway." sys.exit(0)