Initial commit

This commit is contained in:
Valentin Brandl
2022-09-20 18:17:35 +02:00
commit 29745dbd7a
157 changed files with 367725 additions and 0 deletions

10
assets/vuln.c Normal file
View File

@ -0,0 +1,10 @@
#include<stdio.h>
#include<string.h>
void foo(char *input) {
char buf[50];
strcpy(buf, input);
puts(buf);
}
int main(int argc, char **argv) {
foo(argv[1]);
}