{
  "model_id": "SOC.073",
  "name": "Database Dump Activity",
  "description": "Database dump tool running (mysqldump, pg_dump) — may be legitimate backup or data theft.",
  "threshold": 0.6,
  "evaluations": [
    {
      "name": "Dump",
      "type": "comparison",
      "left": "event.raw.comm",
      "operator": "IN",
      "right": [
        "mysqldump",
        "pg_dump",
        "mongoexport"
      ],
      "weight": 4
    },
    {
      "name": "ToTmp",
      "type": "comparison",
      "left": "event.raw.cmdline",
      "operator": "LIKE",
      "right": "%/tmp%",
      "weight": 3
    },
    {
      "name": "Logic",
      "type": "logical",
      "operator": "AND",
      "operands": [
        "Dump",
        "ToTmp"
      ],
      "weight": 4
    }
  ],
  "actions": [
    {
      "type": "emit_alert",
      "reason": "Database dump to /tmp — possible data theft."
    }
  ],
  "mitre_tactics": [
    "Collection"
  ],
  "mitre_techniques": [
    "T1005",
    "T1213"
  ],
  "severity": "high",
  "observables": [
    "event.actor.exe",
    "event.actor.user"
  ]
}
