April 21, 201114 yr You don't really have much of a clue when it comes to the PE format, huhCoding around bugs and missing features if you're not familiar with PE internals is a bit of a hassle if not impossibleDunno, read up on the specs of the import table, take a look at FixImports and implement what I told youThat's as much as I can help you.Maybe grab sources of some of the few open source PE tools (PEEditor, TitanEngine)
August 23, 201312 yr can anybody make a simple " write new bytes in memory with injecting DLL"exampeadress. 0x0043256bytes: {0x90, 0x90}writeprocessmemry .... with inject method
August 24, 201312 yr If you are injected you can just use memset given the two bytes are the same and together: memset( (LPVOID)0x0043256, 0x90, 2 );
Create an account or sign in to comment