19kmunz commited on
Commit
4a6c20a
1 Parent(s): 6b10448

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -2
README.md CHANGED
@@ -27,6 +27,51 @@ configs:
27
  - split: train
28
  path: data/train-*
29
  ---
30
- # Dataset Card for "iot-23-preprocessed-minimumcolumns"
 
31
 
32
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  - split: train
28
  path: data/train-*
29
  ---
30
+ # Aposemat IoT-23 - a Labeled Dataset with Malcious and Benign Iot Network Traffic
31
+ **Homepage:** [https://www.stratosphereips.org/datasets-iot23](https://www.stratosphereips.org/datasets-iot23)
32
 
33
+ This dataset contains a subset of the data from 20 captures of Malcious network traffic and 3 captures from live Benign Traffic on Internet of Things (IoT) devices. Created by Sebastian Garcia, Agustin Parmisano, & Maria Jose Erquiaga at the Avast AIC laboratory with the funding of Avast Software, this dataset is one of the best in the field for Intrusion Detection Systems (IDS) for IoT Devices [(Comparative Analysis of IoT Botnet Datasets)](https://doi.org/10.53070/bbd.1173687).
34
+
35
+ The selection of the subset was determined by [Aqeel Ahmed on Kaggle](https://www.kaggle.com/datasets/engraqeel/iot23preprocesseddata) and contains 6 million samples. The Kaggle upload, nor this one, have employed data balancing. The Kaggle card does not contain methodology to understand what criteria was used to select these samples. If you want ensure best practice, use this dataset to mock-up processing the data into a model before using the full dataset with data balancing. This will require processing the 8GB of conn.log.labelled files.
36
+
37
+ This dataset only notes if the data is Malcious or Benign. The original dataset labels the type of malcious traffic aswell. This means this processing of the dataset is only suited for binary classification.
38
+
39
+ This dataset only contains the 6 most important columns: responder's port, transport layer protocol, connection state, number of packets sent by the originator, number of IP level bytes that the originator sent, number of IP level bytes that the responder sent, and the malicious or bengin label. These columns were determined from research done by Alani & Miri in "Towards an Explainable Universal Feature Set for IoT Intrusion Detection." They determined that these columns alone give 98% accuracy. This means a light weight model can contain these column alone and still have non-trivial results. This dataset only contains 2.5k rows, as the duplicates have been dropped.
40
+ # Feature information:
41
+
42
+ All features originate from the [Zeek](https://docs.zeek.org/en/master/scripts/base/protocols/conn/main.zeek.html#type-Conn::Info) processing performed by the dataset creators. [See notes here for caviats for each column](https://docs.zeek.org/en/master/scripts/base/protocols/conn/main.zeek.html#type-Conn::Info).
43
+ <details>
44
+ <summary>Expand for feature names, descriptions, and datatypes</summary>
45
+
46
+ Name: id.resp_p
47
+ Description: The responder’s port number.
48
+ Data type: int64 - uint64 in original
49
+
50
+ Name: proto
51
+ Description: The transport layer protocol of the connection.
52
+ Data type: string - enum(unknown_transport, tcp, udp, icmp). Only TCP and UDP in subset
53
+
54
+ Name: conn_state
55
+ Description: Value indicating connection state. (S0, S1, SF, REJ, S2, S3, RSTO, RSTR, RSTOS0, RSTRH, SH, SHR, OTH)
56
+ Data type: optional string
57
+
58
+ Name: orig_pkts
59
+ Description: Number of packets that the originator sent.
60
+ Data type: optional int64 - uint64 in original
61
+
62
+ Name: orig_ip_bytes
63
+ Description: Number of IP level bytes that the originator sent.
64
+ Data type: optional int64 - uint64 in original
65
+
66
+ Name: resp_ip_bytes
67
+ Description: Number of IP level bytes that the responder sent.
68
+ Data type: optional int64 - uint64 in original
69
+
70
+ Name: label
71
+ Description: Specifies if data point is benign or malicious.
72
+ Data type: string - enum(Malicious, Benign)
73
+
74
+ </details>
75
+
76
+ ## Citation
77
+ If you are using this dataset for your research, please reference it as “Sebastian Garcia, Agustin Parmisano, & Maria Jose Erquiaga. (2020). IoT-23: A labeled dataset with malicious and benign IoT network traffic (Version 1.0.0) [Data set]. Zenodo. http://doi.org/10.5281/zenodo.4743746”