You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert sizeof(_MEMORY_BASIC_INFORMATION) == 28, sizeof(_MEMORY_BASIC_INFORMATION)
AssertionError: 40
When I tried to import pydbg.defines, I saw it use import window_h.py, which has this assert experssion. I am using Win64 version of python 3.6.5 with anaconda. So I just wonder what is wrong with it? Maybe only with win32 version env it could work?
The text was updated successfully, but these errors were encountered:
Yes, at the moment, pydbg only works on Windows 32 bits and Python 2.
The reason are pointers using 8 bytes instead of 4, so the total size is bigger in Win64, plus alignment is different.
I ported to Win64 and Python 3, many features in this fork: https://github.com/rchateauneu/pydbg
It should be still compatible with Win32 and Python 2.
It is a work in progress, not everything is done, and any help and bug reporting is welcome.
assert sizeof(_MEMORY_BASIC_INFORMATION) == 28, sizeof(_MEMORY_BASIC_INFORMATION)
AssertionError: 40
When I tried to import pydbg.defines, I saw it use import window_h.py, which has this assert experssion. I am using Win64 version of python 3.6.5 with anaconda. So I just wonder what is wrong with it? Maybe only with win32 version env it could work?
The text was updated successfully, but these errors were encountered: