Skip to content

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
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions ontologies/vocabs.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
skos:definition "A category describing Windows service statuses."^^xsd:string ;
skos:definition "A category indicating the status of a Windows service."^^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 ;
Expand Down Expand Up @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IRI label mismatch.
'service' in IRI & label is redundant. Change all instances.

Suggested change
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 ;
.
gist:_WindowsServiceStatus_continue-pending
a gist:WindowsServiceStatus ;
skos:definition """STIX 2.1 description:
The service continue is pending."""^^xsd:string ;
skos:prefLabel "continue pending"^^xsd:string ;
gist:stixTerm "SERVICE_CONTINUE_PENDING"^^xsd:string ;
.


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 ;
.
Expand Down