Fixed code issues as requested in PR2801
Mostly coding style issues Re-tested in testbed - output as expectedbug/bundler_fix
parent
d0d82fe405
commit
b2f42d2576
|
@ -52,7 +52,7 @@ class Metasploit3 < Msf::Auxiliary
|
|||
register_options(
|
||||
[
|
||||
Opt::RPORT(5060),
|
||||
OptString.new('SIPURI', [true, 'The SIP URI of the user to be targeted', \
|
||||
OptString.new('SIPURI', [true, 'The SIP URI of the user to be targeted',
|
||||
'<target_email_address>@<sametime_media_server_FQDN>']),
|
||||
OptBool.new('CHECKUSER', [ true, 'Validate user is logged into Sametime', true]),
|
||||
OptInt.new('TIMEOUT', [ true, 'Set specific response timeout', 0])
|
||||
|
@ -83,7 +83,7 @@ class Metasploit3 < Msf::Auxiliary
|
|||
res = send_msg(msg)
|
||||
|
||||
# check response for current user status - common return codes
|
||||
if not res or res.nil?
|
||||
if res.nil?
|
||||
print_error("No response recevied from server")
|
||||
return false
|
||||
elsif res =~ /430 Flow Failed/i
|
||||
|
@ -126,7 +126,7 @@ class Metasploit3 < Msf::Auxiliary
|
|||
msg = create_message(length)
|
||||
res = send_msg(msg)
|
||||
|
||||
if not res or res.nil?
|
||||
if res.nil?
|
||||
if datastore['CHECKUSER'] # check user AFTER DoS
|
||||
print_good("User #{@sipuri} is no longer responding")
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue