File size: 1,838 Bytes
f653531 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | ## 🎯 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.
|