I am working with format string vulnerabilities in C and I am trying to print the value of the "argc" integer, through a printf command, given in the terminal.
My current code is:
int main (int argc, char **argv) {
char buffer[32];
*More variables*
strncpy(buffer, argv[1], sizeof(buffer));
printf(buffer);
*More printf's*
}
I may need to use format specifiers to print the content of the integer argc into the terminal, but I can't seem to find a solution. All of my guesses are getting me all of the argv stack registers (%rsi, %rdx, %rcx, %r8d, %r9d).
The format string should be given in the terminal, like the example below:
./format-string %d_%s
Is it possible to get the argc value? If yes, how can I do it?
use
%d
for integers and%s
for strings