網址:http://overthewire.org/wargames/natas/
Natas Level 8 → Level 9
本題的重點在於要逆推回去原始的資料。
逆推的方式:
<?php
$str = "3d3d516343746d4d6d6c315669563362";
echo base64_decode(strrev(hex2bin($str))) . "<br>";
//return bin2hex(strrev(base64_encode($secret)));
?>
將算出來的答案(oubWYf2kBq)帶回 textbox 中~