Service misconfigurations
Windows services are managed by the Service Control Manager (SCM). The SCM is a process that is in charge of the management of the state of services, such as the current status, and any configurations of it.
Each service that is present on a Windows machine will have an associated executable which will be ran by the SCM whenever a particular service is started. The user account which the service will run as will also be specified.
View the configuration of a particular service with the sc qc
command:
The important fields to take note of are BINARY_PATH_NAME
and SERVICE_START_NAME
.
a) BINARY_PATH_NAME
: The associated executable
b) SERVICE_START_NAME
: The account used to run the service
Last updated