Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,68 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: CICIDS2017 (mirror)
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
task_categories:
|
| 6 |
+
- other
|
| 7 |
+
tags:
|
| 8 |
+
- cybersecurity
|
| 9 |
+
- intrusion-detection
|
| 10 |
+
- network-traffic
|
| 11 |
+
- pcap
|
| 12 |
+
size_categories:
|
| 13 |
+
- 10B<n<100B
|
| 14 |
+
license: other
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# CICIDS2017 (Unofficial mirror on Hugging Face)
|
| 18 |
+
|
| 19 |
+
## Dataset Summary
|
| 20 |
+
This repository provides a mirrored copy of the **CICIDS2017** dataset files (PCAPs and accompanying archives) for easier access and reproducibility in ML/security research workflows.
|
| 21 |
+
|
| 22 |
+
**Important**: This is **not** the original distribution. Please refer to the official source for authoritative documentation, updates, and terms.
|
| 23 |
+
|
| 24 |
+
## Source / Origin
|
| 25 |
+
- **Original dataset name**: CICIDS2017
|
| 26 |
+
- **Original publisher**: Canadian Institute for Cybersecurity (CIC), University of New Brunswick (UNB)
|
| 27 |
+
- **Official page**: https://www.unb.ca//cic/datasets/ids-2017.html
|
| 28 |
+
- **Original paper / description**: Iman Sharafaldin, Arash Habibi Lashkari, and Ali A. Ghorbani, “Toward Generating a New Intrusion Detection Dataset and Intrusion Traffic Characterization”, 4th International Conference on Information Systems Security and Privacy (ICISSP), Portugal, January 2018.
|
| 29 |
+
|
| 30 |
+
### What is included here
|
| 31 |
+
Files mirrored from the original distribution (as provided by CIC), e.g.:
|
| 32 |
+
- `Monday-WorkingHours.pcap`
|
| 33 |
+
- `Tuesday-WorkingHours.pcap`
|
| 34 |
+
- `Wednesday-workingHours.pcap`
|
| 35 |
+
- `Thursday-WorkingHours.pcap`
|
| 36 |
+
- `Friday-WorkingHours.pcap`
|
| 37 |
+
- `MachineLearningCSV.zip`
|
| 38 |
+
- `GeneratedLabelledFlows.zip`
|
| 39 |
+
|
| 40 |
+
> Notes:
|
| 41 |
+
> - File list may differ depending on the version you mirrored.
|
| 42 |
+
> - If you require a specific release, pin to a commit hash in this repo.
|
| 43 |
+
|
| 44 |
+
## Intended Use
|
| 45 |
+
Common use cases include (but are not limited to):
|
| 46 |
+
- Network intrusion detection research
|
| 47 |
+
- Traffic classification
|
| 48 |
+
- Feature extraction from PCAPs
|
| 49 |
+
- Benchmarking and reproduction of published results
|
| 50 |
+
|
| 51 |
+
## Data Access / How to Use
|
| 52 |
+
|
| 53 |
+
### Using `datasets` (metadata-only listing)
|
| 54 |
+
If you want to manage the dataset via the Hub, you can download the repository files directly.
|
| 55 |
+
|
| 56 |
+
### Download with `huggingface_hub`
|
| 57 |
+
```python
|
| 58 |
+
from huggingface_hub import hf_hub_download
|
| 59 |
+
|
| 60 |
+
repo_id = "bencorn/CICIDS2017"
|
| 61 |
+
filename = "Monday-WorkingHours.pcap" # example
|
| 62 |
+
|
| 63 |
+
local_path = hf_hub_download(
|
| 64 |
+
repo_id=repo_id,
|
| 65 |
+
repo_type="dataset",
|
| 66 |
+
filename=filename,
|
| 67 |
+
)
|
| 68 |
+
print(local_path)
|