mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
41 lines
1.6 KiB
YAML
41 lines
1.6 KiB
YAML
name: Processes launching netsh
|
|
id: b89919ed-fe5f-492c-b139-95dbb162040e
|
|
version: 2
|
|
date: '2018-11-02'
|
|
description: This search looks for processes launching netsh.exe. Netsh is a command-line
|
|
scripting utility that allows you to, either locally or remotely, display or modify
|
|
the network configuration of a computer that is currently running. Netsh can be
|
|
used as a persistence proxy technique to execute a helper DLL when netsh.exe is
|
|
executed. In this search, we are looking for processes spawned by netsh.exe and
|
|
executing commands via the command line.
|
|
how_to_implement: To successfully implement this search, you must be ingesting data
|
|
that records process activity from your hosts to populate the endpoint data model
|
|
type: ESCU
|
|
references: []
|
|
author: Bhavin Patel, Splunk
|
|
search: '| tstats `security_content_summariesonly` count values(Processes.process)
|
|
min(_time) as firstTime max(_time) as lastTime from datamodel=Endpoint.Processes
|
|
where Processes.process=netsh.exe by Processes.parent_process Processes.process_name
|
|
Processes.user Processes.dest | `drop_dm_object_name("Processes")` | `security_content_ctime(firstTime)`|`security_content_ctime(lastTime)`
|
|
| `processes_launching_netsh_filter`'
|
|
known_false_positives: Some VPN applications are known to launch netsh.exe. Outside
|
|
of these instances, it is unusual for an executable to launch netsh.exe and run
|
|
commands.
|
|
tags:
|
|
analytics_story:
|
|
- Netsh Abuse
|
|
- Disabling Security Tools
|
|
- DHS Report TA18-074A
|
|
mitre_attack_id:
|
|
- T1059
|
|
- T1089
|
|
kill_chain_phases:
|
|
- Actions on Objectives
|
|
cis20:
|
|
- CIS 8
|
|
nist:
|
|
- PR.PT
|
|
- DE.CM
|
|
security_domain: endpoint
|
|
asset_type: Endpoint
|