mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
61 lines
2.3 KiB
YAML
61 lines
2.3 KiB
YAML
name: Delete A Net User
|
|
id: 8776d79c-d26e-11eb-9a56-acde48001122
|
|
version: 8
|
|
date: '2022-03-17'
|
|
author: Teoderick Contreras, Splunk
|
|
status: production
|
|
type: Anomaly
|
|
description: This analytic will detect a suspicious net.exe/net1.exe command-line
|
|
to delete a user on a system. This technique may be use by an administrator for
|
|
legitimate purposes, however this behavior has been used in the wild to impair some
|
|
user or deleting adversaries tracks created during its lateral movement additional
|
|
systems. During triage, review parallel processes for additional behavior. Identify
|
|
any other user accounts created before or after.
|
|
data_source:
|
|
- Windows Security 4688
|
|
search:
|
|
selection1:
|
|
process.cmd_line|contains: user
|
|
selection2:
|
|
process.cmd_line|contains: /delete
|
|
selection3:
|
|
process.file.name:
|
|
- net.exe
|
|
- net1.exe
|
|
condition: selection1 and selection2 and (selection3)
|
|
how_to_implement: To successfully implement this search, you need to be ingesting
|
|
logs with the process name, parent process, and command-line executions from your
|
|
endpoints. If you are using Sysmon, you must have at least version 6.0.4 of the
|
|
Sysmon TA. Tune and filter known instances where renamed net.exe may be used.
|
|
known_false_positives: System administrators or scripts may delete user accounts via
|
|
this technique. Filter as needed.
|
|
references:
|
|
- https://thedfirreport.com/2020/04/20/sqlserver-or-the-miner-in-the-basement/
|
|
tags:
|
|
analytic_story:
|
|
- XMRig
|
|
- Ransomware
|
|
asset_type: Endpoint
|
|
confidence: 70
|
|
impact: 70
|
|
message: An instance of $parent_process_name$ spawning $process_name$ was identified
|
|
on endpoint $dest_device_id$ by user $dest_user_id$ attempting to delete a user
|
|
account.
|
|
mitre_attack_id:
|
|
- T1531
|
|
observable: []
|
|
product:
|
|
- Splunk Behavioral Analytics
|
|
required_fields: []
|
|
kill_chain_phases:
|
|
- Exploitation
|
|
risk_score: 49
|
|
security_domain: endpoint
|
|
tests:
|
|
- name: True Positive Test
|
|
attack_data:
|
|
- data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/malware/ransomware_ttp/ssa_data1/net_user_del.log
|
|
source: WinEventLog:Security
|
|
- data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1531/atomic_red_team/security.log
|
|
source: WinEventLog:Security
|