Posted September 17, 20177 yr On x64 there is no need for fixing code section, so all worked ok. For x32 I have to change ImageBase (rebase) for code section. For doing that I have disassemble code section or at last parse instruction and add its size, then check for instructions I wanna fix, is there any MASM disassembler with source code?
September 17, 20177 yr why is masm a criteria ? ... just use beaengine / distorm or similar to do the disassembly, you dont need the source, (even thougth it is available)
September 17, 20177 yr Author My project is in MASM (that's the reason!) Also source code needed since I wanna change some thing like getting relative address where is the dword to be fixed! Thanks for your help! Edited September 17, 20177 yr by CodeCracker
September 17, 20177 yr well masm can just call and load from any lib when linked, so just grab beaengine (easiest), look at its diassm struct and just process the structs on the disasm, its relatively easy and pretty quick and the structs would contain the dword you're looking for etc.. just grab it, read the doc, learn the struct, i think theres masm examples too http://beatrix2004.free.fr/BeaEngine/index1.php Edited September 17, 20177 yr by evlncrn8
September 22, 20177 yr Author Great news, I was able to build that myself, it taked me a while. The project is named gBurnerx32Mount, you can get the source code and other nice projects from:https://gitlab.com/CodeCrackerhttps://github.com/CodeCrackerSNDhttps://bitbucket.org/CodeCrackerSND/ Edited September 22, 20177 yr by CodeCracker
Create an account or sign in to comment