{
  "model_id": "SOC.062",
  "name": "Memory Dump Tool (gcore)",
  "description": "gcore or similar process dumping another process's memory — used to extract credentials from running processes.",
  "threshold": 0.7,
  "evaluations": [
    {
      "name": "Gcore",
      "type": "comparison",
      "left": "event.raw.comm",
      "operator": "IN",
      "right": [
        "gcore",
        "gdb"
      ],
      "weight": 4
    },
    {
      "name": "DumpFlag",
      "type": "comparison",
      "left": "event.raw.cmdline",
      "operator": "LIKE",
      "right": "%generate-core-file%",
      "weight": 4
    },
    {
      "name": "Logic",
      "type": "logical",
      "operator": "AND",
      "operands": [
        "Gcore",
        "DumpFlag"
      ],
      "weight": 5
    }
  ],
  "actions": [
    {
      "type": "emit_alert",
      "reason": "Memory dump tool running — credential extraction attempt."
    }
  ],
  "mitre_tactics": [
    "Credential Access"
  ],
  "mitre_techniques": [
    "T1003"
  ],
  "severity": "high",
  "observables": [
    "event.actor.exe",
    "event.actor.user"
  ]
}
