PDA

View Full Version : Debugging executables with Python



Drezard
November 15th, 2011, 06:02 AM
Hey guys,

Building a fuzzer in Python.

I want to debug c coded executables in python. Is there an API for gdb or a better way of doing it?

Cheers,

Drez

ofnuts
November 15th, 2011, 08:49 AM
Hey guys,

Building a fuzzer in Python.

I want to debug c coded executables in python. Is there an API for gdb or a better way of doing it?

Cheers,

DrezYou question doesn't really make sense... I don't think you want to write a debugger in Python. If you want debug a C extension to python, they you have to debug the Python executable and set the breakpoints in your code.