x64dbgpylib icon indicating copy to clipboard operation
x64dbgpylib copied to clipboard

Port of windbglib to x64dbgpy, in an effort to support mona.py in x64dbg.

Results 7 x64dbgpylib issues
Sort by recently updated
recently updated
newest added

When trying to use mona's find feature I get the following error: mona.mona("find -s '\xff\xe4' -m binary.exe") => ```Traceback (most recent call last): File "C:\tools\pwn\x64dbg\release\x32\plugins\x64dbgpy\mona.py", line 18391, in main commands[command].parseProc(opts)...

Hi, First of all, thanks so much for working on mona support for x64dbg - awesome job! I got mona up and running successfully in x64dbg, and one of the...

I tried out all the Mona commands using latest snapshot (2017-11-20) of x64dbg and latest release of x64dbgpy. Fixed some minor issues, but some commands that should be implemented cause...

More specifically ```python try: import immlib as dbglib from immlib import LogBpHook __DEBUGGERAPP__ = "Immunity Debugger" except: try: from pykd import * import windbglib as dbglib from windbglib import LogBpHook...

Most of the remaining issues in mona are performance issues. Some commands, usually ones that read or write a lot of memory, simply take too long to run, or cause...

># x64dbgpylib > >Port of [windbglib](https://github.com/corelan/windbglib) to [x64dbgpy](https://github.com/x64dbg/x64dbgpy), in an effort to support [mona.py](https://github.com/corelan/mona) in [x64dbg](http://x64dbg.com). > >**This is a work in progress, see the [issues](https://github.com/x64dbg/x64dbgpylib/issues) or [contact us](http://x64dbg.com/#contact) to...