Completed challenge 156
This commit is contained in:
parent
4b896bc73c
commit
69ef593349
6
156/decode.py
Normal file
6
156/decode.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
from sys import stdin
|
||||||
|
|
||||||
|
for line in stdin:
|
||||||
|
i = chr(int(line))
|
||||||
|
print(i, end='')
|
2
156/solve.sh
Normal file
2
156/solve.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash -e
|
||||||
|
nc mercury.picoctf.net 22342 | python decode.py
|
Loading…
Reference in New Issue
Block a user