You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
342 B
21 lines
342 B
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
void check()
|
|
{
|
|
char buffer[20];
|
|
printf("Enter some text:\n");
|
|
scanf("%s", buffer);
|
|
printf("You entered: %s\n", buffer);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
check();
|
|
return 0;
|
|
}
|
|
|
|
//python3 ROPgadget/ROPgadget.py --binary Bufferoverflow/binaire --ropchain
|