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
The question I have: If I wanted to explicitly check for R permissions of the memory section. What's the best way to do that? I'm assuming that I would get_address_map and then READ_PERMISSION & mm.get_prot()?
mm = emu.get_address_map(lp)
if READ_PERM & mm.get_prot():
<do something>
The text was updated successfully, but these errors were encountered:
I was building support for
Kernel32.dll, IsBadStringPtr
and seeking guidance.This is largely a copy of
IsBadReadPtr
with adjustments made for string width.The question I have: If I wanted to explicitly check for
R
permissions of the memory section. What's the best way to do that? I'm assuming that I wouldget_address_map
and thenREAD_PERMISSION & mm.get_prot()
?The text was updated successfully, but these errors were encountered: