add strings code
This commit is contained in:
parent
aa5c2bdeb2
commit
4bccfdc8be
3 changed files with 9 additions and 0 deletions
1
reversing/.gitignore
vendored
Normal file
1
reversing/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
strings_example
|
2
reversing/Makefile
Normal file
2
reversing/Makefile
Normal file
|
@ -0,0 +1,2 @@
|
|||
strings_example: strings_example.c
|
||||
gcc -o strings_example strings_example.c -O3
|
6
reversing/strings_example.c
Normal file
6
reversing/strings_example.c
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("plopkoek\n");
|
||||
printf("CTF{1_h4v3_b33n_str1ng3d}");
|
||||
}
|
Loading…
Reference in a new issue