From fbcb000a9315d0a27b88542129f31e6039f1c69a Mon Sep 17 00:00:00 2001 From: Idar Lund Date: Thu, 7 Nov 2024 09:18:55 +0000 Subject: [PATCH 1/2] quickstart for macos added quickstart for macos and changed format on the considerations for macos --- README.md | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7ee2a49..d7d1544 100755 --- a/README.md +++ b/README.md @@ -101,15 +101,25 @@ Edit this file /etc/NetworkManager/NetworkManager.conf and comment the line: `dn - This tool is not meant to work on Windows. -- 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: +- For macOS, 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: - launchctl 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 +launchctl unload /System/Library/LaunchDaemons/com.apple.smbd.plist +launchctl unload /System/Library/LaunchDaemons/com.apple.netbiosd.plist +``` - launchctl unload /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist +- Quickstart for macOS: - launchctl unload /System/Library/LaunchDaemons/com.apple.smbd.plist - - launchctl unload /System/Library/LaunchDaemons/com.apple.netbiosd.plist +``` +git clone https://github.com/lgandx/Responder +cd Responder/ +python3 -m venv . +source bin/activate +python3 -m pip install netifaces +sudo python3 Responder.py +``` ## Usage ## From 38023edfaa5e18fd6c0cddaa0540a94ccce7fe5e Mon Sep 17 00:00:00 2001 From: Idar Lund Date: Thu, 7 Nov 2024 09:21:19 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d7d1544..6a08720 100755 --- a/README.md +++ b/README.md @@ -104,10 +104,10 @@ Edit this file /etc/NetworkManager/NetworkManager.conf and comment the line: `dn - For macOS, 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: ``` -launchctl unload /System/Library/LaunchDaemons/com.apple.Kerberos.kdc.plist -launchctl unload /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist -launchctl unload /System/Library/LaunchDaemons/com.apple.smbd.plist -launchctl unload /System/Library/LaunchDaemons/com.apple.netbiosd.plist +launchctl bootout system /System/Library/LaunchDaemons/com.apple.Kerberos.kdc.plist +launchctl bootout system /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist +launchctl bootout system /System/Library/LaunchDaemons/com.apple.smbd.plist +launchctl bootout system /System/Library/LaunchDaemons/com.apple.netbiosd.plist ``` - Quickstart for macOS: