SIABench commited on
Commit
3bde7f3
·
verified ·
1 Parent(s): 842c470

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -1,94 +1,100 @@
1
- ---
2
- license: apache-2.0
3
- ---
4
- configs:
5
- - config_name: alert_triaging_tii
6
- data_files: []
7
-
8
- - config_name: alert_triaging_cic
9
- data_files: []
10
-
11
- - config_name: sia_dataset
12
- data_files: []
13
-
14
- license: apache-2.0
15
- task_categories:
16
- - question-answering
17
- - text-classification
18
- language:
19
- - en
20
- tags:
21
- - cybersecurity
22
- - incident-analysis
23
- - LLM-benchmark
24
- - alert-triaging
25
- - network-forensics
26
- - MITRE-ATTCK
27
- - PCAP
28
- - SOC
29
- pretty_name: SIABench
30
- size_categories:
31
- - n<1K
32
- ---
33
- task_categories:
34
- - question-answering
35
- - text-classification
36
- language:
37
- - en
38
- tags:
39
- - cybersecurity
40
- - incident-analysis
41
- - LLM-benchmark
42
- - alert-triaging
43
- - network-forensics
44
- - MITRE-ATTCK
45
- - PCAP
46
- - SOC
47
- pretty_name: SIABENCH
48
- size_categories:
49
- - n<1K
50
- ---
51
-
52
- # SIABENCH — Security Incident Analysis Benchmark
53
-
54
- 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)**, published at **PST 2025**.
55
-
56
- ## Dataset Structure
57
-
58
- SIABENCH contains three sub-datasets accessible as separate configs:
59
-
60
- | Config | Description | Splits |
61
- |---|---|---|
62
- | `alert_triaging_tii` | 100 alert triaging scenarios (TII-SSRC-23 source) | `tp` (50), `fp` (50) |
63
- | `alert_triaging_cic` | Alert triaging scenarios (CIC source) | `tp`, `fp` |
64
- | `sia_dataset` | 23 open-ended CTF forensics scenarios | `train` |
65
-
66
- ## Loading the Dataset
67
-
68
- ```python
69
- from datasets import load_dataset
70
-
71
- # Load alert triaging (TII)
72
- tii = load_dataset("SIABench/SIA_Dataset", "alert_triaging_tii")
73
-
74
- # Load alert triaging (CIC)
75
- cic = load_dataset("SIABench/SIA_Dataset", "alert_triaging_cic")
76
-
77
- # Load CTF investigation scenarios
78
- sia = load_dataset("SIABench/SIA_Dataset", "sia_dataset")
79
- ```
80
-
81
- ## Scenario Structure
82
-
83
- Each JSON file contains two blocks:
84
-
85
- **1. `metadata`** — scenario identification
86
- - `scenario_name`: unique ID
87
- - `alert_type` (TII/CIC only): `"True"` (TP) or `"False"` (FP)
88
-
89
- **2. `sia_components`** the LLM task
90
- - `scenario`: natural language description of the incident
91
- - `tools_available`: CLI tools the LLM agent can invoke
92
- - `files_available`: linked PCAP file (`capture.pcap`)
93
- - `directory`: set to `"(directory_of_the_file)"`
94
- - `questions`: Q&A pairs (with `adversarial_tactic` in SIA_Dataset)
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: alert_triaging_tii
4
+ data_files:
5
+ - split: tp
6
+ path: data/alert_triaging_tii_tp.jsonl
7
+ - split: fp
8
+ path: data/alert_triaging_tii_fp.jsonl
9
+
10
+ - config_name: alert_triaging_cic
11
+ data_files:
12
+ - split: test
13
+ path: data/alert_triaging_cic_test.jsonl
14
+
15
+ - config_name: sia_dataset
16
+ data_files:
17
+ - split: test
18
+ path: data/sia_dataset_test.jsonl
19
+
20
+ license: apache-2.0
21
+ task_categories:
22
+ - question-answering
23
+ - text-classification
24
+ language:
25
+ - en
26
+ tags:
27
+ - cybersecurity
28
+ - incident-analysis
29
+ - LLM-benchmark
30
+ - alert-triaging
31
+ - network-forensics
32
+ - MITRE-ATTCK
33
+ - PCAP
34
+ - SOC
35
+ pretty_name: SIABench
36
+ size_categories:
37
+ - n<1K
38
+ ---
39
+ task_categories:
40
+ - question-answering
41
+ - text-classification
42
+ language:
43
+ - en
44
+ tags:
45
+ - cybersecurity
46
+ - incident-analysis
47
+ - LLM-benchmark
48
+ - alert-triaging
49
+ - network-forensics
50
+ - MITRE-ATTCK
51
+ - PCAP
52
+ - SOC
53
+ pretty_name: SIABENCH
54
+ size_categories:
55
+ - n<1K
56
+ ---
57
+
58
+ # SIABENCH Security Incident Analysis Benchmark
59
+
60
+ 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)**, published at **PST 2025**.
61
+
62
+ ## Dataset Structure
63
+
64
+ SIABENCH contains three sub-datasets accessible as separate configs:
65
+
66
+ | Config | Description | Splits |
67
+ |---|---|---|
68
+ | `alert_triaging_tii` | 100 alert triaging scenarios (TII-SSRC-23 source) | `tp` (50), `fp` (50) |
69
+ | `alert_triaging_cic` | Alert triaging scenarios (CIC source) | `tp`, `fp` |
70
+ | `sia_dataset` | 23 open-ended CTF forensics scenarios | `train` |
71
+
72
+ ## Loading the Dataset
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ # Load alert triaging (TII)
78
+ tii = load_dataset("SIABench/SIA_Dataset", "alert_triaging_tii")
79
+
80
+ # Load alert triaging (CIC)
81
+ cic = load_dataset("SIABench/SIA_Dataset", "alert_triaging_cic")
82
+
83
+ # Load CTF investigation scenarios
84
+ sia = load_dataset("SIABench/SIA_Dataset", "sia_dataset")
85
+ ```
86
+
87
+ ## Scenario Structure
88
+
89
+ Each JSON file contains two blocks:
90
+
91
+ **1. `metadata`** scenario identification
92
+ - `scenario_name`: unique ID
93
+ - `alert_type` (TII/CIC only): `"True"` (TP) or `"False"` (FP)
94
+
95
+ **2. `sia_components`** — the LLM task
96
+ - `scenario`: natural language description of the incident
97
+ - `tools_available`: CLI tools the LLM agent can invoke
98
+ - `files_available`: linked PCAP file (`capture.pcap`)
99
+ - `directory`: set to `"(directory_of_the_file)"`
100
+ - `questions`: Q&A pairs (with `adversarial_tactic` in SIA_Dataset)
convert_to_jsonl.ipynb ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {},
6
+ "source": [
7
+ "# Convert SIABENCH JSONs to JSONL for HuggingFace\n",
8
+ "Flattens the nested `scenarios` structure into one JSON object per line.\n",
9
+ "Output goes into a `data/` folder to upload alongside your dataset.\n",
10
+ "\n",
11
+ "> Run this from your project root where `SIABench-main/` lives."
12
+ ]
13
+ },
14
+ {
15
+ "cell_type": "code",
16
+ "execution_count": 1,
17
+ "id": "b78a1dd7",
18
+ "metadata": {},
19
+ "outputs": [
20
+ {
21
+ "name": "stdout",
22
+ "output_type": "stream",
23
+ "text": [
24
+ "Config loaded. Output folder: F:\\Downloads\\MAIN_SIA_BENCH\\data\n"
25
+ ]
26
+ }
27
+ ],
28
+ "source": [
29
+ "import json\n",
30
+ "import os\n",
31
+ "from pathlib import Path\n",
32
+ "\n",
33
+ "BASE_DIR = Path('SIABench-main')\n",
34
+ "OUT_DIR = Path('data') # Will be uploaded to HuggingFace root\n",
35
+ "OUT_DIR.mkdir(exist_ok=True)\n",
36
+ "\n",
37
+ "# ── Config map: output filename → list of (split, source_folder) ──\n",
38
+ "CONFIGS = {\n",
39
+ " 'alert_triaging_tii': [\n",
40
+ " ('tp', BASE_DIR / 'Alert_Triaging_Dataset' / 'Alert_Triaging_Dataset_TII' / 'TP'),\n",
41
+ " ('fp', BASE_DIR / 'Alert_Triaging_Dataset' / 'Alert_Triaging_Dataset_TII' / 'FP'),\n",
42
+ " ],\n",
43
+ " 'alert_triaging_cic': [\n",
44
+ " ('test', BASE_DIR / 'Alert_Triaging_Dataset' / 'Alert_Triaging_Dataset_CIC'),\n",
45
+ " ],\n",
46
+ " 'sia_dataset': [\n",
47
+ " ('test', BASE_DIR / 'SIA_Dataset'),\n",
48
+ " ],\n",
49
+ "}\n",
50
+ "\n",
51
+ "print('Config loaded. Output folder:', OUT_DIR.resolve())"
52
+ ]
53
+ },
54
+ {
55
+ "cell_type": "code",
56
+ "execution_count": 2,
57
+ "id": "f4614351",
58
+ "metadata": {},
59
+ "outputs": [
60
+ {
61
+ "name": "stdout",
62
+ "output_type": "stream",
63
+ "text": [
64
+ "Flatten functions defined.\n"
65
+ ]
66
+ }
67
+ ],
68
+ "source": [
69
+ "def flatten_alert_triaging(meta, comp):\n",
70
+ " \"\"\"Flatten TII/CIC scenario into a single dict.\"\"\"\n",
71
+ " return {\n",
72
+ " 'scenario_name': meta.get('scenario_name', ''),\n",
73
+ " 'alert_name': meta.get('alert_name', ''),\n",
74
+ " 'alert_type': meta.get('alert_type', ''),\n",
75
+ " 'scenario': comp.get('scenario', ''),\n",
76
+ " 'alert': comp.get('alert', ''),\n",
77
+ " 'tools_available': comp.get('tools_available', []),\n",
78
+ " 'files_available': comp.get('files_available', ''),\n",
79
+ " 'instructions': comp.get('instructions', ''),\n",
80
+ " 'directory': comp.get('directory', ''),\n",
81
+ " 'questions': [\n",
82
+ " {'question': q.get('question', ''), 'answer': q.get('answer', '')}\n",
83
+ " for q in comp.get('questions', [])\n",
84
+ " ],\n",
85
+ " }\n",
86
+ "\n",
87
+ "def flatten_sia_dataset(meta, comp):\n",
88
+ " \"\"\"Flatten SIA_Dataset CTF scenario into a single dict.\"\"\"\n",
89
+ " return {\n",
90
+ " 'scenario_name': meta.get('scenario_name', ''),\n",
91
+ " 'source': meta.get('source', ''),\n",
92
+ " 'last_accessed': meta.get('last_accessed', ''),\n",
93
+ " 'writeup': meta.get('writeup', ''),\n",
94
+ " 'scenario': comp.get('scenario', ''),\n",
95
+ " 'task_category': comp.get('task_category', ''),\n",
96
+ " 'complexity': comp.get('complexity', ''),\n",
97
+ " 'tools_available': comp.get('tools_available', []),\n",
98
+ " 'files_available': comp.get('files_available', ''),\n",
99
+ " 'instructions': comp.get('instructions', ''),\n",
100
+ " 'directory': comp.get('directory', ''),\n",
101
+ " 'questions': [\n",
102
+ " {\n",
103
+ " 'question': q.get('question', ''),\n",
104
+ " 'answer': q.get('answer', ''),\n",
105
+ " 'adversarial_tactic': q.get('adversarial_tactic', ''),\n",
106
+ " }\n",
107
+ " for q in comp.get('questions', [])\n",
108
+ " ],\n",
109
+ " }\n",
110
+ "\n",
111
+ "print('Flatten functions defined.')"
112
+ ]
113
+ },
114
+ {
115
+ "cell_type": "code",
116
+ "execution_count": 3,
117
+ "id": "05c92cc6",
118
+ "metadata": {},
119
+ "outputs": [
120
+ {
121
+ "name": "stdout",
122
+ "output_type": "stream",
123
+ "text": [
124
+ " ✓ alert_triaging_tii_tp.jsonl — 100 records\n",
125
+ " ✓ alert_triaging_tii_fp.jsonl — 50 records\n",
126
+ " ✓ alert_triaging_cic_test.jsonl — 35 records\n",
127
+ " ✓ sia_dataset_test.jsonl — 25 records\n",
128
+ "\n",
129
+ "Done!\n"
130
+ ]
131
+ }
132
+ ],
133
+ "source": [
134
+ "stats = {}\n",
135
+ "\n",
136
+ "for config_name, splits in CONFIGS.items():\n",
137
+ " stats[config_name] = {}\n",
138
+ " is_alert = config_name.startswith('alert_triaging')\n",
139
+ "\n",
140
+ " for split_name, folder in splits:\n",
141
+ " if not folder.exists():\n",
142
+ " print(f'WARNING: {folder} not found, skipping.')\n",
143
+ " continue\n",
144
+ "\n",
145
+ " out_file = OUT_DIR / f'{config_name}_{split_name}.jsonl'\n",
146
+ " count = 0\n",
147
+ "\n",
148
+ " with open(out_file, 'w', encoding='utf-8') as out_f:\n",
149
+ " for json_file in sorted(folder.glob('*.json')):\n",
150
+ " with open(json_file, 'r', encoding='utf-8') as f:\n",
151
+ " data = json.load(f)\n",
152
+ "\n",
153
+ " scenarios = data.get('scenarios', [])\n",
154
+ " meta = next((s.get('metadata') or {} for s in scenarios if 'metadata' in s), {})\n",
155
+ " comp = next((s.get('sia_components') or {} for s in scenarios if 'sia_components' in s), {})\n",
156
+ "\n",
157
+ " if is_alert:\n",
158
+ " record = flatten_alert_triaging(meta, comp)\n",
159
+ " else:\n",
160
+ " record = flatten_sia_dataset(meta, comp)\n",
161
+ "\n",
162
+ " out_f.write(json.dumps(record, ensure_ascii=False) + '\\n')\n",
163
+ " count += 1\n",
164
+ "\n",
165
+ " stats[config_name][split_name] = count\n",
166
+ " print(f' ✓ {out_file.name} — {count} records')\n",
167
+ "\n",
168
+ "print('\\nDone!')"
169
+ ]
170
+ },
171
+ {
172
+ "cell_type": "code",
173
+ "execution_count": 4,
174
+ "id": "98ea98c4",
175
+ "metadata": {},
176
+ "outputs": [
177
+ {
178
+ "name": "stdout",
179
+ "output_type": "stream",
180
+ "text": [
181
+ "══════════════════════════════════════════════════\n",
182
+ "JSONL EXPORT SUMMARY\n",
183
+ "══════════════════════════════════════════════════\n",
184
+ "\n",
185
+ "alert_triaging_tii:\n",
186
+ " tp: 100 records → data/alert_triaging_tii_tp.jsonl\n",
187
+ " fp: 50 records → data/alert_triaging_tii_fp.jsonl\n",
188
+ "\n",
189
+ "alert_triaging_cic:\n",
190
+ " test: 35 records → data/alert_triaging_cic_test.jsonl\n",
191
+ "\n",
192
+ "sia_dataset:\n",
193
+ " test: 25 records → data/sia_dataset_test.jsonl\n",
194
+ "\n",
195
+ "Files in data/ folder:\n",
196
+ " alert_triaging_cic_test.jsonl (40.2 kB)\n",
197
+ " alert_triaging_tii_fp.jsonl (50.2 kB)\n",
198
+ " alert_triaging_tii_tp.jsonl (100.3 kB)\n",
199
+ " sia_dataset_test.jsonl (102.7 kB)\n",
200
+ "\n",
201
+ "Next steps:\n",
202
+ " 1. Delete SIA_Dataset.py from HuggingFace repo\n",
203
+ " 2. Upload the data/ folder to the ROOT of HuggingFace repo\n",
204
+ " 3. Upload the updated README.md\n"
205
+ ]
206
+ }
207
+ ],
208
+ "source": [
209
+ "# ── Summary ──\n",
210
+ "print('═' * 50)\n",
211
+ "print('JSONL EXPORT SUMMARY')\n",
212
+ "print('═' * 50)\n",
213
+ "for config, splits in stats.items():\n",
214
+ " print(f'\\n{config}:')\n",
215
+ " for split, count in splits.items():\n",
216
+ " print(f' {split}: {count} records → data/{config}_{split}.jsonl')\n",
217
+ "\n",
218
+ "print('\\nFiles in data/ folder:')\n",
219
+ "for f in sorted(OUT_DIR.iterdir()):\n",
220
+ " print(f' {f.name} ({f.stat().st_size / 1024:.1f} kB)')\n",
221
+ "\n",
222
+ "print('\\nNext steps:')\n",
223
+ "print(' 1. Delete SIA_Dataset.py from HuggingFace repo')\n",
224
+ "print(' 2. Upload the data/ folder to the ROOT of HuggingFace repo')\n",
225
+ "print(' 3. Upload the updated README.md')"
226
+ ]
227
+ }
228
+ ],
229
+ "metadata": {
230
+ "kernelspec": {
231
+ "display_name": "Python 3",
232
+ "language": "python",
233
+ "name": "python3"
234
+ },
235
+ "language_info": {
236
+ "name": "python",
237
+ "version": "3.10.0"
238
+ }
239
+ },
240
+ "nbformat": 4,
241
+ "nbformat_minor": 5
242
+ }
data/alert_triaging_cic_test.jsonl ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"scenario_name": "ds1", "alert_name": "false_alert_1", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-12:48:48.967271 [**] [1:1546:18] \"SERVER-WEBAPP Cisco HTTP double-percent DOS attempt\" [**] [Classification: Web Application Attack] [Priority: 1] {TCP} 192.168.10.9:4200 -> 151.101.208.166:80", "alert": "07/03-12:48:48.967271 [**] [1:1546:18] \"SERVER-WEBAPP Cisco HTTP double-percent DOS attempt\" [**] [Classification: Web Application Attack] [Priority: 1] {TCP} 192.168.10.9:4200 -> 151.101.208.166:80", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
2
+ {"scenario_name": "monday_pri_2_2", "alert_name": "false_alert_2", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:33:03.601654 [**] [1:1200:17] \"INDICATOR-COMPROMISE Invalid URL\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 104.88.21.85:80 -> 192.168.10.25:49383", "alert": "07/03-08:33:03.601654 [**] [1:1200:17] \"INDICATOR-COMPROMISE Invalid URL\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 104.88.21.85:80 -> 192.168.10.25:49383", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
3
+ {"scenario_name": "monday_pri_2_3", "alert_name": "false_alert_3", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:34:11.504893 [**] [1:385:8] \"PROTOCOL-ICMP traceroute\" [**] [Classification: Attempted Information Leak] [Priority: 2] {ICMP} 192.168.10.14 -> 13.107.4.50", "alert": "07/03-08:34:11.504893 [**] [1:385:8] \"PROTOCOL-ICMP traceroute\" [**] [Classification: Attempted Information Leak] [Priority: 2] {ICMP} 192.168.10.14 -> 13.107.4.50", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
4
+ {"scenario_name": "monday_pri_2_4", "alert_name": "false_alert_4", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:39:26.328394 [**] [1:649:15] \"INDICATOR-SHELLCODE x86 setgid 0\" [**] [Classification: A system call was detected] [Priority: 2] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "alert": "07/03-08:39:26.328394 [**] [1:649:15] \"INDICATOR-SHELLCODE x86 setgid 0\" [**] [Classification: A system call was detected] [Priority: 2] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
5
+ {"scenario_name": "monday_pri_2_5", "alert_name": "false_alert_5", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:45:57.649802 [**] [1:895:19] \"SERVER-WEBAPP redirect access\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 192.168.10.9:62876 -> 54.164.201.153:80", "alert": "07/03-08:45:57.649802 [**] [1:895:19] \"SERVER-WEBAPP redirect access\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 192.168.10.9:62876 -> 54.164.201.153:80", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
6
+ {"scenario_name": "monday_pri_2_6", "alert_name": "false_alert_6", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:47:50.612239 [**] [1:1010:21] \"SERVER-IIS encoding access\" [**] [Classification: Access to a potentially vulnerable web application] [Priority: 2] {TCP} 192.168.10.9:63310 -> 68.67.178.111:80", "alert": "07/03-08:47:50.612239 [**] [1:1010:21] \"SERVER-IIS encoding access\" [**] [Classification: Access to a potentially vulnerable web application] [Priority: 2] {TCP} 192.168.10.9:63310 -> 68.67.178.111:80", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
7
+ {"scenario_name": "monday_pri_2_7", "alert_name": "false_alert_7", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-09:42:13.967956 [**] [1:1200:17] \"INDICATOR-COMPROMISE Invalid URL\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 104.88.86.189:80 -> 192.168.10.25:53233", "alert": "07/03-09:42:13.967956 [**] [1:1200:17] \"INDICATOR-COMPROMISE Invalid URL\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 104.88.86.189:80 -> 192.168.10.25:53233", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
8
+ {"scenario_name": "monday_pri_2_8", "alert_name": "false_alert_8", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-10:25:34.417585 [**] [1:1560:14] \"SERVER-WEBAPP /doc/ access\" [**] [Classification: Access to a potentially vulnerable web application] [Priority: 2] {TCP} 192.168.10.9:2883 -> 23.194.182.116:80", "alert": "07/03-10:25:34.417585 [**] [1:1560:14] \"SERVER-WEBAPP /doc/ access\" [**] [Classification: Access to a potentially vulnerable web application] [Priority: 2] {TCP} 192.168.10.9:2883 -> 23.194.182.116:80", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
9
+ {"scenario_name": "monday_pri_2_9", "alert_name": "false_alert_9", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-14:04:29.612732 [**] [1:2667:14] \"SERVER-IIS ping.asp access\" [**] [Classification: Access to a potentially vulnerable web application] [Priority: 2] {TCP} 192.168.10.17:50598 -> 34.205.104.161:80", "alert": "07/03-14:04:29.612732 [**] [1:2667:14] \"SERVER-IIS ping.asp access\" [**] [Classification: Access to a potentially vulnerable web application] [Priority: 2] {TCP} 192.168.10.17:50598 -> 34.205.104.161:80", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
10
+ {"scenario_name": "monday_pri_3", "alert_name": "false_alert_10", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:35:53.528107 [**] [1:648:18] \"INDICATOR-SHELLCODE x86 NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "alert": "07/03-08:35:53.528107 [**] [1:648:18] \"INDICATOR-SHELLCODE x86 NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
11
+ {"scenario_name": "monday_pri_3_1", "alert_name": "false_alert_11", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-16:01:23.216669 [**] [122:23:1] \"(port_scan) UDP filtered portsweep\" [**] [Priority: 3] {UDP} 192.168.10.12:8612 -> 192.168.10.255:8610", "alert": "07/03-16:01:23.216669 [**] [122:23:1] \"(port_scan) UDP filtered portsweep\" [**] [Priority: 3] {UDP} 192.168.10.12:8612 -> 192.168.10.255:8610", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
12
+ {"scenario_name": "ea1", "alert_name": "false_alert_12", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/07-09:08:00.277330 [**] [1:40063:5] \"OS-LINUX Linux Kernel Challenge ACK provocation attempt\" [**] [Classification: Attempted Administrator Privilege Gain] [Priority: 1] {TCP} 192.168.10.25:50189 -> 23.46.180.139:443", "alert": "07/07-09:08:00.277330 [**] [1:40063:5] \"OS-LINUX Linux Kernel Challenge ACK provocation attempt\" [**] [Classification: Attempted Administrator Privilege Gain] [Priority: 1] {TCP} 192.168.10.25:50189 -> 23.46.180.139:443", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
13
+ {"scenario_name": "monday_pri_3_2", "alert_name": "false_alert_13", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-15:51:04.710387 [**] [122:3:1] \"(port_scan) TCP portsweep\" [**] [Priority: 3] {TCP} 23.203.82.243:443 -> 192.168.10.17:51951", "alert": "07/03-15:51:04.710387 [**] [122:3:1] \"(port_scan) TCP portsweep\" [**] [Priority: 3] {TCP} 23.203.82.243:443 -> 192.168.10.17:51951", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
14
+ {"scenario_name": "monday_pri_3_3", "alert_name": "false_alert_14", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-15:50:50.319339 [**] [122:3:1] \"(port_scan) TCP portsweep\" [**] [Priority: 3] {TCP} 192.168.10.25:64668 -> 151.101.20.207:443", "alert": "07/03-15:50:50.319339 [**] [122:3:1] \"(port_scan) TCP portsweep\" [**] [Priority: 3] {TCP} 192.168.10.25:64668 -> 151.101.20.207:443", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
15
+ {"scenario_name": "monday_pri_3_4", "alert_name": "false_alert_15", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-15:37:54.031284 [**] [137:1:1] \"(ssl) invalid client HELLO after server HELLO detected\" [**] [Priority: 3] {TCP} 192.168.10.25:63605 -> 192.243.232.58:443", "alert": "07/03-15:37:54.031284 [**] [137:1:1] \"(ssl) invalid client HELLO after server HELLO detected\" [**] [Priority: 3] {TCP} 192.168.10.25:63605 -> 192.243.232.58:443", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
16
+ {"scenario_name": "monday_pri_3_5", "alert_name": "false_alert_16", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-15:22:56.432352 [**] [122:3:1] \"(port_scan) TCP portsweep\" [**] [Priority: 3] {TCP} 192.168.10.25:61810 -> 81.90.96.10:443", "alert": "07/03-15:22:56.432352 [**] [122:3:1] \"(port_scan) TCP portsweep\" [**] [Priority: 3] {TCP} 192.168.10.25:61810 -> 81.90.96.10:443", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
17
+ {"scenario_name": "monday_pri_3_6", "alert_name": "false_alert_17", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-10:04:59.114288 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 192.168.10.3:389 -> 192.168.10.25:56155", "alert": "07/03-10:04:59.114288 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 192.168.10.3:389 -> 192.168.10.25:56155", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
18
+ {"scenario_name": "monday_pri_3_7", "alert_name": "false_alert_18", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:28:51.366471 [**] [122:23:1] \"(port_scan) UDP filtered portsweep\" [**] [Priority: 3] {UDP} 192.168.10.5:54077 -> 192.168.10.3:53", "alert": "07/03-08:28:51.366471 [**] [122:23:1] \"(port_scan) UDP filtered portsweep\" [**] [Priority: 3] {UDP} 192.168.10.5:54077 -> 192.168.10.3:53", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
19
+ {"scenario_name": "monday_pri_4", "alert_name": "false_alert_19", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:39:59.907940 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "alert": "07/03-08:39:59.907940 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
20
+ {"scenario_name": "monday_pri_5", "alert_name": "false_alert_20", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:41:16.831986 [**] [1:648:18] \"INDICATOR-SHELLCODE x86 NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "alert": "07/03-08:41:16.831986 [**] [1:648:18] \"INDICATOR-SHELLCODE x86 NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
21
+ {"scenario_name": "monday_pri_6", "alert_name": "false_alert_21", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-09:18:02.399625 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 104.27.145.213:80 -> 192.168.10.51:54506", "alert": "07/03-09:18:02.399625 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 104.27.145.213:80 -> 192.168.10.51:54506", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
22
+ {"scenario_name": "monday_pri_8", "alert_name": "false_alert_22", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-13:45:33.806533 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 104.24.24.85:80 -> 192.168.10.17:38619", "alert": "07/03-13:45:33.806533 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 104.24.24.85:80 -> 192.168.10.17:38619", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
23
+ {"scenario_name": "if1", "alert_name": "false_alert_23", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/07-08:04:51.819436 [**] [1:1201:13] \"INDICATOR-COMPROMISE 403 Forbidden\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 23.15.4.9:80 -> 192.168.10.14:49536", "alert": "07/07-08:04:51.819436 [**] [1:1201:13] \"INDICATOR-COMPROMISE 403 Forbidden\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 23.15.4.9:80 -> 192.168.10.14:49536", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
24
+ {"scenario_name": "monday_pri_9", "alert_name": "false_alert_24", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-14:04:29.757515 [**] [1:1390:17] \"INDICATOR-SHELLCODE x86 inc ebx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 52.84.143.247:80 -> 192.168.10.17:58791", "alert": "07/03-14:04:29.757515 [**] [1:1390:17] \"INDICATOR-SHELLCODE x86 inc ebx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 52.84.143.247:80 -> 192.168.10.17:58791", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
25
+ {"scenario_name": "f1", "alert_name": "true_alert_1", "alert_type": "True", "scenario": "The soc team got an alert from the IDS. The alert is: 07/04-09:20:01.417087 [**] [1:491:15] \"PROTOCOL-FTP Bad login\" [**] [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 192.168.10.50:21 -> 172.16.0.1:60100", "alert": "07/04-09:20:01.417087 [**] [1:491:15] \"PROTOCOL-FTP Bad login\" [**] [Classification: Potentially Bad Traffic] [Priority: 2] {TCP} 192.168.10.50:21 -> 172.16.0.1:60100", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "true positive"}]}
26
+ {"scenario_name": "s1", "alert_name": "true_alert_2", "alert_type": "True", "scenario": "The soc team got an alert from the IDS. The alert is: 07/07-13:55:01.154623 [**] [122:1:1] '(port_scan) TCP portscan' [**] [Priority: 3] {TCP} 172.16.0.1:41140 -> 192.168.10.50:5900", "alert": "07/07-13:55:01.154623 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 172.16.0.1:41140 -> 192.168.10.50:5900", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "true positive"}]}
27
+ {"scenario_name": "s2", "alert_name": "true_alert_3", "alert_type": "True", "scenario": "The soc team got an alert from the IDS. The alert is: 07/07-14:08:01.734199 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 172.16.0.1:43959 -> 192.168.10.50:587", "alert": "07/07-14:08:01.734199 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 172.16.0.1:43959 -> 192.168.10.50:587", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "true positive"}]}
28
+ {"scenario_name": "s3", "alert_name": "true_alert_4", "alert_type": "True", "scenario": "The soc team got an alert from the IDS. The alert is: 07/07-14:22:02.313683 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 172.16.0.1:35609 -> 192.168.10.50:135", "alert": "07/07-14:22:02.313683 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 172.16.0.1:35609 -> 192.168.10.50:135", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "true positive"}]}
29
+ {"scenario_name": "sh1", "alert_name": "true_alert_5", "alert_type": "True", "scenario": "The soc team got an alert from the IDS. The alert is: 07/04-14:07:21.893671 [**] [1:1325:14] \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 172.16.0.1:52054 -> 192.168.10.50:22", "alert": "07/04-14:07:21.893671 [**] [1:1325:14] \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 172.16.0.1:52054 -> 192.168.10.50:22", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "true positive"}]}
30
+ {"scenario_name": "lg1", "alert_name": "false_alert_25", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-09:10:05.894236 [**] [1:1675:8] \"SERVER-ORACLE misparsed login response\" [**] [Classification: An attempted login using a suspicious username was detected] [Priority: 2] {TCP} 195.88.55.95:80 -> 192.168.10.9:65480", "alert": "07/03-09:10:05.894236 [**] [1:1675:8] \"SERVER-ORACLE misparsed login response\" [**] [Classification: An attempted login using a suspicious username was detected] [Priority: 2] {TCP} 195.88.55.95:80 -> 192.168.10.9:65480", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
31
+ {"scenario_name": "fs1", "alert_name": "false_alert_26", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/07-08:00:50.818009 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 192.168.10.3:88 -> 192.168.10.5:49175", "alert": "07/07-08:00:50.818009 [**] [122:1:1] \"(port_scan) TCP portscan\" [**] [Priority: 3] {TCP} 192.168.10.3:88 -> 192.168.10.5:49175", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
32
+ {"scenario_name": "monday_pri_1", "alert_name": "false_alert_27", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:20:06.886845 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 104.27.144.213:80 -> 192.168.10.16:37956", "alert": "07/03-08:20:06.886845 [**] [1:1394:17] \"INDICATOR-SHELLCODE x86 inc ecx NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 104.27.144.213:80 -> 192.168.10.16:37956", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
33
+ {"scenario_name": "monday_pri_2", "alert_name": "false_alert_28", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:34:00.503373 [**] [1:648:18] \"INDICATOR-SHELLCODE x86 NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "alert": "07/03-08:34:00.503373 [**] [1:648:18] \"INDICATOR-SHELLCODE x86 NOOP\" [**] [Classification: Executable code was detected] [Priority: 1] {TCP} 13.107.4.50:80 -> 192.168.10.15:49647", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
34
+ {"scenario_name": "monday_pri_2_1", "alert_name": "false_alert_29", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-08:09:42.792575 [**] [1:1201:13] \"INDICATOR-COMPROMISE 403 Forbidden\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 165.254.0.104:80 -> 192.168.10.14:49961", "alert": "07/03-08:09:42.792575 [**] [1:1201:13] \"INDICATOR-COMPROMISE 403 Forbidden\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 165.254.0.104:80 -> 192.168.10.14:49961", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
35
+ {"scenario_name": "monday_pri_2_10", "alert_name": "false_alert_30", "alert_type": "False", "scenario": "The soc team got an alert from the IDS. The alert is: 07/03-13:40:10.893145 [**] [1:853:17] \"SERVER-WEBAPP wrap access\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 192.168.10.14:57473 -> 125.1.77.19:80", "alert": "07/03-13:40:10.893145 [**] [1:853:17] \"SERVER-WEBAPP wrap access\" [**] [Classification: Attempted Information Leak] [Priority: 2] {TCP} 192.168.10.14:57473 -> 125.1.77.19:80", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "\nYou are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
data/alert_triaging_tii_fp.jsonl ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"scenario_name": "dp_235492", "alert_name": "dp_235492", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T03:43:35.327264+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T03:43:35.327264+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
2
+ {"scenario_name": "dp_235502", "alert_name": "dp_235502", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T04:14:59.548769+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T04:14:59.548769+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
3
+ {"scenario_name": "dp_235537", "alert_name": "dp_235537", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T03:45:09.696540+0000 \"SURICATA STREAM Packet with invalid timestamp\" {TCP} 192.168.1.70:40050 -> 192.168.1.3:64738", "alert": "1970-01-01T03:45:09.696540+0000 \"SURICATA STREAM Packet with invalid timestamp\" {TCP} 192.168.1.70:40050 -> 192.168.1.3:64738", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
4
+ {"scenario_name": "dp_235538", "alert_name": "dp_235538", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T03:45:09.696901+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.3:64738 -> 192.168.1.70:40050", "alert": "1970-01-01T03:45:09.696901+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.3:64738 -> 192.168.1.70:40050", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
5
+ {"scenario_name": "dp_235767", "alert_name": "dp_235767", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T03:32:11.100215+0000 \"SURICATA UDPv6 invalid checksum\" {UDP} fe80:0000:0000:0000:0201:01ff:fe4f:78d3:5353 -> ff02:0000:0000:0000:0000:0000:0000:00fb:5353", "alert": "1970-01-01T03:32:11.100215+0000 \"SURICATA UDPv6 invalid checksum\" {UDP} fe80:0000:0000:0000:0201:01ff:fe4f:78d3:5353 -> ff02:0000:0000:0000:0000:0000:0000:00fb:5353", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
6
+ {"scenario_name": "dp_235996", "alert_name": "dp_235996", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:42:27.776303+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:35900 -> 192.168.1.70:8080", "alert": "1970-01-01T00:42:27.776303+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:35900 -> 192.168.1.70:8080", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
7
+ {"scenario_name": "dp_236008", "alert_name": "dp_236008", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:52:42.044159+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:46582", "alert": "1970-01-01T00:52:42.044159+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:46582", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
8
+ {"scenario_name": "dp_236015", "alert_name": "dp_236015", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:54:20.534904+0000 \"SURICATA UDPv6 invalid checksum\" {UDP} fe80:0000:0000:0000:0201:01ff:fe4f:78d3:5353 -> ff02:0000:0000:0000:0000:0000:0000:00fb:5353", "alert": "1970-01-01T00:54:20.534904+0000 \"SURICATA UDPv6 invalid checksum\" {UDP} fe80:0000:0000:0000:0201:01ff:fe4f:78d3:5353 -> ff02:0000:0000:0000:0000:0000:0000:00fb:5353", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
9
+ {"scenario_name": "dp_236042", "alert_name": "dp_236042", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:43:32.740109+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:59052", "alert": "1970-01-01T00:43:32.740109+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:59052", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
10
+ {"scenario_name": "dp_236110", "alert_name": "dp_236110", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:51:02.895251+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:36884 -> 192.168.1.70:8080", "alert": "1970-01-01T05:51:02.895251+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:36884 -> 192.168.1.70:8080", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
11
+ {"scenario_name": "dp_236114", "alert_name": "dp_236114", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:51:38.642031+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:51:38.642031+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
12
+ {"scenario_name": "dp_236115", "alert_name": "dp_236115", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:51:38.645198+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:51:38.645198+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
13
+ {"scenario_name": "dp_236116", "alert_name": "dp_236116", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:52:16.348545+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:52:16.348545+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
14
+ {"scenario_name": "dp_236117", "alert_name": "dp_236117", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:52:36.700833+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:52:36.700833+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
15
+ {"scenario_name": "dp_236118", "alert_name": "dp_236118", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:52:36.704244+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:52:36.704244+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
16
+ {"scenario_name": "dp_236119", "alert_name": "dp_236119", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:52:40.079882+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:52:40.079882+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
17
+ {"scenario_name": "dp_236120", "alert_name": "dp_236120", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:52:40.085525+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:52:40.085525+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
18
+ {"scenario_name": "dp_236121", "alert_name": "dp_236121", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:53:17.788844+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:53:17.788844+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
19
+ {"scenario_name": "dp_236122", "alert_name": "dp_236122", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:53:38.139937+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:53:38.139937+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
20
+ {"scenario_name": "dp_236123", "alert_name": "dp_236123", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:53:38.144878+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:53:38.144878+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
21
+ {"scenario_name": "dp_236124", "alert_name": "dp_236124", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:53:41.519489+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:53:41.519489+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
22
+ {"scenario_name": "dp_236125", "alert_name": "dp_236125", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:53:41.522243+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:53:41.522243+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
23
+ {"scenario_name": "dp_236126", "alert_name": "dp_236126", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:54:15.743056+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:33454 -> 192.168.1.70:8080", "alert": "1970-01-01T05:54:15.743056+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:33454 -> 192.168.1.70:8080", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
24
+ {"scenario_name": "dp_236127", "alert_name": "dp_236127", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:54:19.228942+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:54:19.228942+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
25
+ {"scenario_name": "dp_236128", "alert_name": "dp_236128", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:54:39.579439+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:54:39.579439+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
26
+ {"scenario_name": "dp_236129", "alert_name": "dp_236129", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:54:39.585656+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:54:39.585656+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
27
+ {"scenario_name": "dp_236130", "alert_name": "dp_236130", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:54:42.959934+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:54:42.959934+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
28
+ {"scenario_name": "dp_236131", "alert_name": "dp_236131", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:54:42.966420+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:54:42.966420+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
29
+ {"scenario_name": "dp_236132", "alert_name": "dp_236132", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:55:20.668850+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:55:20.668850+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
30
+ {"scenario_name": "dp_236133", "alert_name": "dp_236133", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:55:25.137784+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:37996 -> 192.168.1.70:8080", "alert": "1970-01-01T05:55:25.137784+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:37996 -> 192.168.1.70:8080", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
31
+ {"scenario_name": "dp_236134", "alert_name": "dp_236134", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:45:24.857770+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T00:45:24.857770+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
32
+ {"scenario_name": "dp_236135", "alert_name": "dp_236135", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:45:24.870396+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T00:45:24.870396+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
33
+ {"scenario_name": "dp_236136", "alert_name": "dp_236136", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:45:28.194618+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T00:45:28.194618+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
34
+ {"scenario_name": "dp_236137", "alert_name": "dp_236137", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:45:28.197874+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T00:45:28.197874+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
35
+ {"scenario_name": "dp_236138", "alert_name": "dp_236138", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:55:41.019442+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:55:41.019442+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
36
+ {"scenario_name": "dp_236139", "alert_name": "dp_236139", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:55:41.023466+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:55:41.023466+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
37
+ {"scenario_name": "dp_236140", "alert_name": "dp_236140", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:55:44.400161+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:55:44.400161+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
38
+ {"scenario_name": "dp_236141", "alert_name": "dp_236141", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:55:44.401834+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:55:44.401834+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
39
+ {"scenario_name": "dp_236142", "alert_name": "dp_236142", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:56:22.108843+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:56:22.108843+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
40
+ {"scenario_name": "dp_236143", "alert_name": "dp_236143", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:56:42.459068+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:56:42.459068+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
41
+ {"scenario_name": "dp_236144", "alert_name": "dp_236144", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:56:42.468203+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:56:42.468203+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
42
+ {"scenario_name": "dp_236145", "alert_name": "dp_236145", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:56:45.838628+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:56:45.838628+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
43
+ {"scenario_name": "dp_236146", "alert_name": "dp_236146", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:56:45.847162+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:56:45.847162+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
44
+ {"scenario_name": "dp_236147", "alert_name": "dp_236147", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:57:23.548893+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:57:23.548893+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
45
+ {"scenario_name": "dp_236148", "alert_name": "dp_236148", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:57:43.898562+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:57:43.898562+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
46
+ {"scenario_name": "dp_236149", "alert_name": "dp_236149", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:57:43.905585+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "alert": "1970-01-01T05:57:43.905585+0000 \"SURICATA Ethertype unknown\" {None} None:None -> None:None", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
47
+ {"scenario_name": "dp_236182", "alert_name": "dp_236182", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T00:46:32.572458+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:34398 -> 192.168.1.70:8080", "alert": "1970-01-01T00:46:32.572458+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.90:34398 -> 192.168.1.70:8080", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
48
+ {"scenario_name": "dp_236234", "alert_name": "dp_236234", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-23:45:07.107938 \"INDICATOR-SHELLCODE x86 setgid 0\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:51716", "alert": "01/01-23:45:07.107938 \"INDICATOR-SHELLCODE x86 setgid 0\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:51716", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
49
+ {"scenario_name": "dp_236256", "alert_name": "dp_236256", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-23:49:00.420684 \"INDICATOR-SHELLCODE x86 NOOP\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:57910", "alert": "01/01-23:49:00.420684 \"INDICATOR-SHELLCODE x86 NOOP\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:57910", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
50
+ {"scenario_name": "dp_236269", "alert_name": "dp_236269", "alert_type": "False", "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T23:50:53.423656+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:40694", "alert": "1970-01-01T23:50:53.423656+0000 \"SURICATA STREAM excessive retransmissions\" {TCP} 192.168.1.70:8080 -> 192.168.1.90:40694", "tools_available": ["tshark", "python", "md5sum", "grep", "strings", "file", "cut", "unique", "wc", "cat", "ls", "sort", "echo", "head", "tail", "xxd", "base64", "cd", "whois"], "files_available": "capture.pcap", "instructions": "You are solving this problem in a kali linux terminal. With the mentioned tools, you can use any other tool as you want. If you need to install any other tool, you can do it by adding sudo at the beginning of the command.", "directory": "(directory_of_the_file)", "questions": [{"question": "Analyze the provided PCAP file and determine if the generated alert is a false positive or true positive.", "answer": "false positive"}]}
data/alert_triaging_tii_tp.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/sia_dataset_test.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
upload.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from huggingface_hub import login, upload_folder
2
+
3
+
4
+ # (optional) Login with your Hugging Face credentials
5
+ login()
6
+
7
+ # Push your dataset files
8
+ upload_folder(folder_path=".", repo_id="SIABench/SIA_Dataset", repo_type="dataset")