Detection rules › Sigma

Number of oustanding SMB requests increased

Status
experimental
Severity
medium
Log source
product windows, category process_creation
Author
mdecrevoisier
Source
github.com/mdecrevoisier/SIGMA-detection-rules

Detects scenarios where an attacker (specially Blackcat) increase the number of oufstanding requests to distribute malware payloads.

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Number of oustanding SMB requests increased
description: Detects scenarios where an attacker (specially Blackcat) increase the number of oufstanding requests to distribute malware payloads.
references:
- https://www.microsoft.com/en-us/security/blog/2022/06/13/the-many-lives-of-blackcat-ransomware/
- https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc960259(v=technet.10)
tags:
- attack.persistence
- attack.t1021.002 # Remote Services: SMB/Windows Admin Shares 
author: mdecrevoisier
status: experimental
logsource:
  product: windows
  category: process_creation
detection:  # reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services \LanmanServer\Parameters /v MaxMpxCt /d 65535 /t REG_DWORD /f
  selection:
    NewProcessName|endswith: '\reg.exe'
    CommandLine|contains|all:
      - 'REG ADD'
      - '\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters'
      - 'MaxMpxCt'
  condition: selection
falsepositives:
- system administrator activity or debugging
level: medium

Stages and Predicates

Stage 0: condition

selection

Stage 1: selection

selection:
  NewProcessName|endswith: '\reg.exe'
  CommandLine|contains|all:
    - 'REG ADD'
    - '\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters'
    - 'MaxMpxCt'

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
CommandLinematch
  • MaxMpxCt
  • REG ADD corpus 14 (sigma 13, kusto 1)
  • \SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters
NewProcessNameends_with
  • \reg.exe corpus 58 (sigma 58)