sarahwei commited on
Commit
15e07a7
·
verified ·
1 Parent(s): c3668f2

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ language:
5
+ - en
6
+ size_categories:
7
+ - 10K<n<100K
8
+ ---
9
+
10
+ ## cyber_MITRE_tactic_CTI_dataset_v16
11
+ This dataset contains procedural descriptions from the MITRE ATT&CK framework (v16, Enterprise version). Each entry includes a text column detailing a specific attack method, while the corresponding label indicates the **tactic** associated with the procedure. The dataset is designed for text classification tasks, aimed at identifying and categorizing attack behaviors based on the described methods.
12
+
13
+ ### Data Instances
14
+ An example looks as follows:
15
+ ```
16
+ {'text': 'zwShell has established persistence by adding itself as a new service.',
17
+ 'label': '['TA0003:Persistence', 'TA0004:Privilege Escalation']'}
18
+ ```
19
+ ### Data Fields
20
+ The data fields are the same among all configurations:
21
+
22
+ - text (str): A procedure for an attack from MITRE.
23
+ - label (str): Corresponding technique in MITRE ATT&CK v16 (enterprise).
24
+ ## Curation Process
25
+ Using the Dataset You can easily download and utilize the MITRE CTI with corresponding technique with Hugging Face's datasets library:
26
+ ```python
27
+ from datasets import load_dataset
28
+
29
+ # The entire dataset is available for use
30
+ dataset = load_dataset("sarahwei/Taiwanese-Minnan-Sutiau")
31
+ print(dataset)
32
+ ```
33
+ ### Source Data
34
+ [MITRE ATT&CK enterprise version 16](https://attack.mitre.org/matrices/enterprise/)