Advertisement
UhhAhh

Lazada Email Cheker

Jun 19th, 2018
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.34 KB | None | 0 0
  1. <?php
  2. // Coded by galehdotid
  3. // thnx : indoxploit - AlchaDecode - SukabumiBlackHat - Con7ext
  4.  
  5.  
  6. $galeh = new Cheker();
  7.  
  8. Class Cheker
  9. {
  10. public function input(){
  11.     echo "input list email => ";
  12.  $list = rtrim(fgets(STDIN));
  13.  $ambil = file_get_contents($list);
  14.  $explode = explode("\r\n", $ambil);
  15.  $hitung = count($explode);
  16.  $no  = 1;
  17.  $banner = "
  18.              .__         .__                                
  19.   _________  |  |   ____ |  |__    _________    ____   ______
  20.  / ___\__  \ |  | _/ __ \|  |  \  / ___\__  \  /    \ /  ___/
  21. / /_/  > __ \|  |_\  ___/|   Y  \/ /_/  > __ \|   |  \\___ \
  22. \___  (____  /____/\___  >___|  /\___  (____  /___|  /____  >
  23. /_____/     \/          \/     \//_____/     \/     \/     \/
  24.     galehdotid - SukabumiBlackHat
  25.  
  26. ";
  27.  echo $banner;
  28.  echo "########################################\r\n";
  29.  echo "Di temukan ".$hitung." di list. \r\n";
  30.  echo "########################################\r\n";
  31.  
  32.  
  33.    foreach ($explode as $lis => $email) {
  34.      if ($explode) {
  35.           echo "[galehdotid][".$no."/".$hitung."] ".$this->validin($email)." => $email ./LazaDa Email Valid \r\n";
  36.      }else{
  37.         echo "Invalid\r\n";
  38.      }
  39.      $no++;
  40.    }
  41. }
  42.  
  43.     public function validin($email){
  44.        $this->ambil = file_get_contents($this->server().$email);
  45.        $this->ambil = json_decode($this->ambil, TRUE);
  46.        
  47.         if($this->ambil['module']['result'] == "USER"){
  48.             $file = fopen("Live.txt", "a");
  49.             fwrite($file,"[LIVE] ". $email . "\r\n");
  50.             fclose($file);
  51.             return "[LIVE]";
  52.         }elseif($this->ambil['module']['result'] == "NONE"){
  53.             return "[DIE]";
  54.         }else{
  55.             $file = fopen("Recheck.txt", "a");
  56.             fwrite($file,"[Recheck] ". $email . "\r\n");
  57.             fclose($file);
  58.             return "RECHECK";
  59.         }
  60.      }
  61.  
  62.  
  63. public function server(){
  64.     $satu = "https://member.lazada.co.id/user/api/checkEmailUsage?email=";
  65.     return $satu;
  66.  
  67. }
  68. public function sock(){
  69.    
  70. }
  71. public function hasil(){
  72.     $ambil = file_get_contents("Live.txt");
  73.     $explode = explode("\r\n", $ambil);
  74.     $hitung = count($explode);
  75.      echo "########################################\r\n";
  76.      echo "Email Live ".$hitung." di list. \r\n";
  77.      echo "########################################\r\n";
  78.  
  79. }
  80.  
  81. }
  82. print($galeh->input());
  83. print($galeh->hasil());
  84. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement