- # by eboz
- # eb0z[at]hotmail.com
- originally coded by my bro Damane-Dz
- main credits go to him!
- <php?
- error_reporting(0);
- if($_POST){
- $code = $_POST['code'];
- $encode= $_POST['encode'];
- if($encode == "") // Mean Empty Case :p
- {
- die("<center><p><b><font size='5' color='red'>Empty Case !!</b></p></font></center>");
- }else
- // 1 >> base64_decode
- if($_POST['code'] == "base64_decode"){
- $decode = @htmlentities(base64_decode($encode),ENT_NOQUOTES);
- }
- // 2 >> gzinflate(str_rot13
- elseif($_POST['code'] == "gzinflate(str_rot13"){
- $decode = @htmlentities(gzinflate(str_rot13($encode)),ENT_NOQUOTES);
- }
- // 3 >> gzinflate(base64_decode
- elseif($_POST['code'] == "gzinflate(base64_decode"){
- $decode = @htmlentities(gzinflate(base64_decode($encode)),ENT_NOQUOTES);
- }
- // 4 >> gzinflate(str_rot13(base64_decode
- elseif($_POST['code'] == "gzinflate(str_rot13(base64_decode"){
- $decode = @htmlentities(gzinflate(str_rot13(base64_decode($encode))),ENT_NOQUOTES);
- }
- // 5 >> gzinflate(base64_decode(str_rot13
- elseif($_POST['code'] == "gzinflate(base64_decode(str_rot13"){
- $decode = @htmlentities(gzinflate(base64_decode(str_rot13($encode))),ENT_NOQUOTES);
- }
- // 6 >> str_rot13(gzinflate(base64_decode
- elseif($_POST['code'] == "str_rot13(gzinflate(base64_decode"){
- $decode = @htmlentities(str_rot13(gzinflate(base64_decode($encode))),ENT_NOQUOTES);
- }
- // 7 >> gzinflate(base64_decode(str_rot13
- elseif($_POST['code'] == "gzinflate(base64_decode(str_rot13"){
- $decode = @htmlentities(gzinflate(base64_decode(str_rot13($encode))),ENT_NOQUOTES);
- }
- // 8 >> gzuncompress(base64_decode
- elseif($_POST['code'] == "gzuncompress(base64_decode"){
- $decode = @htmlentities(gzuncompress(base64_decode($encode)),ENT_NOQUOTES);
- }
- // 9 >> gzuncompress(str_rot13(base64_decode
- elseif($_POST['code'] == "gzuncompress(str_rot13(base64_decode"){
- $decode = @htmlentities(gzuncompress(str_rot13(base64_decode($encode))),ENT_NOQUOTES);
- }
- // 10 >> gzuncompress(base64_decode(str_rot13
- elseif($_POST['code'] == "gzuncompress(base64_decode(str_rot13"){
- $decode = @htmlentities(gzuncompress(base64_decode(str_rot13($encode))),ENT_NOQUOTES);
- }
- // 11 >> gzinflate(base64_decode(strrev(str_rot13
- elseif($_POST['code'] == "gzinflate(base64_decode(strrev(str_rot13"){
- $decode = @htmlentities(gzinflate(base64_decode(strrev(str_rot13($encode)))),ENT_NOQUOTES);
- }
- // 12 >> gzinflate(base64_decode(strrev
- elseif($_POST['code'] == "gzinflate(base64_decode(strrev"){
- $decode = @htmlentities(gzinflate(base64_decode(strrev($encode))),ENT_NOQUOTES);
- }
- // 13 >> gzinflate(base64_decode(str_rot13(strrev
- elseif($_POST['code'] == "gzinflate(base64_decode(str_rot13(strrev"){
- $decode = @htmlentities(gzinflate(base64_decode(str_rot13(strrev($encode)))),ENT_NOQUOTES);
- }
- // 14 >> base64_decode(gzuncompress(base64_decode
- elseif($_POST['code'] == "base64_decode(gzuncompress(base64_decode"){
- $decode = @htmlentities(base64_decode(gzuncompress(base64_decode($encode))),ENT_NOQUOTES);
- }
- // 15 >> gzinflate(base64_decode(rawurldecode
- elseif($_POST['code'] == "gzinflate(base64_decode(rawurldecode"){
- $decode = @htmlentities(gzinflate(base64_decode(rawurldecode($encode))),ENT_NOQUOTES);
- }
- // 16 >> gzuncompress(base64_decode(strtr
- elseif($_POST['code'] == "gzuncompress(base64_decode(strtr"){
- $decode = @htmlentities(gzuncompress(base64_decode(strtr($encode))),ENT_NOQUOTES);
- }
- // u can add new ones
- // Result In A New Text Area :
- echo"<center><br /><p> <b><font size='4'>* DecrypteD Code:</font></b><br />";
- echo"<p> </p>";
- echo"<textarea id='textarea' name='decode' cols='100' rows='18' >$decode</textarea></center>";
- }
- ?>

