I have a small question. I know that the %x format specifier can be used to read values from the stack in a format string attack.
I found the following code:
%08x%08x%08x%08x
What does the 08 mean? What is it doing exactly? Thanks :)
|
Break-down:
Quick example (thanks to Grijesh Chauhan):
Output:
Also see http://www.cplusplus.com/reference/cstdio/printf/ for reference. |
|||||||
|
|
That specifies the how many digits you want it to show.
|
|||
|
|
|
|
|||
|
|
|
From http://en.wikipedia.org/wiki/Printf_format_string use 0 instead of spaces to pad a field when the width option is specified. For example, |
|||
|
|
000007acor0005ceef. – Hristo Iliev Feb 27 at 9:53printf()is being used. – unwind Feb 27 at 10:10