[Gray Hat Python] Simple debugger, want work ??
- by Rami Jarrar
hi, i'm reading the Gray Hat Python,, i reach for this ::
class debugger():
def __init__(self):
self.h_process = None
self.pid = None
self.debugger_active = False
def load(self,path_to_exe):
creation_flags = DEBUG_PROCESS
startupinfo = STARTUPINFO()
process_information =…