Advertisement
Newbie4rt-ID

Script En&Dec0de JamvanHax0r

Dec 20th, 2014
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.19 KB | None | 0 0
  1. ### Demo    :   http://tervesuuasemat.fi/EncodeDecode2.php
  2. ### Created :   JamvanHax0r ~ 20 December 2014
  3. ### BlackHat Cyber Crew
  4.                 ++++++++++++++++++++++++++++++++++++++++++++++++++++
  5.  
  6. <?php
  7. @ini_set('output_buffering',0);
  8. @ini_set('display_errors', 0);
  9. $text = $_POST['code'];
  10. ?>
  11. <title>Script En&DeC0de by JamvanHax0r</title>
  12. <STYLE>
  13. body,td,th {font-family: Verdana;font-size: 12px;color: #00FF00;font-weight: bold;}
  14. .jaya{ font-family:Vivaldi;font-size:50px;color: #00FF00;}
  15. input {BORDER-RIGHT:#00FF00 1px solid;BORDER-TOP:#00FF00 1px solid;BORDER-LEFT:#00FF00 1px solid;BORDER-BOTTOM: #00FF00 1px solid;BACKGROUND-COLOR: #111111;COLOR: #00FF00;font: 8pt Verdana;}
  16. select {BORDER-RIGHT:#00FF00 1px solid;BORDER-TOP:#00FF00 1px solid;BORDER-LEFT:#00FF00 1px solid;BORDER-BOTTOM: #00FF00 1px solid;BACKGROUND-COLOR: #111111;COLOR: #00FF00;font: 8pt Verdana;}
  17. submit {BORDER-RIGHT:buttonhighlight 2px outset;BORDER-TOP:buttonhighlight 2px outset;BORDER-LEFT:buttonhighlight 2px outset;BORDER-BOTTOM: buttonhighlight 2px outset;BACKGROUND-COLOR: #000099;COLOR: #FFFF00;width: 30%;}
  18. textarea {BORDER-RIGHT:#00FF00 1px solid;BORDER-TOP:#00FF00 1px solid;BORDER-LEFT:#00FF00 1px solid;BORDER-BOTTOM: #00FF00 1px solid;BACKGROUND-COLOR: #111111;COLOR: #00FF00;font: Fixedsys bold;}
  19. BODY {margin-top: 1px;margin-right: 1px;margin-bottom: 1px;margin-left: 1px;SCROLLBAR-FACE-COLOR: #111111; SCROLLBAR-HIGHLIGHT-COLOR: #111111;SCROLLBAR-ARROW-COLOR: #c5c5c5;SCROLLBAR-BASE-COLOR: #253546;BACKGROUND-COLOR: #000000;}
  20. </STYLE>
  21. <center>
  22. <div class="jaya">BlackHat Cyber Crew</div>
  23. <form method="post"><br>
  24. <textarea class='inputz' cols=80 rows=10 name="code"></textarea><br><br>
  25. <select class='inputz' size="1" name="ope">
  26. <option value="urlencode">url</option>
  27. <option value="base64">Base64</option>
  28. <option value="ur">convert_uu</option>
  29. <option value="json">json</option>
  30. <option value="gzinflates">gzinflate - base64</option>
  31. <option value="str2">str_rot13 - base64</option>
  32. <option value="gzinflate">str_rot13 - gzinflate - base64</option>
  33. <option value="gzinflater">gzinflate - str_rot13 - base64</option>
  34. <option value="gzinflatex">gzinflate - str_rot13 - gzinflate - base64</option>
  35. <option value="gzinflatew">str_rot13 - convert_uu - url - gzinflate - str_rot13 - base64 - convert_uu - gzinflate - url - str_rot13 - gzinflate - base64</option>
  36. <option value="str">str_rot13 - gzinflate - str_rot13 - base64</option>
  37. <option value="url">base64 - gzinflate - str_rot13 - convert_uu - gzinflate - base64</option>
  38. <option value="gzpress">gzcompress - base64</option>
  39. </select>&nbsp;<br><br><input class='inputzbut' type='submit' name='submit' value='Encode'>
  40. <input class='inputzbut' type='submit' name='submits' value='Decode'>
  41. </form>
  42.  
  43. <?php
  44. $submit = $_POST['submit'];
  45. if (isset($submit)){
  46. $op = $_POST["ope"];
  47. switch ($op) {case 'base64': $codi=base64_encode($text);
  48. break;case 'str' : $codi=(base64_encode(str_rot13(gzdeflate(str_rot13($text)))));
  49. break;case 'json' : $codi=json_encode(utf8_encode($text));
  50. break;case 'gzinflate' : $codi=base64_encode(gzdeflate(str_rot13($text)));
  51. break;case 'gzinflater' : $codi=base64_encode(str_rot13(gzdeflate($text)));
  52. break;case 'gzinflatex' : $codi=base64_encode(gzdeflate(str_rot13(gzdeflate($text))));
  53. break;case 'gzinflatew' : $codi=base64_encode(gzdeflate(str_rot13(rawurlencode(gzdeflate(convert_uuencode(base64_encode(str_rot13(gzdeflate(convert_uuencode(rawurldecode(str_rot13($text))))))))))));
  54. break;case 'gzinflates' : $codi=base64_encode(gzdeflate($text));
  55. break;case 'str2' : $codi=base64_encode(str_rot13($text));
  56. break;case 'urlencode' : $codi=rawurlencode($text);
  57. break;case 'ur' : $codi=convert_uuencode($text);
  58. break;case 'url' : $codi=base64_encode(gzdeflate(convert_uuencode(str_rot13(gzdeflate(base64_encode($text))))));
  59. break;case 'gzpress' : $codi=base64_encode(gzcompress($text));
  60. break;default:break;}}
  61.  
  62. $submit = $_POST['submits'];
  63. if (isset($submit)){
  64. $op = $_POST["ope"];
  65. switch ($op) {case 'base64': $codi=base64_decode($text);
  66. break;case 'str' : $codi=str_rot13(gzinflate(str_rot13(base64_decode(($text)))));
  67. break;case 'json' : $codi=utf8_decode(json_decode($text));
  68. break;case 'gzinflate' : $codi=str_rot13(gzinflate(base64_decode($text)));
  69. break;case 'gzinflater' : $codi=gzinflate(str_rot13(base64_decode($text)));
  70. break;case 'gzinflatex' : $codi=gzinflate(str_rot13(gzinflate(base64_decode($text))));
  71. break;case 'gzinflatew' : $codi=str_rot13(rawurldecode(convert_uudecode(gzinflate(str_rot13(base64_decode(convert_uudecode(gzinflate(rawurldecode(str_rot13(gzinflate(base64_decode($text))))))))))));
  72. break;case 'gzinflates' : $codi=gzinflate(base64_decode($text));
  73. break;case 'str2' : $codi=str_rot13(base64_decode($text));
  74. break;case 'urlencode' : $codi=rawurldecode($text);
  75. break;case 'ur' : $codi=convert_uudecode($text);
  76. break;case 'url' : $codi=base64_decode(gzinflate(str_rot13(convert_uudecode(gzinflate(base64_decode(($text)))))));
  77. break;case 'gzpress' : $codi=gzuncompress(base64_decode($text));
  78. break;default:break;}}
  79. $html = htmlentities(stripslashes($codi));
  80. echo "<from><center><h3>HASIL / RESULT</h3></center><textarea cols=80 rows=10 class='inputz' readonly>".$html."</textarea><BR/><BR/><h2>Special Thank's to : X'1n73ct</h2></center></from>";
  81. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement