Killboy Posted April 21, 2011 Posted April 21, 2011 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)
xxx22xxx Posted August 23, 2013 Posted August 23, 2013 can anybody make a simple " write new bytes in memory with injecting DLL"exampeadress. 0x0043256bytes: {0x90, 0x90}writeprocessmemry .... with inject method
atom0s Posted August 24, 2013 Posted August 24, 2013 If you are injected you can just use memset given the two bytes are the same and together: memset( (LPVOID)0x0043256, 0x90, 2 );
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now