Advertisement
KiLL3r-Dz

byterun.com decrypter

Dec 6th, 2012
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.55 KB | None | 0 0
  1. <?
  2. # Coded by Th3 K!LL3r Dz
  3. # Algerien Hacker
  4. # For You Damane2011 :p
  5. # Greetz To : se4ever.com , sa-hacker.com
  6. echo "<html>
  7. <head>
  8. <title>#@!~ byterun.com decrypter </title>
  9. <style>
  10. body {
  11. BACKGROUND-COLOR: #2D3505
  12. }
  13.  
  14.  
  15. textarea {
  16. BACKGROUND-COLOR: #697430;
  17. COLOR: #FFFFFF;
  18. BORDER: #E3FF50 1px solid;
  19.  
  20. }
  21. input {
  22. BORDER:  #E3FF50 1px solid;
  23. BACKGROUND-COLOR: #697430;
  24. COLOR: #FFFFFF;
  25. font: 8pt Tahoma;
  26.  
  27. </style>
  28. </head>
  29. <center>
  30. <br />";
  31.  
  32. function killer($var) {
  33. if (get_magic_quotes_gpc() == 1) {
  34. return stripslashes($var);
  35. } else {
  36. return $var;
  37. }
  38. }
  39. echo "<span style=\"color:#FFFFFF; font: 12px Tahoma; font-weight:bold;\"> byterun.com decrypter  </span><br/><br/>";
  40. echo "<form method=POST>
  41. <textarea name=\"text\" cols=\"60\" rows=\"10\"></textarea><br><br>
  42. <input type=\"submit\" name=\"decode\" value=\"decode\">
  43. <br><br>";
  44. $text = killer($_POST['text']);
  45. $dec = dz(base64_decode($text));
  46.  if ($_POST ['decode'])
  47. {
  48. $result = $dec;
  49. $file = "decode.txt";
  50. $open = fopen ($file,'w+') or die ("Can't Open A New File :$");
  51. fwrite($open,$result);
  52. fclose($open);
  53.  
  54. echo "<br /><tr><td><font style='font: 9pt Tahoma; COLOR: #FFFFFF;font-weight:bold;'>Done With Success <a style='text-decoration: none;color:red;' href='decode.txt'>decode.txt</a></font></td><td><br/><br/>"; // hehe it's done
  55. }
  56.  
  57.  
  58.  
  59. echo "<span style=\"color:#FFFFFF; font: 9px Tahoma; font-weight:bold;\"> Coded By Th3 K!LL3r Dz &copy; Sec4Ever.com </span></center>";
  60. # Function :p
  61.  
  62. function dz($value){  return strtr($value,'123456aouie','aouie123456');  }
  63.  
  64. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement