Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. $users = [];
  2. for ($i = 2; $i <= 255 ; $i++)
  3. $users[] = sprintf(“A%03d”, $i);
  4.  
  5. for ($i = 2; $i <= 255 ; $i++)
  6. $users[] = sprintf(“B%03d”, $i);
  7.  
  8. for ($i = 1; $i <= 62 ; $i++)
  9. $users[] = sprintf(“C%03d”, $i);
  10.  
  11. for ($i = 1; $i <= 255 ; $i++)
  12. $users[] = sprintf(“D%03d”, $i);
  13.  
  14. for ($i = 1; $i <= 192 ; $i++)
  15. $users[] = sprintf(“E%03d”, $i);
  16.  
  17. for($i=0; $i<count($users); $i++){
  18. $p = new Proxy();
  19. $p->ip = “82.214.90.250";
  20. $p->port = “13486”;
  21. $p->username = $users[$i];
  22. $p->password = “1234";
  23. $p->type= “http”;
  24. $p->auth = true;
  25. $p->save();
  26. }
  27.  
  28. return “good”;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement