Fix samples for python3

This commit is contained in:
hakril
2024-06-10 21:24:37 +02:00
parent 9770165487
commit 92742a4e97
11 changed files with 44 additions and 14 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ class MyInfoBP(windows.debug.Breakpoint):
dbg.current_process.exit()
print("")
dbg = windows.debug.SymbolDebugger.debug(b"c:\\windows\\system32\\notepad.exe")
dbg.add_bp(MyInfoBP("kernelbase!CreateFileInternal+2"))
dbg = windows.debug.SymbolDebugger.debug("C:\\windows\\system32\\notepad.exe")
dbg.add_bp(MyInfoBP("kernelbase!CreateFileInternal"))
dbg.add_bp(MyInfoBP("ntdll!LdrpInitializeProcess"))
dbg.loop()