diff --git a/modules/auxiliary/crawler/msfcrawler.rb b/modules/auxiliary/crawler/msfcrawler.rb index 5cf3af5984..7eb6ab4a4b 100644 --- a/modules/auxiliary/crawler/msfcrawler.rb +++ b/modules/auxiliary/crawler/msfcrawler.rb @@ -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