From 9ec50a8076874225c4fa40786f8804cfad0a2e5a Mon Sep 17 00:00:00 2001 From: lgandx Date: Fri, 9 Sep 2016 03:12:02 -0300 Subject: [PATCH 1/5] minor fix --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f7d6d6d3..308a1d09 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,9 @@ LLMNR/NBT-NS/mDNS Poisoner -Author: Laurent Gaffie http://www.spiderlabs.com +Author: Laurent Gaffie +https://g-laurent.blogspot.com/ ## Intro ## @@ -159,8 +160,9 @@ Options: ## Copyright ## NBT-NS/LLMNR Responder -Created by Laurent Gaffie -Copyright (C) 2013 Trustwave Holdings, Inc. + +Created and maintained by Laurent Gaffie + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by From 9d52144f7e001c03bd1f915e3e75e92d636d0ca3 Mon Sep 17 00:00:00 2001 From: lgandx Date: Fri, 9 Sep 2016 03:13:29 -0300 Subject: [PATCH 2/5] fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 308a1d09..3a8d4f26 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Edit this file /etc/NetworkManager/NetworkManager.conf and comment the line: `dn - For OSX, please note: Responder must be launched with an IP address for the -i flag (e.g. -i YOUR_IP_ADDR). There is no native support in OSX for custom interface binding. Using -i en1 will not work. Also to run Responder with the best experience, run the following as root: - launchcl unload /System/Library/LaunchDaemons/com.apple.Kerberos.kdc.plist + launchctl unload /System/Library/LaunchDaemons/com.apple.Kerberos.kdc.plist launchctl unload /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist From 6c204a440203fc8ec4b2d024bc20f29a3a08c7fe Mon Sep 17 00:00:00 2001 From: lgandx Date: Fri, 9 Sep 2016 03:21:21 -0300 Subject: [PATCH 3/5] Unsupported version notice --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a8d4f26..772319c3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ LLMNR/NBT-NS/mDNS Poisoner -Author: Laurent Gaffie +This version is now unsupported by the author. For latest push/fixes/updates use the official repository: https://github.com/lgandx/Responder + +Author: Laurent Gaffie < laurent.gaffie@gmail.com > https://g-laurent.blogspot.com/ @@ -157,7 +159,7 @@ Options: -## Copyright ## +## License ## NBT-NS/LLMNR Responder From 989dc8b1a97adabb2100f62b9af58f06ebd4cdac Mon Sep 17 00:00:00 2001 From: lgandx Date: Fri, 9 Sep 2016 03:22:42 -0300 Subject: [PATCH 4/5] Formatting fix --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 772319c3..2b8eb405 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ LLMNR/NBT-NS/mDNS Poisoner -This version is now unsupported by the author. For latest push/fixes/updates use the official repository: https://github.com/lgandx/Responder +This version is now unsupported by the author. + +For latest push/fixes/updates use the official repository: https://github.com/lgandx/Responder Author: Laurent Gaffie < laurent.gaffie@gmail.com > From 9b587c2052474369b8d249dec16537a2e6b492ce Mon Sep 17 00:00:00 2001 From: "Mark Bergman (xychix)" Date: Mon, 26 Sep 2016 13:32:08 +0200 Subject: [PATCH 5/5] Update utils.py Set default value for 2nd input var on FindLocalIP in order to maintain (backwards)compatibility with DHCP.py (call's with 1 param). Not sure if this branch is kept in sync with lgandx, see pull request for maintained branch here: https://github.com/lgandx/Responder/pull/10 --- utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index f6669512..0b841cb5 100644 --- a/utils.py +++ b/utils.py @@ -87,7 +87,7 @@ def OsInterfaceIsSupported(): def IsOsX(): return sys.platform == "darwin" -def FindLocalIP(Iface, OURIP): +def FindLocalIP(Iface, OURIP=None): if Iface == 'ALL': return '0.0.0.0' @@ -338,4 +338,4 @@ def hexdump(src, l=0x16): res.append(('%08X: %-'+str(l*(2+1)+1)+'s |%s|') % (i, hexa, text)) - return '\n'.join(res) \ No newline at end of file + return '\n'.join(res)