This commit is contained in:
2026-01-05 05:27:43 +01:00
parent 9eb8476319
commit b971b50b83
3 changed files with 25 additions and 0 deletions

24
4/level3/level3.c Normal file
View File

@@ -0,0 +1,24 @@
// gcc -o level3 -no-pie -fno-stack-protector level3.c
#include <stdio.h>
#include <unistd.h>
const char command[] = "/bin/sh";
void win(char *cmd) {
char *argv[2];
argv[0] = cmd;
argv[1] = NULL;
execve(cmd, argv, NULL);
}
int main(int argc, char **argv) {
// Disable output buffering. Not part of the challenge.
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stdin, NULL, _IONBF, 0);
char buffer[32];
puts("What do you want to talk about?");
fgets(buffer, 320, stdin);
puts("Bye.");
return 0;
}