Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Commit dc4b0b7

Browse files
committed
Add problem
1 parent 0483da5 commit dc4b0b7

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
all:
2+
gcc main.c -o binary_strings

binary_strings

16.3 KB
Binary file not shown.

main.c

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#include<stdio.h>
2+
3+
int main() {
4+
puts("Where is flag??");
5+
puts("I think flag is on this file...");
6+
}
7+
8+
char flag[] = "xm4s{strings_binary_is_simple_and_powerful!}";
9+
10+

writeup.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
まぁ問題名がヒントになってるし、やるだけですね。
2+
3+
strings ./binary_strings | grep xm4s
4+

0 commit comments

Comments
 (0)