- Fixed Responder plugin calling wrong var

- Modified output
This commit is contained in:
byt3bl33d3r 2015-03-10 23:26:32 +01:00
parent 8b6e5e99d4
commit 68c9c7e1bd
4 changed files with 15 additions and 12 deletions

View file

@ -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)