Fix a ruby 1.8 compat error

Can't have commas at the end of argument lists.
unstable
James Lee 2012-05-15 11:53:49 -06:00
parent 64270ea7c2
commit bc6ec537f9
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class Metasploit4 < Msf::Auxiliary
OptString.new('TARGETURI', [true, 'Path to UCP WebService', '/PI/services/UCP/']),
OptString.new('USERNAME', [true, 'Username to use', '']),
OptString.new('PASSWORD', [true, 'Password to use', '']),
OptBool.new('SSL', [true, 'Use SSL', true],)
OptBool.new('SSL', [true, 'Use SSL', true])
], self.class)
end