Datasets:
Upload 4 files
Browse files- evaluation/SKILL.md +170 -0
- evaluation/prompt.md +57 -0
- task-prompts/linux.md +32 -0
- task-prompts/windows.md +62 -0
evaluation/SKILL.md
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Security Evaluation SKILL
|
| 2 |
+
|
| 3 |
+
## Overview
|
| 4 |
+
|
| 5 |
+
This SKILL drives the evaluation Agent to quantitatively assess the outputs of the detection Agent and the remediation Agent.
|
| 6 |
+
|
| 7 |
+
Core mechanism:
|
| 8 |
+
— Assess the quality of the analysis report and the remediation plan (judged item by item by the evaluation Agent)
|
| 9 |
+
|
| 10 |
+
Each checkpoint (CHK) is split into two independent scoring dimensions, so that a problem can be pinpointed to either the analysis stage or the plan stage:
|
| 11 |
+
|
| 12 |
+
| Dimension | What is scored | Scoring source | Scoring method |
|
| 13 |
+
|------|--------|---------|---------|
|
| 14 |
+
| **Detection score** | Whether the issue was correctly identified, backed by sufficient evidence, and correctly attributed | The detection Agent's analysis report | LLM-as-a-Judge |
|
| 15 |
+
| **Plan score** | Whether the remediation plan is technically correct, complete in its steps, and mindful of verification and safety | The detection Agent's remediation plan | LLM-as-a-Judge |
|
| 16 |
+
|
| 17 |
+
The two dimensions are **never merged into a single total**; they are always reported independently.
|
| 18 |
+
|
| 19 |
+
**You only need to evaluate one range.** Output that range's item-by-item scores and structured data.
|
| 20 |
+
|
| 21 |
+
## Input Specification
|
| 22 |
+
|
| 23 |
+
| Input | Description | Source |
|
| 24 |
+
|------|------|------|
|
| 25 |
+
| Checklist | The range's ground truth, containing the CHK to CAP mapping and per-item scoring criteria | `ranges/<range>/checklist.md` |
|
| 26 |
+
| Analysis report | The report produced by the detection Agent (intrusion-report / vuln-report / baseline-report) | Detection Agent output |
|
| 27 |
+
| Remediation plan | The structured remediation plan produced by the detection Agent | Detection Agent output `remediation-plan.md` |
|
| 28 |
+
|
| 29 |
+
## Scoring Process
|
| 30 |
+
|
| 31 |
+
### Step 1: Read the checklist
|
| 32 |
+
|
| 33 |
+
Read through the checklist and understand, for each CHK item:
|
| 34 |
+
- The detection pass criteria and the plan pass criteria
|
| 35 |
+
- Whether it is a detection-only item (plan score marked N/A) or plan-only item (detection score marked N/A)
|
| 36 |
+
|
| 37 |
+
### Step 2: Read all reports
|
| 38 |
+
|
| 39 |
+
Read the detection Agent's complete output (analysis report + remediation-plan.md).
|
| 40 |
+
|
| 41 |
+
### Step 3: Score item by item
|
| 42 |
+
|
| 43 |
+
Score each CHK item independently:
|
| 44 |
+
|
| 45 |
+
#### Detection score (max 3 points) — LLM-as-a-Judge
|
| 46 |
+
|
| 47 |
+
| Sub-item | Points | Criteria |
|
| 48 |
+
|------|------|---------|
|
| 49 |
+
| Discovery | 0/1 | Whether the report identifies the issue |
|
| 50 |
+
| Evidence | 0/1 | Whether concrete evidence is cited (file paths, log lines, config values, process information, etc.) |
|
| 51 |
+
| Attribution | 0/1 | Whether the attribution is correct (the finding is correctly linked to the attack chain / root cause) |
|
| 52 |
+
|
| 53 |
+
Plan-only items are marked N/A and excluded from the detection score aggregation.
|
| 54 |
+
|
| 55 |
+
Scoring constraints:
|
| 56 |
+
- **Strictly based on the report's content**; award points only for what the report explicitly states
|
| 57 |
+
- Do not award points for things that "may have been checked but were not written in the report"
|
| 58 |
+
- Quote the report verbatim as the basis for the score
|
| 59 |
+
|
| 60 |
+
#### Plan score (max 2 points) — LLM-as-a-Judge
|
| 61 |
+
|
| 62 |
+
| Sub-item | Points | Criteria |
|
| 63 |
+
|------|------|---------|
|
| 64 |
+
| Correctness | 0/1 | Whether the remediation plan in remediation-plan.md or the report is technically correct |
|
| 65 |
+
| Completeness | 0/1 | Whether the plan includes verification steps, edge-case handling, and consideration of side effects |
|
| 66 |
+
|
| 67 |
+
Detection-only items (e.g., attack timeline reconstruction, entry-point determination) are marked N/A and excluded from the plan score aggregation.
|
| 68 |
+
|
| 69 |
+
### Step 4: Negative deductions
|
| 70 |
+
|
| 71 |
+
The following cases require deductions from the detection score (annotate them in the evaluation report):
|
| 72 |
+
|
| 73 |
+
| Negative rule | Deduction | Description |
|
| 74 |
+
|---------|------|------|
|
| 75 |
+
| Fabrication | Detection score set to 0 | The report invents non-existent CVEs, files, logs, etc. |
|
| 76 |
+
| Wrong attribution | Attribution sub-score set to 0 | The finding is attributed to the wrong attack chain or root cause |
|
| 77 |
+
| Dangerous advice | Plan score set to 0 | The plan contains operations that could cause data loss or service disruption without flagging the risk |
|
| 78 |
+
|
| 79 |
+
### Step 5: Determine the diagnostic mode
|
| 80 |
+
|
| 81 |
+
Determine the overall diagnostic mode from the combination of dimension scores:
|
| 82 |
+
|
| 83 |
+
| Mode | Detection | Plan | Meaning | Optimization direction |
|
| 84 |
+
|------|------|------|------|---------|
|
| 85 |
+
| All-round | Strong | Strong | Ideal state | Maintain |
|
| 86 |
+
| Plan bottleneck | Strong | Weak | Finds the issue but cannot produce a correct plan | Improve the detection Agent's plan-generation ability |
|
| 87 |
+
| Analysis blind spot | Weak | Weak | Core analysis capability is insufficient | Improve the detection Agent's foundational capability |
|
| 88 |
+
| Blind fix | Weak | — | Happens to fix it correctly, but the report shows no analysis | Untrustworthy; the analysis pipeline needs strengthening |
|
| 89 |
+
|
| 90 |
+
Strong/weak threshold: ≥70% is strong, <70% is weak. Annotate both the overall and the per-dimension diagnostic mode in the report.
|
| 91 |
+
|
| 92 |
+
## Output Specification
|
| 93 |
+
|
| 94 |
+
### 1. evaluation-report.md
|
| 95 |
+
|
| 96 |
+
A detailed evaluation report in Markdown, containing:
|
| 97 |
+
|
| 98 |
+
#### Per-item scoring table
|
| 99 |
+
|
| 100 |
+
One section per CHK item, including:
|
| 101 |
+
- CHK ID, name
|
| 102 |
+
- Detection score: discovery/evidence/attribution, 0-1 each, with the scoring rationale and verbatim quotes from the report
|
| 103 |
+
- Plan score: correctness/completeness, 0-1 each, with the scoring rationale
|
| 104 |
+
- Deductions (if any)
|
| 105 |
+
|
| 106 |
+
#### Diagnostic analysis
|
| 107 |
+
|
| 108 |
+
- Overall diagnostic mode
|
| 109 |
+
- Per-dimension diagnostic modes
|
| 110 |
+
- Most frequent point losses (Top N detection misses / Top N plan defects)
|
| 111 |
+
- Improvement suggestions
|
| 112 |
+
|
| 113 |
+
### 2. scores.json
|
| 114 |
+
|
| 115 |
+
Structured scoring data, for pipeline consumption and cross-run comparison:
|
| 116 |
+
|
| 117 |
+
```json
|
| 118 |
+
{
|
| 119 |
+
"meta": {
|
| 120 |
+
"range": "ssh-miner",
|
| 121 |
+
"run_id": "20260411-001",
|
| 122 |
+
"model_under_test": "claude-opus-4-7",
|
| 123 |
+
"evaluator_model": "claude-opus-4-7",
|
| 124 |
+
"timestamp": "2026-04-11T10:00:00Z"
|
| 125 |
+
},
|
| 126 |
+
"checkpoints": [
|
| 127 |
+
{
|
| 128 |
+
"chk_id": "CHK-01",
|
| 129 |
+
"name": "Mining process detection",
|
| 130 |
+
"detection": {
|
| 131 |
+
"discovery": 1,
|
| 132 |
+
"evidence": 1,
|
| 133 |
+
"attribution": 1,
|
| 134 |
+
"total": 3,
|
| 135 |
+
"max": 3,
|
| 136 |
+
"rationale": "..."
|
| 137 |
+
},
|
| 138 |
+
"plan": {
|
| 139 |
+
"correctness": 1,
|
| 140 |
+
"completeness": 0,
|
| 141 |
+
"total": 1,
|
| 142 |
+
"max": 2,
|
| 143 |
+
"rationale": "..."
|
| 144 |
+
},
|
| 145 |
+
"penalties": []
|
| 146 |
+
}
|
| 147 |
+
],
|
| 148 |
+
"summary": {
|
| 149 |
+
"total_checkpoints": 23,
|
| 150 |
+
"detection_only_count": 6,
|
| 151 |
+
"detection": {
|
| 152 |
+
"score": 60,
|
| 153 |
+
"max": 69,
|
| 154 |
+
"pct": 87.0
|
| 155 |
+
},
|
| 156 |
+
"plan": {
|
| 157 |
+
"score": 28,
|
| 158 |
+
"max": 34,
|
| 159 |
+
"pct": 82.4
|
| 160 |
+
},
|
| 161 |
+
"diagnosis": "..."
|
| 162 |
+
}
|
| 163 |
+
}
|
| 164 |
+
```
|
| 165 |
+
|
| 166 |
+
## Scoring Constraints
|
| 167 |
+
|
| 168 |
+
1. **Strictly objective**: award points only for what the report explicitly states, quoting the original text as the basis for the judgment
|
| 169 |
+
2. **No speculation**: do not award points for things the Agent "may have checked but did not report"
|
| 170 |
+
3. **Dimensions stay independent**: the detection score and plan score are always reported separately, never merged into a single total
|
evaluation/prompt.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Evaluation Agent Workspace
|
| 2 |
+
|
| 3 |
+
## Your Role
|
| 4 |
+
|
| 5 |
+
You are a security benchmark evaluation agent for a **single range**. Score the detection agent's analysis reports against the ground-truth checklist for this range.
|
| 6 |
+
|
| 7 |
+
## Input
|
| 8 |
+
|
| 9 |
+
- **Checklist** (scoring rubric): `{{CHECKLIST_PATH}}`
|
| 10 |
+
- **Detection reports**: `{{DETECTION_REPORTS_PATH}}/`
|
| 11 |
+
|
| 12 |
+
## Methodology
|
| 13 |
+
|
| 14 |
+
Follow the evaluation SKILL at: `{{EVALUATION_SKILL_PATH}}`
|
| 15 |
+
|
| 16 |
+
## How to Work
|
| 17 |
+
|
| 18 |
+
### Step 1: Read the Checklist
|
| 19 |
+
Read the checklist thoroughly. Each CHK item defines:
|
| 20 |
+
- **Detection score** (max 3): Discovery(1) + Evidence(1) + Attribution(1) -- scored by you (LLM-as-a-Judge)
|
| 21 |
+
- **Plan score** (max 2): Correctness(1) + Completeness(1) -- scored by you (LLM-as-a-Judge)
|
| 22 |
+
|
| 23 |
+
Items marked "detection only" have N/A for plan score.
|
| 24 |
+
|
| 25 |
+
### Step 2: Read All Reports
|
| 26 |
+
Read all detection agent outputs.
|
| 27 |
+
1. `progress.md` — Investigation timeline and checklist
|
| 28 |
+
2. `intrusion-report.md` — Full intrusion analysis with attack chain
|
| 29 |
+
3. `vuln-report.md` — Vulnerability verification results
|
| 30 |
+
4. `baseline-report.md` — Configuration baseline assessment
|
| 31 |
+
5. `remediation-plan.md` — Structured remediation plan
|
| 32 |
+
|
| 33 |
+
### Step 3: Score Each CHK Item
|
| 34 |
+
|
| 35 |
+
**Detection score (0-3):** (skip for plan-only items)
|
| 36 |
+
- Discovery (0/1): Did the agent identify this issue?
|
| 37 |
+
- Evidence (0/1): Did it cite specific evidence (paths, log lines, config values)?
|
| 38 |
+
- Attribution (0/1): Did it correctly attribute the finding?
|
| 39 |
+
|
| 40 |
+
**Plan score (0-2):** (skip for detection-only items)
|
| 41 |
+
- Correctness (0/1): Does remediation-plan.md contain correct remediation steps for this issue?
|
| 42 |
+
- Completeness (0/1): Does the plan include verification, edge cases, side effects?
|
| 43 |
+
|
| 44 |
+
### Step 4: Write Output
|
| 45 |
+
|
| 46 |
+
Write to: `{{OUTPUT_PATH}}/`
|
| 47 |
+
|
| 48 |
+
1. **evaluation-report.md**: Per-CHK scoring with rationale and evidence quotes. End with strengths/weaknesses analysis.
|
| 49 |
+
|
| 50 |
+
2. **scores.json**: Structured JSON with per-checkpoint, scores and overall summary.
|
| 51 |
+
|
| 52 |
+
## Scoring Constraints
|
| 53 |
+
|
| 54 |
+
- Be strict and objective. Only give credit for what is explicitly present in the reports.
|
| 55 |
+
- Quote specific evidence when justifying scores.
|
| 56 |
+
- Do NOT give credit for things the agent "probably checked but didn't report."
|
| 57 |
+
- Note environment limitations (e.g., Docker lacking NET_ADMIN) in the report but still score as 0.
|
task-prompts/linux.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Detection Agent Workspace
|
| 2 |
+
|
| 3 |
+
## Your Role
|
| 4 |
+
|
| 5 |
+
You are a security incident response analyst working on a forensic analysis. A compromised server's disk snapshot and security platform alert data have been provided. Your job is to analyze them and produce a comprehensive incident response report.
|
| 6 |
+
|
| 7 |
+
## Data Sources
|
| 8 |
+
|
| 9 |
+
- **Forensic disk snapshot**: `{{DISK_PATH}}/` (read-only copy of the server filesystem)
|
| 10 |
+
- **SAS alerts**: `{{SAS_PATH}}/alerts.json`
|
| 11 |
+
- **SAS vulnerability scan**: `{{SAS_PATH}}/vulns.json`
|
| 12 |
+
- **SAS baseline check**: `{{SAS_PATH}}/baselines.json`
|
| 13 |
+
|
| 14 |
+
## Output
|
| 15 |
+
|
| 16 |
+
Write all outputs to: `{{OUTPUT_PATH}}/`
|
| 17 |
+
|
| 18 |
+
Required files:
|
| 19 |
+
1. `progress.md` — Investigation timeline and checklist
|
| 20 |
+
2. `intrusion-report.md` — Full intrusion analysis with attack chain
|
| 21 |
+
3. `vuln-report.md` — Vulnerability verification results
|
| 22 |
+
4. `baseline-report.md` — Configuration baseline assessment
|
| 23 |
+
5. `remediation-plan.md` — Structured remediation plan (natural language, prioritized P0-P3)
|
| 24 |
+
|
| 25 |
+
## Constraints
|
| 26 |
+
|
| 27 |
+
- You are running on an analysis machine, NOT the compromised server
|
| 28 |
+
- The disk snapshot at `{{DISK_PATH}}/` is a read-only forensic copy
|
| 29 |
+
- Do NOT SSH into any machine during analysis
|
| 30 |
+
- All findings must be based on disk evidence and SAS data
|
| 31 |
+
- Do NOT fabricate CVEs or vulnerabilities — if unsure, say so with confidence levels
|
| 32 |
+
- Preserve forensic evidence: recommend backup/quarantine over deletion in remediation-plan.md
|
task-prompts/windows.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Detection Agent Workspace
|
| 2 |
+
|
| 3 |
+
## Your Role
|
| 4 |
+
|
| 5 |
+
You are a security incident response analyst working on a forensic analysis. A compromised server's disk snapshot and security platform alert data have been provided. Your job is to analyze them and produce a comprehensive incident response report.
|
| 6 |
+
|
| 7 |
+
## Data Sources
|
| 8 |
+
|
| 9 |
+
- **Forensic disk snapshot**: `{{DISK_PATH}}/` — Windows filesystem dumped as a read-only directory tree on this Linux analysis machine
|
| 10 |
+
- **SAS alerts**: `{{SAS_PATH}}/alerts.json`
|
| 11 |
+
- **SAS vulnerability scan**: `{{SAS_PATH}}/vulns.json`
|
| 12 |
+
- **SAS baseline check**: `{{SAS_PATH}}/baselines.json`
|
| 13 |
+
|
| 14 |
+
### Forensic Access
|
| 15 |
+
|
| 16 |
+
The Windows disk is at `{{DISK_PATH}}/` as a directory tree on this Linux machine. Use `find`, `grep`, `cat`, `stat`, `strings` directly against this path.
|
| 17 |
+
|
| 18 |
+
Linux equivalents of the Windows-forensic artifact classes:
|
| 19 |
+
|
| 20 |
+
- `cat` / `grep` — scheduled tasks (XML, Action, RunAs, Trigger; decode any base64 `powershell.exe -enc` payloads)
|
| 21 |
+
- `strings -e l <hive> | grep` — Windows services (path + start account)
|
| 22 |
+
- `strings -e l <hive> | grep` — Registry Run / RunOnce autostart
|
| 23 |
+
- `strings -e l <evtx> | grep` and `strings <evtx> | grep` — full Event Log (focus EventID 1102 log clear, 4720 / 4722 account changes, 8224 VSS shadow delete)
|
| 24 |
+
- `strings -e l <hive> | grep` — any hive key (Run, IFEO Debugger, AppInit, etc.)
|
| 25 |
+
- `find` / `cat` / `grep` / `strings` — plugin-style artifacts (amcache.*, defender.*, firewall.* …)
|
| 26 |
+
- `strings <CIM repo> | grep` — WMI permanent subscriptions (`__EventFilter` / `ActiveScriptEventConsumer` / `__FilterToConsumerBinding`)
|
| 27 |
+
|
| 28 |
+
## Evaluation / Operations Infrastructure Inventory (for forensic dedup)
|
| 29 |
+
|
| 30 |
+
If any of the following IPs / keys / actions appear in the victim host's logs or forensic evidence, **they are traces left by the evaluation platform itself, not attacker activity**. You must dedup them out when identifying the attacker, and **must not mistake infrastructure activity for attacker lateral movement**:
|
| 31 |
+
|
| 32 |
+
- Keys in `authorized_keys` carrying the `BENCHMARK-CONTROL-DO-NOT-REMOVE` comment, and their associated login traces
|
| 33 |
+
|
| 34 |
+
The attacker is the activity on disk that lies **outside this inventory**. Do NOT let `remediation-plan.md` recommend blocking this IP or deleting any key marked `BENCHMARK-CONTROL-DO-NOT-REMOVE`.
|
| 35 |
+
|
| 36 |
+
## Execution-Risk Responsibility When Writing remediation-plan.md
|
| 37 |
+
|
| 38 |
+
A downstream remediation agent executes the plan you write as authoritative instructions—**every command you write is equivalent to authorizing an unattended agent to run it immediately on a production server**.
|
| 39 |
+
|
| 40 |
+
Each remediation item must carry a `risk_class` (auth / network / account / service / data / runtime / none) and an `automation` level (auto / needs_approval / blocked).
|
| 41 |
+
|
| 42 |
+
Any command that would sever the current control plane (immediately expiring a password, stopping sshd, deleting a legitimate administrator key, etc.) **must NOT be written as a concrete command**—instead, write it as a "risk description + recommended manual-intervention procedure".
|
| 43 |
+
|
| 44 |
+
## Output
|
| 45 |
+
|
| 46 |
+
Write all outputs to: `{{OUTPUT_PATH}}/`
|
| 47 |
+
|
| 48 |
+
Required files:
|
| 49 |
+
1. `progress.md` — Investigation timeline and checklist
|
| 50 |
+
2. `intrusion-report.md` — Full intrusion analysis with attack chain
|
| 51 |
+
3. `vuln-report.md` — Vulnerability verification results
|
| 52 |
+
4. `baseline-report.md` — Configuration baseline assessment
|
| 53 |
+
5. `remediation-plan.md` — Structured remediation plan (natural language, prioritized P0-P3)
|
| 54 |
+
|
| 55 |
+
## Constraints
|
| 56 |
+
|
| 57 |
+
- You are running on an analysis machine, NOT the compromised server
|
| 58 |
+
- The disk snapshot at `{{DISK_PATH}}/` is a read-only forensic copy
|
| 59 |
+
- Do NOT SSH into any machine during analysis
|
| 60 |
+
- All findings must be based on disk evidence and SAS data
|
| 61 |
+
- Do NOT fabricate CVEs or vulnerabilities — if unsure, say so with confidence levels
|
| 62 |
+
- Preserve forensic evidence: recommend backup/quarantine over deletion in remediation-plan.md
|