Extra commas.

bug/bundler_fix
Tod Beardsley 2015-01-22 13:45:08 -06:00
parent 2e606cd097
commit bd06b48b30
No known key found for this signature in database
GPG Key ID: BD63D0A3EA19CAAC
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class Metasploit3 < Msf::Auxiliary
register_options([
OptString.new('PATH', [true, "Starting crawling path", '/']),
OptInt.new('RPORT', [true, "Remote port", 80 ]),
OptInt.new('RPORT', [true, "Remote port", 80 ])
], self.class)
register_advanced_options([
@ -46,7 +46,7 @@ class Metasploit3 < Msf::Auxiliary
OptInt.new('TakeTimeout', [ true, "Timeout for loop ending", 15]),
OptInt.new('ReadTimeout', [ true, "Read timeout (-1 forever)", 3]),
OptInt.new('ThreadNum', [ true, "Threads number", 20]),
OptString.new('DontCrawl', [true, "Filestypes not to crawl", '.exe,.zip,.tar,.bz2,.run,.asc,.gz']),
OptString.new('DontCrawl', [true, "Filestypes not to crawl", '.exe,.zip,.tar,.bz2,.run,.asc,.gz'])
], self.class)
end