Questions tagged [pydbg]

PyDbg is a python module to debug win32 executable. It is fully scriptable as python code. It is able to load/attach to processes running in windows.

PyDbg is a python module to debug win32 executable. It is fully scriptable as python code. It is able to load/attach to processes running in windows. It is able to decode binary instructions by using Pydasm. It allows you to define function hooks on a function entry and exit. You can set software and hardware breakpoints. It also allows you to set memory breakpoints. You can read and write process memory, given the address to read/write. And most importantly, it is free and open source!!

20 questions
0
votes
1 answer

pydbg 64 bit enumerate_processes() returning empty list

I'm using pydbg binaries downloaded here: http://www.lfd.uci.edu/~gohlke/pythonlibs/#pydbg as recommended in previous answers. I can get the 32-bit version to work with a 32-bit Python interpreter, but I can't get the 64-bit version to work with…
jtpereyda
  • 6,987
  • 10
  • 51
  • 80
0
votes
1 answer

Is there any debugger library which can attach to process? (C#)

I'm looking for some external library which will allow me to attach to some other running process. I actually want to detect all the API Functions that the process is using. I can do it through Python (with the module PyDbg), but I want to do this…
Aviv
  • 456
  • 1
  • 7
  • 16
0
votes
1 answer

Thread-Switching in PyDbg

I've tried posting this in the reverse-engineering stack-exchange, but I thought I'd cross-post it here for more visibility. I'm having trouble switching from debugging one thread to another in pydbg. I don't have much experience with…
0
votes
1 answer

Opening files with Pydbg while application is running

Using pydbg I'm opening files(ex. c:\\myfile.mnp) within a win32 application(Ex. c:\\myprog.exe) in this way. dbg = pydbg() dbg.load("c:\\myprog.exe", "c:\\myfile1.mnp") If the target application is already running then, is it possible to open…
Dev.K.
  • 2,428
  • 5
  • 35
  • 49
-2
votes
1 answer

can't import pydbg

when I import the pydbg, it shows the information like the picture ! who can help me to solve it ? thanks very much ! I use window 10 64bit, python 2.7
1
2