Remove the static (and quite obvious) TTL from the requests

git-svn-id: file:///home/svn/framework3/trunk@5608 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
HD Moore 2008-07-28 18:49:39 +00:00
parent f589f5cdb8
commit 5371549968
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class Auxiliary::Spoof::Dns::BailiWickedDomain < Msf::Auxiliary
OptString.new('NEWDNS', [true, 'The hostname of the replacement DNS server', nil]),
OptAddress.new('RECONS', [true, 'The nameserver used for reconnaissance', '208.67.222.222']),
OptInt.new('XIDS', [true, 'The number of XIDs to try for each query (0 for automatic)', 0]),
OptInt.new('TTL', [true, 'The TTL for the malicious NS entry', 31337]),
OptInt.new('TTL', [true, 'The TTL for the malicious host entry', rand(20000)+30000]),
], self.class)
end

View File

@ -42,7 +42,7 @@ class Auxiliary::Spoof::Dns::BailiWickedHost < Msf::Auxiliary
OptAddress.new('NEWADDR', [true, 'New address for hostname', '1.3.3.7']),
OptAddress.new('RECONS', [true, 'The nameserver used for reconnaissance', '208.67.222.222']),
OptInt.new('XIDS', [true, 'The number of XIDs to try for each query (0 for automatic)', 0]),
OptInt.new('TTL', [true, 'The TTL for the malicious host entry', 31337]),
OptInt.new('TTL', [true, 'The TTL for the malicious host entry', rand(20000)+30000]),
], self.class)