From 0591eed275fd24e5c1b959e1a182bea6f6275c34 Mon Sep 17 00:00:00 2001 From: Bryan McNulty Date: Wed, 26 Feb 2025 19:42:55 -0600 Subject: Initial commit +scmrexec --- pkg/windows/const.go | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pkg/windows/const.go (limited to 'pkg/windows') diff --git a/pkg/windows/const.go b/pkg/windows/const.go new file mode 100644 index 0000000..4c4fbe6 --- /dev/null +++ b/pkg/windows/const.go @@ -0,0 +1,37 @@ +package windows + +const ( + // Windows error codes + ERROR_FILE_NOT_FOUND uint32 = 0x00000002 + ERROR_SERVICE_REQUEST_TIMEOUT uint32 = 0x0000041d + ERROR_SERVICE_DOES_NOT_EXIST uint32 = 0x00000424 + ERROR_SERVICE_NOT_ACTIVE uint32 = 0x00000426 + + // Windows service/scm constants + SERVICE_BOOT_START uint32 = 0x00000000 + SERVICE_SYSTEM_START uint32 = 0x00000001 + SERVICE_AUTO_START uint32 = 0x00000002 + SERVICE_DEMAND_START uint32 = 0x00000003 + SERVICE_DISABLED uint32 = 0x00000004 + + // https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-scmr/4e91ff36-ab5f-49ed-a43d-a308e72b0b3c + SERVICE_CONTINUE_PENDING uint32 = 0x00000005 + SERVICE_PAUSE_PENDING uint32 = 0x00000006 + SERVICE_PAUSED uint32 = 0x00000007 + SERVICE_RUNNING uint32 = 0x00000004 + SERVICE_START_PENDING uint32 = 0x00000002 + SERVICE_STOP_PENDING uint32 = 0x00000003 + SERVICE_STOPPED uint32 = 0x00000001 + + SERVICE_WIN32_OWN_PROCESS uint32 = 0x00000010 + + SERVICE_CONTROL_STOP uint32 = 0x00000001 + SC_MANAGER_CREATE_SERVICE uint32 = 0x00000002 + + // https://learn.microsoft.com/en-us/windows/win32/services/service-security-and-access-rights + SERVICE_QUERY_CONFIG uint32 = 0x00000001 + SERVICE_CHANGE_CONFIG uint32 = 0x00000002 + SERVICE_START uint32 = 0x00000010 + SERVICE_STOP uint32 = 0x00000020 + SERVICE_DELETE uint32 = 0x00010000 // special permission +) -- cgit v1.2.3