-
Notifications
You must be signed in to change notification settings - Fork 0
Issue 50 implement the stix 21 windows service start type enumeration #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rhohimer
merged 3 commits into
develop
from
issue-50-implement-the-stix-21-windows-service-start-type-enumeration
Jun 11, 2025
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -205,6 +205,20 @@ An open vocabulary of Windows PE binary types."""^^xsd:string ; | |||||
gist:stixTerm "windows-pebinary-type-ov"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:WindowsServiceStartType | ||||||
a owl:Class ; | ||||||
rdfs:subClassOf gist:StixCategoryObject ; | ||||||
skos:definition "A category indicating the start type of a Windows service."^^xsd:string ; | ||||||
skos:example ""^^xsd:string ; | ||||||
skos:note """STIX 2.1 description: | ||||||
The Windows service start type vocabulary is currently used in the following SCO(s): | ||||||
● Process (Windows Service extension) | ||||||
|
||||||
An enumeration of Windows service start types."""^^xsd:string ; | ||||||
skos:prefLabel "Windows™ Service Start Type Enumeration"^^xsd:string ; | ||||||
gist:stixTerm "windows-service-start-type-enum"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:WindowsServiceStatus | ||||||
a owl:Class ; | ||||||
rdfs:subClassOf gist:StixCategoryObject ; | ||||||
|
@@ -2700,6 +2714,46 @@ Specifies that the PE binary is a device driver (SYS)."""^^xsd:string ; | |||||
gist:stixTerm "sys"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:_WindowsServiceStartType_service-auto-start | ||||||
a gist:WindowsServiceStartType ; | ||||||
skos:definition """STIX 2.1 description: | ||||||
A service started automatically by the service control manager during system startup."""^^xsd:string ; | ||||||
skos:prefLabel "SERVICE_AUTO_START"^^xsd:string ; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IRI label mismatch. Fix all of the instances.
Suggested change
|
||||||
gist:stixTerm "SERVICE_AUTO_START"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:_WindowsServiceStartType_service-boot-start | ||||||
a gist:WindowsServiceStartType ; | ||||||
skos:definition """STIX 2.1 description: | ||||||
A device driver started by the system loader. This value is valid only for driver services."""^^xsd:string ; | ||||||
skos:prefLabel "SERVICE_BOOT_START"^^xsd:string ; | ||||||
gist:stixTerm "SERVICE_BOOT_START"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:_WindowsServiceStartType_service-demand-start | ||||||
a gist:WindowsServiceStartType ; | ||||||
skos:definition """STIX 2.1 description: | ||||||
A service started by the service control manager when a process calls the StartService function."""^^xsd:string ; | ||||||
skos:prefLabel "SERVICE_DEMAND_START"^^xsd:string ; | ||||||
gist:stixTerm "SERVICE_DEMAND_START"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:_WindowsServiceStartType_service-disabled | ||||||
a gist:WindowsServiceStartType ; | ||||||
skos:definition """STIX 2.1 description: | ||||||
A service that cannot be started. Attempts to start the service result in the error code ERROR_SERVICE_DISABLED."""^^xsd:string ; | ||||||
skos:prefLabel "SERVICE_DISABLED"^^xsd:string ; | ||||||
gist:stixTerm "SERVICE_DISABLED"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:_WindowsServiceStartType_service-system-alert | ||||||
a gist:WindowsServiceStartType ; | ||||||
skos:definition """STIX 2.1 description: | ||||||
A device driver started by the IoInitSystem function. This value is valid only for driver services."""^^xsd:string ; | ||||||
skos:prefLabel "SERVICE_SYSTEM_ALERT"^^xsd:string ; | ||||||
gist:stixTerm "SERVICE_SYSTEM_ALERT"^^xsd:string ; | ||||||
. | ||||||
|
||||||
gist:_WindowsServiceStatus_service-continue-pending | ||||||
a gist:WindowsServiceStatus ; | ||||||
skos:definition """STIX 2.1 description: | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IRI label mismatch