{
  "model_id": "SOC.068",
  "name": "Host Information Discovery",
  "description": "uname, hostname, ifconfig, lscpu run in quick succession — attacker fingerprinting the host.",
  "threshold": 0.5,
  "evaluations": [
    {
      "name": "HostCmd",
      "type": "comparison",
      "left": "event.raw.comm",
      "operator": "IN",
      "right": [
        "uname",
        "hostname",
        "ifconfig",
        "lscpu",
        "lspci"
      ],
      "weight": 4
    },
    {
      "name": "Count",
      "type": "aggregation",
      "aggregation": "COUNT",
      "field": "event.raw.comm",
      "weight": 3
    },
    {
      "name": "Many",
      "type": "comparison",
      "left": "@Count",
      "operator": "\u003e=",
      "right": 5,
      "weight": 4
    },
    {
      "name": "Logic",
      "type": "logical",
      "operator": "AND",
      "operands": [
        "HostCmd",
        "Many"
      ],
      "weight": 4
    }
  ],
  "actions": [
    {
      "type": "emit_alert",
      "reason": "Host fingerprinting burst — system info discovery."
    }
  ],
  "mitre_tactics": [
    "Discovery"
  ],
  "mitre_techniques": [
    "T1082"
  ],
  "severity": "low",
  "observables": [
    "event.actor.user"
  ]
}
