Completed challenge 156

This commit is contained in:
Michael Chen 2022-05-17 13:36:43 +02:00
parent 4b896bc73c
commit 69ef593349
No known key found for this signature in database
GPG Key ID: FD1BAF55F0CBDCF9
2 changed files with 8 additions and 0 deletions

6
156/decode.py Normal file
View 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
View File

@ -0,0 +1,2 @@
#!/bin/bash -e
nc mercury.picoctf.net 22342 | python decode.py