-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasks.py
112 lines (90 loc) · 2.63 KB
/
tasks.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
import os
import subprocess
from celery import Celery
from cicflowmeter.sniffer import run_sniffer
# -----------------------------------------------------------------------------
celery = Celery(
"tasks",
broker="redis://localhost:6379/0",
backend="redis://localhost:6379/0",
)
# -----------------------------------------------------------------------------
@celery.task
def create_tcpdump(interface, duration, output_file):
try:
# Temp file with the mame of the task id
temp_file = os.path.join(
"dump/temp", f"{create_tcpdump.request.id}.pcap"
)
command = f"tcpdump -i {interface} -w {temp_file} -G {duration} -W 1"
subprocess.run(command, shell=True)
fields = (",").join(
[
"dst_port",
"totlen_fwd_pkts",
"flow_iat_mean",
"flow_iat_max",
"fwd_iat_tot",
"fwd_iat_mean",
"fwd_iat_max",
"fwd_iat_min",
"fwd_header_len",
"fwd_pkts_s",
"bwd_pkts_s",
"subflow_fwd_byts",
"init_fwd_win_byts",
"init_bwd_win_byts",
"timestamp",
]
)
run_sniffer(
input_file=temp_file,
input_interface=None,
output_mode="csv",
output=output_file,
fields=fields,
verbose=False,
)
return True
except Exception as e:
print(e)
return False
finally:
os.remove(temp_file)
@celery.task
def convert_pcap_to_csv(input_file, output_file):
try:
fields = (",").join(
[
"dst_port",
"totlen_fwd_pkts",
"flow_iat_mean",
"flow_iat_max",
"fwd_iat_tot",
"fwd_iat_mean",
"fwd_iat_max",
"fwd_iat_min",
"fwd_header_len",
"fwd_pkts_s",
"bwd_pkts_s",
"subflow_fwd_byts",
"init_fwd_win_byts",
"init_bwd_win_byts",
"timestamp",
]
)
run_sniffer(
input_file=input_file,
input_interface=None,
output_mode="csv",
output=output_file,
fields=fields,
verbose=False,
)
return True
except Exception as e:
print(e)
return False
finally:
os.remove(input_file)
# -----------------------------------------------------------------------------