mirror of
https://github.com/JonathanSalwan/ROPgadget
synced 2026-06-08 11:25:23 +00:00
12 lines
164 B
C
Executable File
12 lines
164 B
C
Executable File
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
char buff[32];
|
|
strcpy(buff, argv[1]);
|
|
printf("buff = %s\n", buff);
|
|
return (0);
|
|
}
|