Processes & Services

MITRE ATT&CK™ Process Discovery & System Service Discovery - Technique T1057 & T1007

Theory

This page provides useful commands for Windows enumeration that can be used to query process and services information.

Practice

Services

To obtain a list of all the services, we can use one of the following commands

#Net command
net start

#WMI
wmic service list brief
wmic service get name,displayname,pathname,startmode

#sc.exe
sc.exe query state= all

Processes

To obtain a list of all processes, we can use one of the following commands

Resources

Last updated

Was this helpful?