Rating:

<h1>angstromCTF 2016 - What the Hex</h1>Category: Crypto Score: 15<h2>Description</h2><span>Decode using hex and see what you get…
6236343a20615735305a584a755a58526659323975646d567963326c76626c3930623239736331397962324e72</span><h2>Solving the challenge</h2>Only needed my terminal for this.<span>First I decoded the hex encoded string.

</span><span> echo "6236343a20615735305a584a755a58526659323975646d567963326c76626c3930623239736331397962324e72" | xxd -r -p
b64:
output : aW50ZXJuZXRfY29udmVyc2lvbl90b29sc19yb2Nr</span><span>

</span><span>$ echo aW50ZXJuZXRfY29udmVyc2lvbl90b29sc19yb2Nr | base64 -d

output is : internet_conversion_tools_rock

</span>Flag: internet_conversion_tools_rock<span>

</span>