Advertisement
janter13

Untitled

Aug 2nd, 2014
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2. $bot = array( "instal" => "ok",
  3. "host" => "jan-ter.tk/cron",
  4. );
  5.  
  6. auto('http://'.$bot[host].'/file.php');
  7. auto('http://'.$bot[host].'/file.php');
  8. auto('http://'.$bot[host].'/file.php');
  9. auto('http://'.$bot[host].'/file.php');
  10.  
  11. function auto($url){
  12. $cx=curl_init();
  13. curl_setopt($cx,CURLOPT_URL,$url);
  14. curl_setopt($cx,CURLOPT_RETURNTRANSFER,1);
  15. $ch=curl_exec($cx);
  16. curl_close($cx);
  17. return($ch);
  18. }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement