Quote:
Originally Posted by lostmage333
Olly simply gives you a disassembly. A disassembly contains a lot of good data, yes, but far short of all of the data contained within the file.
Use a program that will give you an analysis of the file. It will retrieve function names, parameters, etc. That will make it a lot easier. Right now, you can basically only search for stuff that exists in the .rdata section. With IDA, you can search all sections of the .dlls with ease.
|
Or you can understand assembly and what each function does, if you understand what each command does its very very very easy to understand what's going on. It's basically a simpler version of programming structure and logic, as long as you keep a hold of what every variable does and what is happening to the variable and why it's happening you can deconstruct everything yourself. Don't just look for constants and jumps, although those allow for the easiest modifications.
EDIT: Oh and as for the "underground", everybody rants about this "underground", who the hell cares about being part of an underground community, knowing assembly doesn't take a genius, if you took the day to completely dig around and play around with the dlls you could make so many useful modifications on your own.