Python - How to write debugger in 1minute

Dodane 05 lipca 2011 o 21:24:51 w kategorii ' Coding, python, Techblog '
This is first article about debugging external processes under Python application in Windows operating system. In the second article I'll show how to attach debugger to any process and how to use breakpoints.

Check out below example:

from winappdbg import Debug

import sys

debug = Debug()
try:
    debug.execv( sys.argv[ 1 : ] )
    debug.loop()
finally:
    debug.stop()

Archiwum

Kategorie

Ogólne

Meta: