modified the PyDbg library to support x64 processes, enhancing its capabilities.
Project description
py3dbg
modified the PyDbg library to support x64 processes, enhancing its capabilities. Some changes have been made to the code in this repository.(https://github.com/rchateauneu/pydbg)
Install
$ pip install py3dbg
Usage
import py3dbg
import py3dbg.defines
PROCESS_NAME = b"program.exe"
def debug_event_handler(dbg):
if dbg.dbg.u.Exception.dwFirstChance:
return py3dbg.defines.DBG_CONTINUE
else:
return py3dbg.defines.DBG_EXCEPTION_NOT_HANDLED
def debug_stack(dbg) :
# dump register values
context = dbg.dump_context()
# dump stack
stack = ""
address = 0
memsize = 0x4
if not py3dbg.process_is_wow64(dbg.pid) :
address = dbg.context.Rsp
memsize = 0x8
else :
address = dbg.context.Esp
for i in range(16):
value = dbg.read_process_memory(address, memsize)
stack += "{:#08x}: {}\n".format(address, value)
address += memsize
return py3dbg.defines.DBG_EXCEPTION_NOT_HANDLED
dbg = py3dbg.pydbg()
dbg.load(PROCESS_NAME)
dbg.set_callback(py3dbg.defines.EXCEPTION_ACCESS_VIOLATION, debug_stack)
dbg.attach(dbg.pid)
dbg.run()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
py3dbg-1.0.0-py3-none-any.whl
(57.6 kB
view details)
File details
Details for the file py3dbg-1.0.0-py3-none-any.whl.
File metadata
- Download URL: py3dbg-1.0.0-py3-none-any.whl
- Upload date:
- Size: 57.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96a9446fdf868672cea06319e6fb75f23d68da98b059aa60c15db5a42e830999
|
|
| MD5 |
70b77e2c3dfa4c6496d23f466adba520
|
|
| BLAKE2b-256 |
488da56ecadf65205ec57db485981e9bda3b98c2180b5bb17fc892ea46209b08
|