#!/usr/bin/env python # This file is part of Responder # Original work by Laurent Gaffie - Trustwave Holdings # # 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 struct import core.responder.settings as settings import threading from traceback import print_exc from SocketServer import BaseRequestHandler, ThreadingMixIn, TCPServer, UDPServer from core.responder.utils import * class Kerberos: def start(self): try: if OsInterfaceIsSupported(): server1 = ThreadingTCPServer((settings.Config.Bind_To, 88), KerbTCP) server2 = ThreadingUDPServer((settings.Config.Bind_To, 88), KerbUDP) else: server1 = ThreadingTCPServer(('', 88), KerbTCP) server2 = ThreadingUDPServer(('', 88), KerbUDP) for server in [server1, server2]: t = threading.Thread(name='Kerberos', target=server.serve_forever) t.setDaemon(True) t.start() except Exception as e: print "Error starting Kerberos server: {}".format(e) print_exc() class ThreadingTCPServer(ThreadingMixIn, TCPServer): allow_reuse_address = 1 def server_bind(self): if OsInterfaceIsSupported(): try: self.socket.setsockopt(socket.SOL_SOCKET, 25, settings.Config.Bind_To+'\0') except: pass TCPServer.server_bind(self) class ThreadingUDPServer(ThreadingMixIn, UDPServer): allow_reuse_address = 1 def server_bind(self): if OsInterfaceIsSupported(): try: self.socket.setsockopt(socket.SOL_SOCKET, 25, settings.Config.Bind_To+'\0') except: pass UDPServer.server_bind(self) def ParseMSKerbv5TCP(Data): MsgType = Data[21:22] EncType = Data[43:44] MessageType = Data[32:33] if MsgType == "\x0a" and EncType == "\x17" and MessageType =="\x02": if Data[49:53] == "\xa2\x36\x04\x34" or Data[49:53] == "\xa2\x35\x04\x33": HashLen = struct.unpack('