add strings code

This commit is contained in:
FKD13 2024-02-20 15:52:08 +01:00
parent aa5c2bdeb2
commit 4bccfdc8be
Signed by: fk
SSH Key Fingerprint: SHA256:KQRtpoT/zoUtKcHNokD4N151te4gRMvc/3RHpxNd+Pk
3 changed files with 9 additions and 0 deletions

1
reversing/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
strings_example

2
reversing/Makefile Normal file
View File

@ -0,0 +1,2 @@
strings_example: strings_example.c
gcc -o strings_example strings_example.c -O3

View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("plopkoek\n");
printf("CTF{1_h4v3_b33n_str1ng3d}");
}