vote up 0 vote down star

I am using gdb to debug a program, and I want to have the output of the command

$(perl -e 'print "A"x20')

as my argument. How can I do that? This way the argument would be very flexible.

flag

78% accept rate
Are you reading the Hacking: The art of exploitation? I remember that he used perl to smash the stack. – kmm Aug 25 at 23:30

2 Answers

vote up 2 vote down check

You can use the run command and pass it any parameters afterwards which will be arguments.

If you want the above, try:

run `$(perl -e 'print "A"x20')`

as a command once you start gdb.

link|flag
vote up 0 vote down

This doesn't work for me:

gdb$ run `$(perl -e 'print "A"x20')`
/bin/bash: AAAAAAAAAAAAAAAAAAAA: command not found

And the application runs without paramether...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.