misc/bytemancy_0
This commit is contained in:
@@ -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
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
result="$(echo "656565" | xxd -r -p)"
|
||||
|
||||
nc candy-mountain.picoctf.net 54973 <<<"$result"
|
||||
Reference in New Issue
Block a user