From b40b5ffbd1f7ee73541ad07f483d13ed4ff0cd7c Mon Sep 17 00:00:00 2001 From: h7x4 Date: Fri, 3 Jul 2026 01:09:48 +0900 Subject: [PATCH] misc/bytemancy_0 --- misc/bytemancy_0/app.py | 21 +++++++++++++++++++++ misc/bytemancy_0/solve.sh | 5 +++++ 2 files changed, 26 insertions(+) create mode 100644 misc/bytemancy_0/app.py create mode 100755 misc/bytemancy_0/solve.sh diff --git a/misc/bytemancy_0/app.py b/misc/bytemancy_0/app.py new file mode 100644 index 0000000..1c69951 --- /dev/null +++ b/misc/bytemancy_0/app.py @@ -0,0 +1,21 @@ +while(True): + try: + print('⊹──────[ BYTEMANCY-0 ]──────⊹') + print("☍⟐☉⟊☽☈⟁⧋⟡☍⟐☉⟊☽☈⟁⧋⟡☍⟐☉⟊☽☈⟁⧋⟡☍⟐") + print() + print('Send me ASCII DECIMAL 101, 101, 101, side-by-side, no space.') + print() + print("☍⟐☉⟊☽☈⟁⧋⟡☍⟐☉⟊☽☈⟁⧋⟡☍⟐☉⟊☽☈⟁⧋⟡☍⟐") + print('⊹─────────────⟡─────────────⊹') + user_input = input('==> ') + if user_input == "\x65\x65\x65": + print(open("./flag.txt", "r").read()) + break + else: + print("That wasn't it. I got: " + str(user_input)) + print() + print() + print() + except Exception as e: + print(e) + break diff --git a/misc/bytemancy_0/solve.sh b/misc/bytemancy_0/solve.sh new file mode 100755 index 0000000..8f88430 --- /dev/null +++ b/misc/bytemancy_0/solve.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +result="$(echo "656565" | xxd -r -p)" + +nc candy-mountain.picoctf.net 54973 <<<"$result"