|
Program's not working under xp sp0 too. And that's why:
If you look at the import table you can see that all entries are referenced by ordinals.
This means that it will work only with those versions of dll's which was loaded when you've dumped target. For example, kernel32.dll!Beep has ordinal number 27 in xpsp0 and number 29 in xpsp2.
To work around this problem, go to xpsp1, convert all ordinal imports to name imports (maybe it cannot be done with all imports. If it's the case, leave ordianls for such dlls)
I think there're some tools that can do this automatically. You can load unpacked program and dump it with option "Reconstruct imports" (or something like this) set.
Last edited by amitophia; 04-21-2005 at 04:41.
|