Update README.md
Browse files
README.md
CHANGED
|
@@ -27,6 +27,12 @@ Dataset** product. It contains roughly **1 / 60th of the full dataset** at
|
|
| 27 |
identical schema, attacker-tier distribution, and statistical fingerprint, so
|
| 28 |
you can evaluate fit before licensing the full product.
|
| 29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
| File | Rows (sample) | Rows (full) | Description |
|
| 31 |
|-------------------------|---------------|---------------|----------------------------------------------|
|
| 32 |
| `network_topology.csv` | ~651 | ~3,200 | Network segments and asset inventory |
|
|
@@ -54,6 +60,28 @@ OT/ICS environments, with:
|
|
| 54 |
- **Ransomware deployment, supply chain compromise, and exfiltration**
|
| 55 |
outcome paths
|
| 56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
## Calibrated Benchmark Targets
|
| 58 |
|
| 59 |
The full product is calibrated to 12 benchmark metrics drawn from
|
|
@@ -123,7 +151,8 @@ log and asset inventory schemas respectively.
|
|
| 123 |
|
| 124 |
## Suggested Use Cases
|
| 125 |
|
| 126 |
-
- Training **kill-chain phase classifiers** (predict next ATT&CK phase)
|
|
|
|
| 127 |
- Benchmarking **APT detection** algorithms (long dwell, low stealth_score)
|
| 128 |
- **Campaign outcome prediction** (success / detected / blocked / aborted)
|
| 129 |
- **MTTD / MTTR forecasting** under varying defender maturity
|
|
@@ -152,6 +181,10 @@ y = attacks["detected"].astype(int)
|
|
| 152 |
y_outcome = campaigns["campaign_outcome"]
|
| 153 |
```
|
| 154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
## License
|
| 156 |
|
| 157 |
This **sample** is released under **CC-BY-NC-4.0** (free for non-commercial
|
|
|
|
| 27 |
identical schema, attacker-tier distribution, and statistical fingerprint, so
|
| 28 |
you can evaluate fit before licensing the full product.
|
| 29 |
|
| 30 |
+
> 🤖 **Trained baseline available:**
|
| 31 |
+
> [**xpertsystems/cyb002-baseline-classifier**](https://huggingface.co/xpertsystems/cyb002-baseline-classifier)
|
| 32 |
+
> — XGBoost + PyTorch MLP for 10-class MITRE ATT&CK kill-chain phase
|
| 33 |
+
> prediction, group-aware split by campaign, ablation evidence,
|
| 34 |
+
> honest limitations in the model card.
|
| 35 |
+
|
| 36 |
| File | Rows (sample) | Rows (full) | Description |
|
| 37 |
|-------------------------|---------------|---------------|----------------------------------------------|
|
| 38 |
| `network_topology.csv` | ~651 | ~3,200 | Network segments and asset inventory |
|
|
|
|
| 60 |
- **Ransomware deployment, supply chain compromise, and exfiltration**
|
| 61 |
outcome paths
|
| 62 |
|
| 63 |
+
## Trained Baseline Available
|
| 64 |
+
|
| 65 |
+
A working baseline classifier trained on this sample is published at
|
| 66 |
+
**[xpertsystems/cyb002-baseline-classifier](https://huggingface.co/xpertsystems/cyb002-baseline-classifier)**.
|
| 67 |
+
|
| 68 |
+
| Component | Detail |
|
| 69 |
+
|---|---|
|
| 70 |
+
| Task | 10-class MITRE ATT&CK kill-chain phase classification |
|
| 71 |
+
| Models | XGBoost (`model_xgb.json`) + PyTorch MLP (`model_mlp.safetensors`) |
|
| 72 |
+
| Features | 90 (after one-hot encoding); pipeline included as `feature_engineering.py` |
|
| 73 |
+
| Split | **Group-aware by campaign_id** — train/val/test campaigns disjoint |
|
| 74 |
+
| Demo | `inference_example.ipynb` — end-to-end copy-paste |
|
| 75 |
+
| Headline metrics | XGBoost macro ROC-AUC 0.86; accuracy 47% (vs 19% always-majority baseline) |
|
| 76 |
+
|
| 77 |
+
The model card documents the three columns excluded for label leakage
|
| 78 |
+
(`technique_id`, `technique_name`, `tactic_category`), an ablation
|
| 79 |
+
showing `timestep` carries most of the phase signal, and six explicit
|
| 80 |
+
limitations including the gap between synthetic and real attack
|
| 81 |
+
telemetry. Late-stage phases (collection / exfiltration / impact) are
|
| 82 |
+
genuinely harder for a flat-tabular event-level model — the baseline
|
| 83 |
+
exposes this honestly.
|
| 84 |
+
|
| 85 |
## Calibrated Benchmark Targets
|
| 86 |
|
| 87 |
The full product is calibrated to 12 benchmark metrics drawn from
|
|
|
|
| 151 |
|
| 152 |
## Suggested Use Cases
|
| 153 |
|
| 154 |
+
- Training **kill-chain phase classifiers** (predict next ATT&CK phase) —
|
| 155 |
+
[worked example available](https://huggingface.co/xpertsystems/cyb002-baseline-classifier)
|
| 156 |
- Benchmarking **APT detection** algorithms (long dwell, low stealth_score)
|
| 157 |
- **Campaign outcome prediction** (success / detected / blocked / aborted)
|
| 158 |
- **MTTD / MTTR forecasting** under varying defender maturity
|
|
|
|
| 181 |
y_outcome = campaigns["campaign_outcome"]
|
| 182 |
```
|
| 183 |
|
| 184 |
+
For a worked end-to-end example with the 10-class kill-chain phase target,
|
| 185 |
+
group-aware splitting, and feature engineering, see the inference notebook
|
| 186 |
+
in the [baseline classifier repo](https://huggingface.co/xpertsystems/cyb002-baseline-classifier/blob/main/inference_example.ipynb).
|
| 187 |
+
|
| 188 |
## License
|
| 189 |
|
| 190 |
This **sample** is released under **CC-BY-NC-4.0** (free for non-commercial
|