News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Is it possible to implement this functionality in debugger plugin?

Started by ollydbg, December 29, 2009, 11:31:54 AM

Previous topic - Next topic

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

oBFusCATed

Not supported by GDB, unfortunately.

Here is a chat log from the #gdb at irc.freenode.net

(2009-12-29 12:45:08) obfuscated: hello, is there a way to do the same thing (see the link) with gdb as with vstudio's debugger - http://www.litwindow.com/Knowhow/wxHowto/wxhowto.html#nostepinto
(2009-12-29 12:47:34) brobecke: not as far as I know.  This is something that has been requested once or twice in the past...
(2009-12-29 12:49:33) pholklore: it's such a common request that the last PR filed wants the same basic thing.  PR11117


So we should wait
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

ollydbg

Thanks for the reply.
Is it possible done in Debuggerplugin? When press "Step into" button, we should go to the function implementation body.( not the function of others).
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

oBFusCATed

Not sure, If possible it is very hard to do.
And the debugger plugin is not the place to do it.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]