-
Notifications
You must be signed in to change notification settings - Fork 0
/
preprocess.py
executable file
·415 lines (385 loc) · 14.3 KB
/
preprocess.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
"""
Preprocess the data in the database's upload table Syslog
"""
import common
import dbaccess
def clean_tables():
common.db.query("DROP TABLE IF EXISTS LinksIn;")
common.db.query("DROP TABLE IF EXISTS LinksOut;")
common.db.query("DROP TABLE IF EXISTS Links;")
common.db.query("DROP TABLE IF EXISTS Tags;")
common.db.query("DROP TABLE IF EXISTS Nodes;")
dbaccess.exec_sql("./sql/setup_tables.sql")
def import_nodes():
# count(children) / 127.5 + 0.5) gives a number between 0.5 and 2.5
# radius used to be:
# (COUNT(cluster.child) / 127.5 + 0.5) * 6000
# instead of:
# 6000
# Get all /8 nodes. Load them into Nodes8
query = """
INSERT INTO Nodes (ipstart, ipend, subnet, x, y, radius)
SELECT (log.ip * 16777216) AS 'ipstart'
, ((log.ip + 1) * 16777216 - 1) AS 'ipend'
, 8 AS 'subnet'
, (331776 * (log.ip % 16) / 7.5 - 331776) AS 'x'
, (331776 * (log.ip DIV 16) / 7.5 - 331776) AS 'y'
, 20736 AS 'radius'
FROM(
SELECT SourceIP DIV 16777216 AS 'ip'
FROM Syslog
UNION
SELECT DestinationIP DIV 16777216 AS 'ip'
FROM Syslog
) AS log;
"""
qvars = {"radius": 331776}
common.db.query(query, vars=qvars)
# Get all the /16 nodes. Load these into Nodes16
query = """
INSERT INTO Nodes (ipstart, ipend, subnet, x, y, radius)
SELECT (log.ip * 65536) AS 'ipstart'
, ((log.ip + 1) * 65536 - 1) AS 'ipend'
, 16 AS 'subnet'
, ((parent.radius * (log.ip MOD 16) / 7.5 - parent.radius) + parent.x) AS 'x'
, ((parent.radius * (log.ip MOD 256 DIV 16) / 7.5 - parent.radius) + parent.y) AS 'y'
, (parent.radius / 24) AS 'radius'
FROM(
SELECT SourceIP DIV 65536 AS 'ip'
FROM Syslog
UNION
SELECT DestinationIP DIV 65536 AS 'ip'
FROM Syslog
) AS log
JOIN Nodes AS parent
ON parent.subnet=8 && parent.ipstart = (log.ip DIV 256 * 16777216);
"""
common.db.query(query)
# Get all the /24 nodes. Load these into Nodes24
query = """
INSERT INTO Nodes (ipstart, ipend, subnet, x, y, radius)
SELECT (log.ip * 256) AS 'ipstart'
, ((log.ip + 1) * 256 - 1) AS 'ipend'
, 24 AS 'subnet'
, ((parent.radius * (log.ip MOD 16) / 7.5 - parent.radius) + parent.x) AS 'x'
, ((parent.radius * (log.ip MOD 256 DIV 16) / 7.5 - parent.radius) + parent.y) AS 'y'
, (parent.radius / 24) AS 'radius'
FROM(
SELECT SourceIP DIV 256 AS 'ip'
FROM Syslog
UNION
SELECT DestinationIP DIV 256 AS 'ip'
FROM Syslog
) AS log
JOIN Nodes AS parent
ON parent.subnet=16 && parent.ipstart = (log.ip DIV 256 * 65536);
"""
common.db.query(query)
# Get all the /32 nodes. Load these into Nodes32
query = """
INSERT INTO Nodes (ipstart, ipend, subnet, x, y, radius)
SELECT log.ip AS 'ipstart'
, log.ip AS 'ipend'
, 32 AS 'subnet'
, ((parent.radius * (log.ip MOD 16) / 7.5 - parent.radius) + parent.x) AS 'x'
, ((parent.radius * (log.ip MOD 256 DIV 16) / 7.5 - parent.radius) + parent.y) AS 'y'
, (parent.radius / 24) AS 'radius'
FROM(
SELECT SourceIP AS 'ip'
FROM Syslog
UNION
SELECT DestinationIP AS 'ip'
FROM Syslog
) AS log
JOIN Nodes AS parent
ON parent.subnet=24 && parent.ipstart = (log.ip DIV 256 * 256);
"""
common.db.query(query)
def import_links():
build_Links()
# Populate Links8
deduce_LinksIn()
# Populate Links16
deduce_LinksOut()
def build_Links():
query = """
INSERT INTO Links (src, dst, port, timestamp, links)
SELECT SourceIP, DestinationIP, DestinationPort
, SUBSTRING(TIMESTAMPADD(MINUTE, -(MINUTE(Timestamp) MOD 5), Timestamp), 1, 16) AS ts
, COUNT(1) AS links
FROM Syslog
GROUP BY SourceIP, DestinationIP, DestinationPort, ts;
"""
common.db.query(query)
def deduce_LinksIn():
# /8 links
query = """
INSERT INTO LinksIn (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src DIV 16777216 * 16777216 AS 'src_start'
, src DIV 16777216 * 16777216 + 16777215 AS 'src_end'
, dst DIV 16777216 * 16777216 AS 'dst_start'
, dst DIV 16777216 * 16777216 + 16777215 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
# /16 links
query = """
INSERT INTO LinksIn (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src DIV 65536 * 65536 AS 'src_start'
, src DIV 65536 * 65536 + 65535 AS 'src_end'
, dst DIV 65536 * 65536 AS 'dst_start'
, dst DIV 65536 * 65536 + 65535 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) = (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 16777216 * 16777216 AS 'src_start'
, src DIV 16777216 * 16777216 + 16777215 AS 'src_end'
, dst DIV 65536 * 65536 AS 'dst_start'
, dst DIV 65536 * 65536 + 65535 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) != (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
# /24 links
query = """
INSERT INTO LinksIn (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src DIV 256 * 256 AS 'src_start'
, src DIV 256 * 256 + 255 AS 'src_end'
, dst DIV 256 * 256 AS 'dst_start'
, dst DIV 256 * 256 + 255 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 65536) = (dst DIV 65536)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 65536 * 65536 AS 'src_start'
, src DIV 65536 * 65536 + 65535 AS 'src_end'
, dst DIV 256 * 256 AS 'dst_start'
, dst DIV 256 * 256 + 255 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) = (dst DIV 16777216)
AND (src DIV 65536) != (dst DIV 65536)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 16777216 * 16777216 AS 'src_start'
, src DIV 16777216 * 16777216 + 16777215 AS 'src_end'
, dst DIV 256 * 256 AS 'dst_start'
, dst DIV 256 * 256 + 255 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) != (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
# /32 links
query = """
INSERT INTO LinksIn (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src AS 'src_start'
, src AS 'src_end'
, dst AS 'dst_start'
, dst AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 256) = (dst DIV 256)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 256 * 256 AS 'src_start'
, src DIV 256 * 256 + 255 AS 'src_end'
, dst AS 'dst_start'
, dst AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 65536) = (dst DIV 65536)
AND (src DIV 256) != (dst DIV 256)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 65536 * 65536 AS 'src_start'
, src DIV 65536 * 65536 + 65535 AS 'src_end'
, dst AS 'dst_start'
, dst AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) = (dst DIV 16777216)
AND (src DIV 65536) != (dst DIV 65536)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 16777216 * 16777216 AS 'src_start'
, src DIV 16777216 * 16777216 + 16777215 AS 'src_end'
, dst AS 'dst_start'
, dst AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) != (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
def deduce_LinksOut():
# /8 links
query = """
INSERT INTO LinksOut (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src DIV 16777216 * 16777216 AS 'src_start'
, src DIV 16777216 * 16777216 + 16777215 AS 'src_end'
, dst DIV 16777216 * 16777216 AS 'dst_start'
, dst DIV 16777216 * 16777216 + 16777215 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
# /16 links
query = """
INSERT INTO LinksOut (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src DIV 65536 * 65536 AS 'src_start'
, src DIV 65536 * 65536 + 65535 AS 'src_end'
, dst DIV 65536 * 65536 AS 'dst_start'
, dst DIV 65536 * 65536 + 65535 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) = (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 65536 * 65536 AS 'src_start'
, src DIV 65536 * 65536 + 65535 AS 'src_end'
, dst DIV 16777216 * 16777216 AS 'dst_start'
, dst DIV 16777216 * 16777216 + 16777215 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) != (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
# /24 links
query = """
INSERT INTO LinksOut (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src DIV 256 * 256 AS 'src_start'
, src DIV 256 * 256 + 255 AS 'src_end'
, dst DIV 256 * 256 AS 'dst_start'
, dst DIV 256 * 256 + 255 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 65536) = (dst DIV 65536)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 256 * 256 AS 'src_start'
, src DIV 256 * 256 + 255 AS 'src_end'
, dst DIV 65536 * 65536 AS 'dst_start'
, dst DIV 65536 * 65536 + 65535 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) = (dst DIV 16777216)
AND (src DIV 65536) != (dst DIV 65536)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src DIV 256 * 256 AS 'src_start'
, src DIV 256 * 256 + 255 AS 'src_end'
, dst DIV 16777216 * 16777216 AS 'dst_start'
, dst DIV 16777216 * 16777216 + 16777215 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) != (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
# /32 links
query = """
INSERT INTO LinksOut (src_start, src_end, dst_start, dst_end, port, timestamp, links)
SELECT src AS 'src_start'
, src AS 'src_end'
, dst AS 'dst_start'
, dst AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 256) = (dst DIV 256)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src AS 'src_start'
, src AS 'src_end'
, dst DIV 256 * 256 AS 'dst_start'
, dst DIV 256 * 256 + 255 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 65536) = (dst DIV 65536)
AND (src DIV 256) != (dst DIV 256)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src AS 'src_start'
, src AS 'src_end'
, dst DIV 65536 * 65536 AS 'dst_start'
, dst DIV 65536 * 65536 + 65535 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) = (dst DIV 16777216)
AND (src DIV 65536) != (dst DIV 65536)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp
UNION
SELECT src AS 'src_start'
, src AS 'src_end'
, dst DIV 16777216 * 16777216 AS 'dst_start'
, dst DIV 16777216 * 16777216 + 16777215 AS 'dst_end'
, port
, timestamp
, SUM(links)
FROM Links
WHERE (src DIV 16777216) != (dst DIV 16777216)
GROUP BY src_start, src_end, dst_start, dst_end, port, timestamp;
"""
common.db.query(query)
def preprocess_log():
clean_tables()
import_nodes()
import_links()
print("Pre-processing completed successfully.")
# If running as a script
if __name__ == "__main__":
access = dbaccess.test_database()
if access == 1049:
dbaccess.create_database()
elif access == 1045:
print("Database access denied. Check you username / password? (dbconfig_local.py)")
else:
preprocess_log()