| license: mit | |
| task_categories: | |
| - text-classification | |
| - feature-extraction | |
| language: | |
| - en | |
| tags: | |
| - cybersecurity | |
| - threat-intelligence | |
| - apt | |
| - cti | |
| - malware | |
| 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") | |
| ``` | |