-
Notifications
You must be signed in to change notification settings - Fork 0
Issue 52 implement the stix 21 windows service status enumeration #108
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 2 commits into
develop
from
issue-52-implement-the-stix-21-windows-service-status-enumeration
Jun 11, 2025
Merged
Changes from all commits
Commits
Show all changes
2 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 | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -168,6 +168,20 @@ gist:ThreatActorType | |||||||||||||||||||||||||||||
rdfs:subClassOf gist:StixCategoryObject ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:WindowsServiceStatus | ||||||||||||||||||||||||||||||
a owl:Class ; | ||||||||||||||||||||||||||||||
rdfs:subClassOf gist:StixCategoryObject ; | ||||||||||||||||||||||||||||||
skos:definition "A category describing Windows service statuses."^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:example ""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:note """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The Windows service status vocabulary is currently used in the following SCO(s): | ||||||||||||||||||||||||||||||
● Process (Windows Service extension) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
An enumeration of Windows service statuses."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "Windows™ Service Status Enumeration"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "windows-service-status-enum"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_AccountType_facebook | ||||||||||||||||||||||||||||||
a gist:AccountType ; | ||||||||||||||||||||||||||||||
rdfs:label "Facebook"^^xsd:string ; | ||||||||||||||||||||||||||||||
|
@@ -2473,6 +2487,62 @@ There is not enough information available to determine the type of threat actor. | |||||||||||||||||||||||||||||
skos:prefLabel "unknown"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_WindowsServiceStatus_service-continue-pending | ||||||||||||||||||||||||||||||
a gist:WindowsServiceStatus ; | ||||||||||||||||||||||||||||||
skos:definition """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The service continue is pending."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "SERVICE_CONTINUE_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "SERVICE_CONTINUE_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
Comment on lines
+2490
to
+2496
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.
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_WindowsServiceStatus_service-pause-pending | ||||||||||||||||||||||||||||||
a gist:WindowsServiceStatus ; | ||||||||||||||||||||||||||||||
skos:definition """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The service pause is pending."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "SERVICE_PAUSE_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "SERVICE_PAUSE_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_WindowsServiceStatus_service-paused | ||||||||||||||||||||||||||||||
a gist:WindowsServiceStatus ; | ||||||||||||||||||||||||||||||
skos:definition """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The service is paused."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "SERVICE_PAUSED"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "SERVICE_PAUSED"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_WindowsServiceStatus_service-running | ||||||||||||||||||||||||||||||
a gist:WindowsServiceStatus ; | ||||||||||||||||||||||||||||||
skos:definition """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The service is running."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "SERVICE_RUNNING"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "SERVICE_RUNNING"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_WindowsServiceStatus_service-start-pending | ||||||||||||||||||||||||||||||
a gist:WindowsServiceStatus ; | ||||||||||||||||||||||||||||||
skos:definition """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The service is starting."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "SERVICE_START_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "SERVICE_START_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_WindowsServiceStatus_service-stop-pending | ||||||||||||||||||||||||||||||
a gist:WindowsServiceStatus ; | ||||||||||||||||||||||||||||||
skos:definition """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The service is stopping."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "SERVICE_STOP_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "SERVICE_STOP_PENDING"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:_WindowsServiceStatus_service-stopped | ||||||||||||||||||||||||||||||
a gist:WindowsServiceStatus ; | ||||||||||||||||||||||||||||||
skos:definition """STIX 2.1 description: | ||||||||||||||||||||||||||||||
The service is not running."""^^xsd:string ; | ||||||||||||||||||||||||||||||
skos:prefLabel "SERVICE_STOPPED"^^xsd:string ; | ||||||||||||||||||||||||||||||
gist:stixTerm "SERVICE_STOPPED"^^xsd:string ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
gist:stixTerm | ||||||||||||||||||||||||||||||
a owl:AnnotationProperty ; | ||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||
|
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.