Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for THREAT-Impact-SecurityToolMassServiceStop.

Unlock with Pro - from £29/user/mo
THREAT-Impact-SecurityToolMassServiceStop IBM QRadar · QRadar

Detect Mass Stop/Disable of AV, EDR, and Backup Agent Services Preceding Destructive Activity in IBM QRadar

Before deploying an encryptor or wiper, ransomware operators and their affiliates routinely disable or kill every security and backup agent on a host in a tight burst, so that neither the endpoint protection stack nor the backup client can interfere with or later help recover from the destructive payload. This is executed with built-in, signed Windows tooling rather than custom malware: `sc.exe stop <svc>` / `sc.exe config <svc> start= disabled` (stop and permanently disable a service), `net stop <svc>` (the legacy equivalent, still widely scripted), PowerShell `Stop-Service`/`Set-Service -StartupType Disabled` (used when execution is via a PowerShell-based loader or C2 implant), and `taskkill /F /IM <process>.exe` (used to kill the service host process directly when the service control manager itself is protected or tamper-resistant). The distinguishing signal is not any single command — administrators routinely stop one service for maintenance — but the pattern of several distinct AV/EDR and backup-agent service names being targeted by one host/account within a short window, which has essentially no legitimate single-actor explanation outside of a coordinated uninstall or migration. Named targets recur across incident reports: Windows Defender (WinDefend, MsMpSvc, Sense/MDE, SecurityHealthService, WdNisSvc), CrowdStrike Falcon (CSFalconService, CSAgent), SentinelOne (SentinelAgent, SentinelServiceHost), VMware/Carbon Black (CbDefense, CbEvtMgr), Sophos (SAVService, SAVAdminService), Symantec/Broadcom (SepMasterService, ccSvcHst), McAfee/Trellix (McShield, mfemms, mfevtp), Trend Micro (TmCCSF, ntrtscan), BlackBerry Cylance (CylanceSvc), Malwarebytes (MBAMService), and backup agents including Veeam (VeeamBackupSvc, VeeamTransportSvc), Acronis (AcronisAgent), Veritas Backup Exec (BackupExecJobEngine, BackupExecAgentAccelerator), and the native Windows VSS/backup engine (wbengine, SDRSVC). Detection keys on the combination of a stop/disable/kill command syntax against this named-target list, clustered per host within a short window, rather than on any individual binary or service name in isolation.

MITRE ATT&CK

Tactic
Impact

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS EventTime,
  "Process Name" AS ProcessName,
  "Process Command Line" AS CommandLine,
  UserName,
  sourceip AS SourceIP,
  CASE
    WHEN "Process Name" ILIKE '%sc.exe%' AND "Process Command Line" ILIKE '%config%' THEN 'sc_config_disable'
    WHEN "Process Name" ILIKE '%sc.exe%' THEN 'sc_stop'
    WHEN "Process Name" ILIKE '%net%' AND "Process Command Line" ILIKE '%stop%' THEN 'net_stop'
    WHEN "Process Name" ILIKE '%taskkill%' THEN 'taskkill_force'
    WHEN "Process Name" ILIKE '%powershell%' AND "Process Command Line" ILIKE '%Set-Service%' THEN 'posh_set_service_disabled'
    WHEN "Process Name" ILIKE '%powershell%' THEN 'posh_stop_service'
    ELSE 'Other'
  END AS StopMethod
FROM events
WHERE
  (LOGSOURCETYPENAME(logsourceid) ILIKE '%Sysmon%' OR LOGSOURCETYPENAME(logsourceid) ILIKE '%Microsoft Windows%')
  AND (
    ("Process Name" ILIKE '%sc.exe%' AND ("Process Command Line" ILIKE '%stop%' OR "Process Command Line" ILIKE '%config%'))
    OR ("Process Name" ILIKE '%net%' AND "Process Command Line" ILIKE '%stop%')
    OR ("Process Name" ILIKE '%taskkill%' AND ("Process Command Line" ILIKE '%/f%' OR "Process Command Line" ILIKE '%/im%'))
    OR ("Process Name" ILIKE '%powershell%' AND ("Process Command Line" ILIKE '%Stop-Service%' OR "Process Command Line" ILIKE '%Set-Service%'))
  )
  AND (
    "Process Command Line" ILIKE '%WinDefend%' OR "Process Command Line" ILIKE '%MsMpSvc%' OR "Process Command Line" ILIKE '%Sense%'
    OR "Process Command Line" ILIKE '%CSFalconService%' OR "Process Command Line" ILIKE '%SentinelAgent%' OR "Process Command Line" ILIKE '%CbDefense%'
    OR "Process Command Line" ILIKE '%SAVService%' OR "Process Command Line" ILIKE '%SepMasterService%' OR "Process Command Line" ILIKE '%McShield%'
    OR "Process Command Line" ILIKE '%TmCCSF%' OR "Process Command Line" ILIKE '%CylanceSvc%' OR "Process Command Line" ILIKE '%VeeamBackupSvc%'
    OR "Process Command Line" ILIKE '%AcronisAgent%' OR "Process Command Line" ILIKE '%BackupExec%' OR "Process Command Line" ILIKE '%wbengine%' OR "Process Command Line" ILIKE '%SDRSVC%'
  )
ORDER BY starttime DESC
LAST 24 HOURS
critical severity high confidence

QRadar AQL query over Sysmon/Windows process-creation events for sc.exe/net.exe/taskkill.exe/PowerShell commands targeting named AV/EDR and backup-agent services. Recommend a QRadar rule requiring 3+ distinct CommandLine values from the same UserName/host within 15 minutes to reproduce the MassStop burst pattern that distinguishes attacker disablement from a single routine maintenance command.

Data Sources

Sysmon (via QRadar Windows/Sysmon DSM)Windows Security Event Log Event ID 4688

Required Tables

events

False Positives & Tuning

  • IT administrators or automation platforms performing legitimate bulk patch/maintenance cycles
  • Planned migration or uninstall of one security product in favor of another
  • Backup software upgrade windows stopping the vendor's own agent services
  • Golden-image pipelines stripping pre-installed AV/EDR agents from a template

Other platforms for THREAT-Impact-SecurityToolMassServiceStop


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Stop and Disable Windows Defender via sc.exe

    Expected signal: Sysmon/DeviceProcessEvents/Security 4688 process creation: FileName=sc.exe, two events with CommandLine containing 'stop WinDefend' and 'config WinDefend start= disabled' respectively.

  2. Test 2Mass Stop of AV/EDR and Backup Services via net stop

    Expected signal: Sysmon/DeviceProcessEvents/Security 4688 process creation: FileName=net.exe, three events with CommandLine containing 'stop SAVService', 'stop SepMasterService', and 'stop VeeamTransportSvc' respectively, within the same 15-minute window on one host.

  3. Test 3Kill CrowdStrike Falcon Service Host via taskkill

    Expected signal: Sysmon/DeviceProcessEvents/Security 4688 process creation: FileName=taskkill.exe, CommandLine contains '/F /IM CSFalconService.exe'.

  4. Test 4Disable Security Services via PowerShell Stop-Service/Set-Service

    Expected signal: Sysmon/DeviceProcessEvents/Security 4688 process creation: FileName=powershell.exe, two events with CommandLine containing 'Stop-Service' and 'Set-Service' respectively, ParentImage referencing powershell.exe/pwsh.exe.

Unlock playbooks & atomic tests with Pro

Get the full detection package for THREAT-Impact-SecurityToolMassServiceStop — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections

Tactic Hub