Seite 3 von 4 ErsteErste 1234 LetzteLetzte
Ergebnis 11 bis 15 von 18

Thema: Easyizle.com PHP Yardımı?

  1. Gehen Sie zu DankeHerunterladen #11
    Gehen Sie zu Danke
    Kıdemli Üye Avatar von Murat84

    Info

    Gehen Sie zum Anfang des Beitrags

    Zitat Zitat von markclark Beitrag anzeigen
    Code:
    1. <?php
    2. $Live = $_GET['HLS'];
    3. $ch = curl_init(''.$Live.'');
    4. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    5. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    7. curl_setopt($ch, CURLOPT_ENCODING, false);
    8. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    9. "Referer: $Live",
    10. 'User-Agent: NetSurf/1.0 (Linux; i686)',
    11. 'Connection: Keep-Alive',
    12. 'Accept-Encoding: gzip',
    13. ));
    14. $site = curl_exec($ch);
    15. curl_close ($ch);
    16. preg_match('#video/(.*?)"#',$site,$icerik);
    17. $Url = $icerik[1];
    18. $ch1 = curl_init('https://hdplayersystem.live/player/index.php?data='.$Url.'&do=getVideo');
    19. curl_setopt($ch1, CURLOPT_SSL_VERIFYHOST, false);
    20. curl_setopt($ch1, CURLOPT_SSL_VERIFYPEER, false);
    21. curl_setopt($ch1, CURLOPT_RETURNTRANSFER, true);
    22. curl_setopt($ch1, CURLOPT_ENCODING, false);
    23. curl_setopt($ch1, CURLOPT_POST, true);
    24. curl_setopt($ch1, CURLOPT_POSTFIELDS, "hash=$Url&r=https://easyizle.com/");
    25. curl_setopt($ch1, CURLOPT_HTTPHEADER, array(
    26. 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8',
    27. 'X-Requested-With: XMLHttpRequest',
    28. 'User-Agent: NetSurf/1.0 (Linux; i686)',
    29. 'Connection: Keep-Alive',
    30. 'Accept-Encoding: gzip',
    31. ));
    32. $site1 = curl_exec($ch1);
    33. curl_close ($ch1);
    34. $site1 = str_replace('\\','',$site1);
    35. preg_match('#securedLink":"(.*?)"#',$site1,$icerik);
    36. $Link = $icerik[1];
    37. header ("Location: $Link");
    38. ?>
    Link Kullanımı : [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Dostum, nasıl kullanicagız bu phpyi? Anlamıyorum bu sistemi.

    Pcde local host uygulaması vardı onla beraber mi?


  2. Gehen Sie zu DankeHerunterladen #12
    Gehen Sie zu Danke
    Kıdemli Üye Avatar von markclark

    Info

    Gehen Sie zum Anfang des Beitrags

    Code:
    1. <?php
    2. $Live = $_GET['HLS'];
    3. $ch = curl_init(''.$Live.'');
    4. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    5. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    7. curl_setopt($ch, CURLOPT_ENCODING, false);
    8. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    9. "Referer: $Live",
    10. 'User-Agent: NetSurf/1.0 (Linux; i686)',
    11. 'Connection: Keep-Alive',
    12. 'Accept-Encoding: gzip',
    13. ));
    14. $site = curl_exec($ch);
    15. curl_close ($ch);
    16. preg_match('#data=(.*?)"#',$site,$icerik);
    17. $Url = $icerik[1];
    18. $ch1 = curl_init('https://hdplayersystem.live/player/index.php?data='.$Url.'&do=getVideo');
    19. curl_setopt($ch1, CURLOPT_SSL_VERIFYHOST, false);
    20. curl_setopt($ch1, CURLOPT_SSL_VERIFYPEER, false);
    21. curl_setopt($ch1, CURLOPT_RETURNTRANSFER, true);
    22. curl_setopt($ch1, CURLOPT_ENCODING, false);
    23. curl_setopt($ch1, CURLOPT_POST, true);
    24. curl_setopt($ch1, CURLOPT_POSTFIELDS, "hash=$Url&r=https://easyizle.com/");
    25. curl_setopt($ch1, CURLOPT_HTTPHEADER, array(
    26. 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8',
    27. 'X-Requested-With: XMLHttpRequest',
    28. 'User-Agent: NetSurf/1.0 (Linux; i686)',
    29. 'Connection: Keep-Alive',
    30. 'Accept-Encoding: gzip',
    31. ));
    32. $site1 = curl_exec($ch1);
    33. curl_close ($ch1);
    34. $site1 = str_replace('\\','',$site1);
    35. preg_match('#securedLink":"(.*?)"#',$site1,$icerik);
    36. $Link = $icerik[1];
    37. header ("Location: $Link");
    38. ?>
    Buda Diziler İçin Link Kullanım : [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..


  3. Gehen Sie zu DankeHerunterladen #13
    Gehen Sie zu Danke
    Kıdemli Üye Avatar von markclark

    Info

    Gehen Sie zum Anfang des Beitrags

    Sadece Localhost Çalışmakta İlk Attığım Filmler İçin 2.Attığım Diziler İçin Kullanım Gerektirmektedir.


  4. Gehen Sie zu DankeHerunterladen #14
    Gehen Sie zu Danke
    Kıdemli Üye Avatar von markclark

    Info

    Gehen Sie zum Anfang des Beitrags

    Code:
    1. <?php
    2. $Live = $_GET['HLS'];
    3. $ch = curl_init(''.$Live.'');
    4. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    5. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    7. curl_setopt($ch, CURLOPT_ENCODING, false);
    8. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    9. "Referer: $Live",
    10. 'User-Agent: NetSurf/1.0 (Linux; i686)',
    11. 'Connection: Keep-Alive',
    12. 'Accept-Encoding: gzip',
    13. ));
    14. $site = curl_exec($ch);
    15. curl_close ($ch);
    16. $site = str_replace('video/','data=',$site);
    17. preg_match('#data=(.*?)"#',$site,$icerik);
    18. $Url = $icerik[1];
    19. $ch1 = curl_init('https://hdplayersystem.live/player/index.php?data='.$Url.'&do=getVideo');
    20. curl_setopt($ch1, CURLOPT_SSL_VERIFYHOST, false);
    21. curl_setopt($ch1, CURLOPT_SSL_VERIFYPEER, false);
    22. curl_setopt($ch1, CURLOPT_RETURNTRANSFER, true);
    23. curl_setopt($ch1, CURLOPT_ENCODING, false);
    24. curl_setopt($ch1, CURLOPT_POST, true);
    25. curl_setopt($ch1, CURLOPT_POSTFIELDS, "hash=$Url&r=https://easyizle.com/");
    26. curl_setopt($ch1, CURLOPT_HTTPHEADER, array(
    27. 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8',
    28. 'X-Requested-With: XMLHttpRequest',
    29. 'User-Agent: NetSurf/1.0 (Linux; i686)',
    30. 'Connection: Keep-Alive',
    31. 'Accept-Encoding: gzip',
    32. ));
    33. $site1 = curl_exec($ch1);
    34. curl_close ($ch1);
    35. $site1 = str_replace('\\','',$site1);
    36. preg_match('#securedLink":"(.*?)"#',$site1,$icerik);
    37. $Link = $icerik[1];
    38. header ("Location: $Link");
    39. ?>
    Buda İster Film İster Dizi İzle PHP dir.


  5. The Following User Says Thank You to markclark For This Useful Post:

  6. Gehen Sie zu DankeHerunterladen #15
    Gehen Sie zu Danke
    Üye Avatar von Yazar Panda

    Info

    Gehen Sie zum Anfang des Beitrags

    Çok teşekkürler.


Seite 3 von 4 ErsteErste 1234 LetzteLetzte

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 7 (Registrierte Benutzer: 0, Gäste: 7)

Stichworte

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •