{
  "model_id": "SOC.070",
  "name": "Container Escape Detection",
  "description": "Process accessing /proc/1/root from inside a container — possible container escape attempt.",
  "threshold": 0.7,
  "evaluations": [
    {
      "name": "Escape",
      "type": "comparison",
      "left": "event.raw.path",
      "operator": "LIKE",
      "right": "/proc/1/root%",
      "weight": 5
    },
    {
      "name": "InContainer",
      "type": "comparison",
      "left": "event.raw.container",
      "operator": "==",
      "right": true,
      "weight": 3
    },
    {
      "name": "Logic",
      "type": "logical",
      "operator": "AND",
      "operands": [
        "Escape",
        "InContainer"
      ],
      "weight": 5
    }
  ],
  "actions": [
    {
      "type": "emit_alert",
      "reason": "Container escape attempt — accessing host filesystem from container."
    }
  ],
  "mitre_tactics": [
    "Discovery",
    "Privilege Escalation"
  ],
  "mitre_techniques": [
    "T1611"
  ],
  "severity": "critical",
  "observables": [
    "event.raw.path"
  ]
}
