SIABench commited on
Commit
1d6fbee
·
verified ·
1 Parent(s): 0f50b92

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -3
README.md CHANGED
@@ -1,3 +1,88 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ ---
5
+ configs:
6
+ - config_name: alert_triaging_tii
7
+ data_files:
8
+ - split: tp
9
+ path: Alert_Triaging_Dataset_TII/TP/*.json
10
+ - split: fp
11
+ path: Alert_Triaging_Dataset_TII/FP/*.json
12
+
13
+ - config_name: alert_triaging_cic
14
+ data_files:
15
+ - split: tp
16
+ path: Alert_Triaging_Dataset_CIC/TP/*.json
17
+ - split: fp
18
+ path: Alert_Triaging_Dataset_CIC/FP/*.json
19
+
20
+ - config_name: sia_dataset
21
+ data_files:
22
+ - split: train
23
+ path: SIA_Dataset/*.json
24
+
25
+ license: apache-2.0
26
+ task_categories:
27
+ - question-answering
28
+ language:
29
+ - en
30
+ tags:
31
+ - cybersecurity
32
+ - incident-analysis
33
+ - LLM-benchmark
34
+ - alert-triaging
35
+ - network-forensics
36
+ - MITRE-ATTCK
37
+ - PCAP
38
+ - SOC
39
+ pretty_name: SIABench
40
+ size_categories:
41
+ - n<1K
42
+ ---
43
+
44
+ # SIABench — Security Incident Analysis Benchmark
45
+
46
+ SIABench is a benchmark for evaluating LLMs on cybersecurity incident analysis tasks, developed at **Concordia University's Security Research Centre** in collaboration with **Defence Research and Development Canada (DRDC)**.
47
+
48
+ ## Dataset Structure
49
+
50
+ SIABench contains three sub-datasets accessible as separate configs:
51
+
52
+ | Config | Description | Splits |
53
+ |---|---|---|
54
+ | `alert_triaging_tii` | 100 alert triaging scenarios (TII-SSRC-23 source) | `tp` (50), `fp` (50) |
55
+ | `alert_triaging_cic` | Alert triaging scenarios (CIC source) | `tp`, `fp` |
56
+ | `sia_dataset` | 23 open-ended CTF forensics scenarios | `train` |
57
+
58
+ ## Loading the Dataset
59
+
60
+ ```python
61
+ from datasets import load_dataset
62
+
63
+ # Load alert triaging (TII)
64
+ tii = load_dataset("SIABench/SIA_Dataset", "alert_triaging_tii")
65
+
66
+ # Load alert triaging (CIC)
67
+ cic = load_dataset("SIABench/SIA_Dataset", "alert_triaging_cic")
68
+
69
+ # Load CTF investigation scenarios
70
+ sia = load_dataset("SIABench/SIA_Dataset", "sia_dataset")
71
+ ```
72
+
73
+ ## Scenario Structure
74
+
75
+ Each JSON file contains two blocks:
76
+
77
+ **1. `metadata`** — scenario identification
78
+ - `scenario_name`: unique ID
79
+ - `alert_type` (TII/CIC only): `"True"` (TP) or `"False"` (FP)
80
+
81
+ **2. `sia_components`** — the LLM task
82
+ - `scenario`: natural language description of the incident
83
+ - `tools_available`: CLI tools the LLM agent can invoke
84
+ - `files_available`: linked PCAP file (`capture.pcap`)
85
+ - `directory`: set to `"(directory_of_the_file)"`
86
+ - `questions`: Q&A pairs (with `adversarial_tactic` in SIA_Dataset)
87
+
88
+ ```