More minor touchups to nbns_response. Dropping the unused FILTER option, making SPOOFIP an OptAddress, spelling.

git-svn-id: file:///home/svn/framework3/trunk@13587 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Tod Beardsley 2011-08-19 14:34:17 +00:00
parent c78ba0e4d5
commit 4c71b3f1fe
1 changed files with 3 additions and 3 deletions

View File

@ -46,15 +46,15 @@ class Metasploit3 < Msf::Auxiliary
)
register_options([
OptString.new('SPOOFIP', [ true, "IP address with which to poison responses", nil]),
OptString.new('REGEX', [ true, "Regex applied to determene if spoofed reply is sent", '.*']),
OptAddress.new('SPOOFIP', [ true, "IP address with which to poison responses", "127.0.0.1"]),
OptString.new('REGEX', [ true, "Regex applied to the NB Name to determine if spoofed reply is sent", '.*']),
])
register_advanced_options([
OptBool.new('Debug', [ false, "Determines whether incoming packet parsing is displayed", false])
])
deregister_options('RHOST', 'PCAPFILE', 'SNAPLEN')
deregister_options('RHOST', 'PCAPFILE', 'SNAPLEN', 'FILTER')
end
def run