{
  "model_id": "SOC.076",
  "name": "Connection To Known Mining Pool",
  "description": "Outbound connection to a known cryptomining pool domain or IP.",
  "threshold": 0.9,
  "evaluations": [
    {
      "name": "Conn",
      "type": "comparison",
      "left": "event.type",
      "operator": "==",
      "right": "network.connection.established",
      "weight": 3
    },
    {
      "name": "MiningPool",
      "type": "comparison",
      "left": "event.raw.remote_ip",
      "operator": "IN",
      "right": [
        "pool.minexmr.com",
        "xmr.pool.minergate.com"
      ],
      "weight": 5
    },
    {
      "name": "Logic",
      "type": "logical",
      "operator": "AND",
      "operands": [
        "Conn",
        "MiningPool"
      ],
      "weight": 5
    }
  ],
  "actions": [
    {
      "type": "emit_alert",
      "reason": "Connection to known mining pool — cryptomining activity."
    }
  ],
  "mitre_tactics": [
    "Command and Control",
    "Impact"
  ],
  "mitre_techniques": [
    "T1071",
    "T1496"
  ],
  "severity": "critical",
  "observables": [
    "event.raw.remote_ip"
  ]
}
