Hayabusa high experimental sigma

Security Event Logging Disabled via MiniNt Registry Key - Process

Detects attempts to disable security event logging by adding the `MiniNt` registry key. This key is used to disable the Windows Event Log service, which collects and stores event logs from the operating system and applications. Adversaries may want to disable this service to prevent logging of security events that could be used to detect their activities.

View Source

Detection Logic

{
  "process_creation": {
    "EventID": 1,
    "Channel": "Microsoft-Windows-Sysmon/Operational"
  },
  "selection_reg_img": [
    {
      "Image
| endswith": "\\reg.exe"
    },
    {
      "OriginalFileName": "reg.exe"
    }
  ],
  "selection_reg_cmd": {
    "CommandLine
| contains
| all": [
      " add ",
      "\\SYSTEM\\CurrentControlSet\\Control\\MiniNt"
    ]
  },
  "selection_powershell_img": [
    {
      "Image
| endswith": [
        "\\powershell.exe",
        "\\pwsh.exe",
        "\\powershell_ise.exe"
      ]
    },
    {
      "OriginalFileName": [
        "PowerShell.EXE",
        "pwsh.dll"
      ]
    }
  ],
  "selection_powershell_cmd1": {
    "CommandLine
| contains": [
      "New-Item ",
      "ni "
    ]
  },
  "selection_powershell_cmd2": {
    "CommandLine
| contains": "\\SYSTEM\\CurrentControlSet\\Control\\MiniNt"
  },
  "condition": "process_creation and (all of selection_reg_* or all of selection_powershell_*)"
}

False Positives

  • Highly Unlikely

Field Validations

Loading…

Comments (0)

Loading comments...