Removed EOL spaces (msftidy)

bug/bundler_fix
Stuart Morgan 2015-12-05 15:33:04 +00:00
parent 12561e5cf9
commit 28202745ab
4 changed files with 13 additions and 13 deletions

View File

@ -52,12 +52,12 @@ class Metasploit3 < Msf::Auxiliary
end
jitter_value = datastore['JITTER'].to_i
if jitter_value<0
if jitter_value < 0
raise Msf::OptionValidateError.new(['JITTER'])
end
end
delay_value = datastore['DELAY'].to_i
if delay_value<0
if delay_value < 0
raise Msf::OptionValidateError.new(['DELAY'])
end

View File

@ -54,12 +54,12 @@ class Metasploit3 < Msf::Auxiliary
end
jitter_value = datastore['JITTER'].to_i
if jitter_value<0
if jitter_value < 0
raise Msf::OptionValidateError.new(['JITTER'])
end
end
delay_value = datastore['DELAY'].to_i
if delay_value<0
if delay_value < 0
raise Msf::OptionValidateError.new(['DELAY'])
end

View File

@ -49,12 +49,12 @@ class Metasploit3 < Msf::Auxiliary
end
jitter_value = datastore['JITTER'].to_i
if jitter_value<0
if jitter_value < 0
raise Msf::OptionValidateError.new(['JITTER'])
end
end
delay_value = datastore['DELAY'].to_i
if delay_value<0
if delay_value < 0
raise Msf::OptionValidateError.new(['DELAY'])
end

View File

@ -17,8 +17,8 @@ class Metasploit3 < Msf::Auxiliary
def initialize
super(
'Name' => 'TCP Port Scanner',
'Description' => %q{
Enumerate open TCP services by performing a full TCP connect on each port.
'Description' => %q{
Enumerate open TCP services by performing a full TCP connect on each port.
This does not need administrative privileges on the source machine, which
may be useful if pivoting.
},
@ -51,12 +51,12 @@ class Metasploit3 < Msf::Auxiliary
end
jitter_value = datastore['JITTER'].to_i
if jitter_value<0
if jitter_value < 0
raise Msf::OptionValidateError.new(['JITTER'])
end
delay_value = datastore['DELAY'].to_i
if delay_value<0
if delay_value < 0
raise Msf::OptionValidateError.new(['DELAY'])
end