-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathREADME.txt
More file actions
38 lines (21 loc) · 893 Bytes
/
README.txt
File metadata and controls
38 lines (21 loc) · 893 Bytes
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
# CyberSecTK-Library
Cyber Security feature extraction python library
################### WLAN IOT ########################
Library function name : wiot()
################### TCP IOT #########################
Library function name : iot()
A python dictionary ip_filter {} is used to filter device specific TCP PCAP files in filtered_pcap directory.
Available Dictionary ip_filter keys
TCP_Mobile
TCP_Outlet
TCP_Assistant
TCP_Camera
TCP_Miscellaneous
Dictionary key value pair example:
ip_filter['TCP_Miscellaneous'] = "'tcp && (ip.src==192.168.1.216) || (ip.src==192.168.1.46) || (ip.src==192.168.1.84) \
|| (ip.src==192.168.1.91)'"
Please update dictionary key and value.
Example: ip_filter {}
ip_filter['TCP_Miscellaneous'] = "'tcp && (ip.src==IP_Address)'"
iot (**ip_filter)
##########################################################