-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrel_len.py
74 lines (55 loc) · 2.25 KB
/
rel_len.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
from scapy.all import *
import matplotlib.pyplot as plot
import glob
def get_data(pcap_file):
req_dict = {}
len_list = []
with PcapReader(pcap_file) as pkts:
for pkt in pkts:
if pkt.haslayer(DNS) and pkt.haslayer(DNSRR) == 0:
req_dict[str(pkt[DNS].id)+ str(pkt[UDP].sport) + str(pkt[IP].src) + str(pkt[IP].dst)] = pkt.len
else:
try:
len_list.append((req_dict.pop(str(pkt[DNS].id)+ str(pkt[UDP].dport) + str(pkt[IP].dst) + str(pkt[IP].src)), pkt.len))
except:
continue
# print(len_list)
return len_list
def draw(data, file):
req = []
res = []
x = [i for i in range(len(data))]
for item in data:
req.append(item[0])
res.append(item[1])
plot.plot(x, req, label='request', color='r')
plot.plot(x, res, label='response', color='b')
plot.legend()
# plot.savefig(os.path.dirname(file) + '/picture/' + os.path.basename(file) + '_relation_len.png')
plot.savefig('/Users/liujingkun/Exp/dns_tunneling/data/catch_data/exp/picture/normal_relation_len.png')
plot.clf()
def main(args):
for path in args:
for file in glob.glob(path):
if file.endswith(r'.pcap'):
filename = os.path.basename(file).split(r'_')[0:2]
draw(get_data(file), file)
if __name__ == '__main__':
paths = ['/Users/liujingkun/Exp/dns_tunneling/data/catch_data/exp/50/*',
'/Users/liujingkun/Exp/dns_tunneling/data/catch_data/exp/100/*',
'/Users/liujingkun/Exp/dns_tunneling/data/catch_data/exp/1000/*',
]
# main(paths)
# 获取1小时流量的所有数据,并以,分割,存入文本
# data = get_data('')
# with open('./test_data/a.txt', 'wt') as f:
# for line in data:
# a, b = line
# f.write(str(a) +','+ str(b) + '\r\n')
# 读取1小时的文本数据,将请求长度和响应长度解析为元组的形式,画图
len_list = []
with open('/Users/liujingkun/Exp/dns_tunneling/data/analyze_data/other/rel.txt', 'rt') as f:
lines = f.readlines()
for line in lines:
len_list.append(tuple(line.strip().split(',')))
draw(len_list[:50], 'normal')