Tagged Questions
The pe-exports tag has no wiki summary.
3
votes
1answer
829 views
How is dumpbin able to read the export table when it appears at a file offset larger than the file itself?
I'm writing a little PE reader, so I run dumpbin alongside my test application to confirm that the values are being read correctly. Everything it working so far, except for the export table.
The file ...
1
vote
1answer
305 views
How do I read the names from a PE module's export table?
I've successfully read a PE header from an unmanaged module loaded into memory by another process. What I'd like to do now is read the names of this module's exports. Basically, this is what I have so ...
0
votes
2answers
198 views
VS2010 thread data stack
I just found out how to break into the SetTimer function inside a windows dll (user32.dll).
link text
However i need to know what arguments its called with. I think that the arguments are pushed onto ...
0
votes
3answers
181 views
'Exports' naming convention - how does it work?
What rules apply to the name that ends up in the exports section of an PE (Portable Executable)?
Roughly, I see names starting with an '_' underscore, a '?' question mark or an '@' at-sign. What do ...