← Back to SOC feed Coverage →

ESXi Syslog Configuration Change Via ESXCLI

sigma MEDIUM SigmaHQ
T1562.001T1562.003T1059.012
imProcessCreate
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at SigmaHQ →
Retrieved: 2026-03-25T02:50:08Z · Confidence: medium

Hunt Hypothesis

Adversaries may modify ESXi syslog configuration via ESXCLI to suppress or alter log data, masking their presence and exfiltrating information. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential log tampering and early signs of persistent threats.

Detection Rule

Sigma (Original)

title: ESXi Syslog Configuration Change Via ESXCLI
id: 38eb1dbb-011f-40b1-a126-cf03a0210563
status: test
description: Detects changes to the ESXi syslog configuration via "esxcli"
references:
    - https://support.solarwinds.com/SuccessCenter/s/article/Configure-ESXi-Syslog-to-LEM?language=en_US
    - https://developer.broadcom.com/xapis/esxcli-command-reference/7.0.0/namespace/esxcli_system.html
author: Cedric Maurugeon
date: 2023-09-04
tags:
    - attack.defense-evasion
    - attack.execution
    - attack.t1562.001
    - attack.t1562.003
    - attack.t1059.012
logsource:
    category: process_creation
    product: linux
detection:
    selection:
        Image|endswith: '/esxcli'
        CommandLine|contains|all:
            - 'system'
            - 'syslog'
            - 'config'
        CommandLine|contains: ' set'
    condition: selection
falsepositives:
    - Legitimate administrative activities
level: medium

KQL (Azure Sentinel)

imProcessCreate
| where TargetProcessName endswith "/esxcli" and (TargetProcessCommandLine contains "system" and TargetProcessCommandLine contains "syslog" and TargetProcessCommandLine contains "config") and TargetProcessCommandLine contains " set"

False Positive Guidance

MITRE ATT&CK Context

Original source: https://github.com/SigmaHQ/sigma/blob/master/rules/linux/process_creation/proc_creation_lnx_esxcli_syslog_config_change.yml