OllyDBG problem

Joined
Oct 15, 2008
Messages
1,450
Reaction score
152
Finally got "Copy to executable" working. Thing is, it still doesn't save everything.

I edit 2 lines, and do copy all. Then I save it as a .exe.

For example if I edited a random line, and then edited the name/text line, it wouldn't save the name/text edit.

Code:
00518A1A |. 68 CC545F00 |PUSH Gunz.005F54CC ; ASCII "%s : %s"

it will just return to that.
 
Finally got "Copy to executable" working. Thing is, it still doesn't save everything.

I edit 2 lines, and do copy all. Then I save it as a .exe.

For example if I edited a random line, and then edited the name/text line, it wouldn't save the name/text edit.

Code:
00518A1A |. 68 CC545F00 |PUSH Gunz.005F54CC ; ASCII "%s : %s"

it will just return to that.

Sounds like you were modifying the comment, not the actual dump - are you sure the modifications you made were in the "dump" or "CPU" window?
 
Upvote 0
There you go - to modify the actual bytes/strings, right click on the area where the value is being PUSH'd, then select "Follow in dump". Modify the dump window, then follow the usual saving pattern.

Modifying instructions can be done in the CPU window.

The Dump is hex values >->

so you can't change it like the CPU line.

I r confused @_@ been to long since i messed with this stuff.
 
Upvote 0
Download:
Code:

Pass:
Code:

In this one there an auto copy to executable when you right click and you can saved it after.
 
Upvote 0
Back