Skip to content

Commit 6459ba1

Browse files
authored
Merge pull request #106 from semanticarts/issue-50-implement-the-stix-21-windows-service-start-type-enumeration
Issue 50 implement the stix 21 windows service start type enumeration
2 parents 79cb0ba + cd70446 commit 6459ba1

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

ontologies/vocabs.ttl

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,20 @@ An open vocabulary of Windows PE binary types."""^^xsd:string ;
205205
gist:stixTerm "windows-pebinary-type-ov"^^xsd:string ;
206206
.
207207

208+
gist:WindowsServiceStartType
209+
a owl:Class ;
210+
rdfs:subClassOf gist:StixCategoryObject ;
211+
skos:definition "A category indicating the start type of a Windows service."^^xsd:string ;
212+
skos:example ""^^xsd:string ;
213+
skos:note """STIX 2.1 description:
214+
The Windows service start type vocabulary is currently used in the following SCO(s):
215+
● Process (Windows Service extension)
216+
217+
An enumeration of Windows service start types."""^^xsd:string ;
218+
skos:prefLabel "Windows™ Service Start Type Enumeration"^^xsd:string ;
219+
gist:stixTerm "windows-service-start-type-enum"^^xsd:string ;
220+
.
221+
208222
gist:WindowsServiceStatus
209223
a owl:Class ;
210224
rdfs:subClassOf gist:StixCategoryObject ;
@@ -2700,6 +2714,46 @@ Specifies that the PE binary is a device driver (SYS)."""^^xsd:string ;
27002714
gist:stixTerm "sys"^^xsd:string ;
27012715
.
27022716

2717+
gist:_WindowsServiceStartType_service-auto-start
2718+
a gist:WindowsServiceStartType ;
2719+
skos:definition """STIX 2.1 description:
2720+
A service started automatically by the service control manager during system startup."""^^xsd:string ;
2721+
skos:prefLabel "SERVICE_AUTO_START"^^xsd:string ;
2722+
gist:stixTerm "SERVICE_AUTO_START"^^xsd:string ;
2723+
.
2724+
2725+
gist:_WindowsServiceStartType_service-boot-start
2726+
a gist:WindowsServiceStartType ;
2727+
skos:definition """STIX 2.1 description:
2728+
A device driver started by the system loader. This value is valid only for driver services."""^^xsd:string ;
2729+
skos:prefLabel "SERVICE_BOOT_START"^^xsd:string ;
2730+
gist:stixTerm "SERVICE_BOOT_START"^^xsd:string ;
2731+
.
2732+
2733+
gist:_WindowsServiceStartType_service-demand-start
2734+
a gist:WindowsServiceStartType ;
2735+
skos:definition """STIX 2.1 description:
2736+
A service started by the service control manager when a process calls the StartService function."""^^xsd:string ;
2737+
skos:prefLabel "SERVICE_DEMAND_START"^^xsd:string ;
2738+
gist:stixTerm "SERVICE_DEMAND_START"^^xsd:string ;
2739+
.
2740+
2741+
gist:_WindowsServiceStartType_service-disabled
2742+
a gist:WindowsServiceStartType ;
2743+
skos:definition """STIX 2.1 description:
2744+
A service that cannot be started. Attempts to start the service result in the error code ERROR_SERVICE_DISABLED."""^^xsd:string ;
2745+
skos:prefLabel "SERVICE_DISABLED"^^xsd:string ;
2746+
gist:stixTerm "SERVICE_DISABLED"^^xsd:string ;
2747+
.
2748+
2749+
gist:_WindowsServiceStartType_service-system-alert
2750+
a gist:WindowsServiceStartType ;
2751+
skos:definition """STIX 2.1 description:
2752+
A device driver started by the IoInitSystem function. This value is valid only for driver services."""^^xsd:string ;
2753+
skos:prefLabel "SERVICE_SYSTEM_ALERT"^^xsd:string ;
2754+
gist:stixTerm "SERVICE_SYSTEM_ALERT"^^xsd:string ;
2755+
.
2756+
27032757
gist:_WindowsServiceStatus_service-continue-pending
27042758
a gist:WindowsServiceStatus ;
27052759
skos:definition """STIX 2.1 description:

0 commit comments

Comments
 (0)