When a Windows EXE is loaded it is mapped into memory. This map locks the file and prevents any normal modifications to, or replacements of, the file. However, since it is mapped as Copy-on-Write, could you change it to Write and then modify memory to change the contents of the file?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No. Changing the protection to Write and updating the memory merely updates your process's private copy of the file's bytes. (You have effectively created process-local memory that is conveniently initialized to the file's current contents.) The actual file remains unchanged. |
|||
|
VirtualAlloc()andVirtualProtect. That said, the use-case for this is very obscure, do you mind providing some details? – Sean Cline Dec 7 '12 at 20:40