Skip to content

Latest commit

 

History

History
70 lines (48 loc) · 2.77 KB

T1489.md

File metadata and controls

70 lines (48 loc) · 2.77 KB

T1489 - Service Stop

Adversaries may stop or disable services on a system to render those services unavailable to legitimate users. Stopping critical services can inhibit or stop response to an incident or aid in the adversary's overall objectives to cause damage to the environment.(Citation: Talos Olympic Destroyer 2018)(Citation: Novetta Blockbuster)

Adversaries may accomplish this by disabling individual services of high importance to an organization, such as MSExchangeIS, which will make Exchange content inaccessible (Citation: Novetta Blockbuster). In some cases, adversaries may stop or disable many or all services to render systems unusable.(Citation: Talos Olympic Destroyer 2018) Services may not allow for modification of their data stores while running. Adversaries may stop services in order to conduct Data Destruction or Data Encrypted for Impact on the data stores of services like Exchange and SQL Server.(Citation: SecureWorks WannaCry Analysis)

Atomic Tests


Atomic Test #1 - Windows - Stop service using Service Controller

Stops a specified service using the sc.exe command.

Supported Platforms: Windows

Inputs

Name Description Type Default Value
service_name Name of a service to stop String spooler

Run it with command_prompt!

sc.exe stop #{service_name}


Atomic Test #2 - Windows - Stop service using net.exe

Stops a specified service using the net.exe command.

Supported Platforms: Windows

Inputs

Name Description Type Default Value
service_name Name of a service to stop String spooler

Run it with command_prompt!

net.exe stop #{service_name}


Atomic Test #3 - Windows - Stop service by killing process

Stops a specified service killng the service's process. This technique was used by WannaCry.

Supported Platforms: Windows

Inputs

Name Description Type Default Value
process_name Name of a process to kill String sqlwriter.exe

Run it with command_prompt!

taskkill.exe /f /im #{process_name}