Skip to content

Commit 4d4b0bc

Browse files
authored
Merge pull request #108 from semanticarts/issue-52-implement-the-stix-21-windows-service-status-enumeration
Issue 52 implement the stix 21 windows service status enumeration
2 parents 8c318c0 + 4219c28 commit 4d4b0bc

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

ontologies/vocabs.ttl

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,20 @@ gist:ThreatActorType
168168
rdfs:subClassOf gist:StixCategoryObject ;
169169
.
170170

171+
gist:WindowsServiceStatus
172+
a owl:Class ;
173+
rdfs:subClassOf gist:StixCategoryObject ;
174+
skos:definition "A category describing Windows service statuses."^^xsd:string ;
175+
skos:example ""^^xsd:string ;
176+
skos:note """STIX 2.1 description:
177+
The Windows service status vocabulary is currently used in the following SCO(s):
178+
● Process (Windows Service extension)
179+
180+
An enumeration of Windows service statuses."""^^xsd:string ;
181+
skos:prefLabel "Windows™ Service Status Enumeration"^^xsd:string ;
182+
gist:stixTerm "windows-service-status-enum"^^xsd:string ;
183+
.
184+
171185
gist:_AccountType_facebook
172186
a gist:AccountType ;
173187
rdfs:label "Facebook"^^xsd:string ;
@@ -2473,6 +2487,62 @@ There is not enough information available to determine the type of threat actor.
24732487
skos:prefLabel "unknown"^^xsd:string ;
24742488
.
24752489

2490+
gist:_WindowsServiceStatus_service-continue-pending
2491+
a gist:WindowsServiceStatus ;
2492+
skos:definition """STIX 2.1 description:
2493+
The service continue is pending."""^^xsd:string ;
2494+
skos:prefLabel "SERVICE_CONTINUE_PENDING"^^xsd:string ;
2495+
gist:stixTerm "SERVICE_CONTINUE_PENDING"^^xsd:string ;
2496+
.
2497+
2498+
gist:_WindowsServiceStatus_service-pause-pending
2499+
a gist:WindowsServiceStatus ;
2500+
skos:definition """STIX 2.1 description:
2501+
The service pause is pending."""^^xsd:string ;
2502+
skos:prefLabel "SERVICE_PAUSE_PENDING"^^xsd:string ;
2503+
gist:stixTerm "SERVICE_PAUSE_PENDING"^^xsd:string ;
2504+
.
2505+
2506+
gist:_WindowsServiceStatus_service-paused
2507+
a gist:WindowsServiceStatus ;
2508+
skos:definition """STIX 2.1 description:
2509+
The service is paused."""^^xsd:string ;
2510+
skos:prefLabel "SERVICE_PAUSED"^^xsd:string ;
2511+
gist:stixTerm "SERVICE_PAUSED"^^xsd:string ;
2512+
.
2513+
2514+
gist:_WindowsServiceStatus_service-running
2515+
a gist:WindowsServiceStatus ;
2516+
skos:definition """STIX 2.1 description:
2517+
The service is running."""^^xsd:string ;
2518+
skos:prefLabel "SERVICE_RUNNING"^^xsd:string ;
2519+
gist:stixTerm "SERVICE_RUNNING"^^xsd:string ;
2520+
.
2521+
2522+
gist:_WindowsServiceStatus_service-start-pending
2523+
a gist:WindowsServiceStatus ;
2524+
skos:definition """STIX 2.1 description:
2525+
The service is starting."""^^xsd:string ;
2526+
skos:prefLabel "SERVICE_START_PENDING"^^xsd:string ;
2527+
gist:stixTerm "SERVICE_START_PENDING"^^xsd:string ;
2528+
.
2529+
2530+
gist:_WindowsServiceStatus_service-stop-pending
2531+
a gist:WindowsServiceStatus ;
2532+
skos:definition """STIX 2.1 description:
2533+
The service is stopping."""^^xsd:string ;
2534+
skos:prefLabel "SERVICE_STOP_PENDING"^^xsd:string ;
2535+
gist:stixTerm "SERVICE_STOP_PENDING"^^xsd:string ;
2536+
.
2537+
2538+
gist:_WindowsServiceStatus_service-stopped
2539+
a gist:WindowsServiceStatus ;
2540+
skos:definition """STIX 2.1 description:
2541+
The service is not running."""^^xsd:string ;
2542+
skos:prefLabel "SERVICE_STOPPED"^^xsd:string ;
2543+
gist:stixTerm "SERVICE_STOPPED"^^xsd:string ;
2544+
.
2545+
24762546
gist:stixTerm
24772547
a owl:AnnotationProperty ;
24782548
.

0 commit comments

Comments
 (0)