Password made pseudo-random instead of a bunnch of A's

bug/bundler_fix
kenkeiras 2014-04-18 21:10:34 +02:00
parent 47ff820a83
commit 8a3329c891
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class Metasploit3 < Msf::Auxiliary
def check_user(ip, user, port) def check_user(ip, user, port)
pass = 'A' * 64_000 pass = Rex::Text.rand_text_alphanumeric(64_000)
opt_hash = { opt_hash = {
:auth_methods => ['password', 'keyboard-interactive'], :auth_methods => ['password', 'keyboard-interactive'],