Advertisement
Guest User

Untitled

a guest
Oct 31st, 2018
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. error_reporting(0);
  4. if(!$_POST['count']){ ?>
  5.  
  6. <title>IDs Maker</title><body><form id="pinoy" action="" method="post">
  7. <input name="count" type="text" class="feedback-input" value="10" />
  8. <input type="submit" value="SUBMIT"/>
  9. </form>
  10. <?php
  11. } else {
  12.  
  13. require_once 'batim.php';
  14. for($i=0;$i<$_POST['count'];$i++){
  15. $r = new batim(true);
  16.  
  17.  
  18. // NOTE: THIS IS A CLI TOOL
  19. /// DEBUG MODE ///
  20. $username = 'shelly'.rand(1, 100000).'';
  21.  
  22. $password = 'Rifki1st';
  23. $email = 'kidszonk'.rand(1, 100000).'@gmail.com';
  24.  
  25. $result = $r->createAccount($username, $password, $email);
  26.  
  27. if (isset($result[1]['account_created']) && ($result[1]['account_created'] == true))
  28. {
  29. echo "<title>Result</title>";
  30. echo "Success Create Ids =></font><font color=green> ".$username.":".$password."</font></h2><br>";
  31. $catat2 = "bat.txt";
  32. $buat = fopen($catat2, "a");
  33. fwrite($buat, "".$username.":".$password."\n");
  34. fclose($buat);
  35. }
  36. flush();
  37. ob_flush();
  38. sleep(0);
  39. }
  40. }
  41. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement