Re: [WinAppDbg-users] Using WinAppDbg to run Python code in target process
Brought to you by:
qvasimodo
|
From: Fabio Z. <fa...@gm...> - 2014-02-04 19:48:47
|
import time
import os
print os.getpid()
if __name__ == '__main__':
while True:
time.sleep(1)
print '..' |