mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-11 15:47:10 -07:00
- Fixed Responder plugin calling wrong var
- Modified output
This commit is contained in:
parent
8b6e5e99d4
commit
68c9c7e1bd
4 changed files with 15 additions and 12 deletions
|
@ -19,15 +19,22 @@ class Responder(Plugin):
|
|||
self.options = options
|
||||
self.interface = options.interface
|
||||
|
||||
RESP_VERSION = "2.1.2"
|
||||
|
||||
try:
|
||||
config = options.configfile['Responder']
|
||||
except Exception, e:
|
||||
sys.exit('[-] Error parsing config for Responder: ' + str(e))
|
||||
|
||||
DnsCache.getInstance().setCustomAddress(self.ip_address)
|
||||
DnsCache.getInstance().setCustomAddress(options.ip_address)
|
||||
|
||||
for name in ['wpad', 'ISAProxySrv', 'RespProxySrv']:
|
||||
DnsCache.getInstance().setCustomRes(name, self.ip_address)
|
||||
DnsCache.getInstance().setCustomRes(name, options.ip_address)
|
||||
|
||||
print "| |_ NBT-NS, LLMNR & MDNS Responder v%s by Laurent Gaffie online" % RESP_VERSION
|
||||
|
||||
if options.Analyse:
|
||||
print '| |_ Responder is in analyze mode. No NBT-NS, LLMNR, MDNS requests will be poisoned'
|
||||
|
||||
t = threading.Thread(name='responder', target=start_responder, args=(options, options.ip_address, config))
|
||||
t.setDaemon(True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue