File size: 1,232 Bytes
5010534 ac7cf60 5010534 | 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 | ---
license: mit
task_categories:
- text-classification
- feature-extraction
language:
- en
tags:
- cybersecurity
- threat-intelligence
- apt
- cti
- malware
- pdf
size_categories:
- 1K<n<10K
---
# APT CTI Reports Dataset
A collection of **2,710 PDF reports** on Advanced Persistent Threats (APT) and Cyber Threat Intelligence (CTI).
## Structure
```
├── apt_groups/ (937 files) - Reports attributed to specific APT groups
└── other/ (1773 files) - Multi-attribution, unattributed, and general CTI reports
```
## Filename Format
`<GROUP/TYPE>__<YEAR>__<TITLE>.pdf`
**Examples:**
- `APT28__2019__Fancy_Bear_Campaign.pdf`
- `MULTI__2023__Global_Threat_Report.pdf`
- `UNATTR__2022__Unknown_Ransomware.pdf`
- `GENERAL__2023__Industry_Overview.pdf`
## Categories
| Prefix | Description |
|--------|-------------|
| `<APT_NAME>` | Reports attributed to specific threat actor |
| `MULTI` | Reports covering multiple threat actors |
| `UNATTR` | Threat reports without attribution |
| `GENERAL` | General CTI and industry reports |
## Usage
```python
from huggingface_hub import snapshot_download
snapshot_download(repo_id="hackerman700000/apt-cti-reports", repo_type="dataset")
```
|