Tagged Questions
The virtualquery tag has no wiki summary.
6
votes
1answer
2k views
Is there a better way than parsing /proc/self/maps to figure out memory protection?
On Linux (or Solaris) is there a better way than hand parsing /proc/self/maps repeatedly to figure out whether or not you can read, write or execute whatever is stored at one or more addresses in ...
2
votes
2answers
173 views
VirtualQuery gives illegal result. Is it a bug?
My code:
MEMORY_BASIC_INFORMATION meminf;
::VirtualQuery(box.pBits, &meminf, sizeof(meminf));
The results:
meminf:
BaseAddress 0x40001000 void *
AllocationBase ...
0
votes
1answer
486 views
Win API VirtualQueryEx Function,ERROR_BAD_LENGTH
Hi I try to call the VirtualQueryEx function to get some Information about Memory Protection, however my code gives me error 0x18 (ERROR_BAD_LENGTH) and i dont know whats wrong with my code;
code ...