Skip to content

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
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
54 changes: 54 additions & 0 deletions ontologies/vocabs.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;
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

Suggested change
skos:prefLabel "Windows Service Start Type Enumeration"^^xsd:string ;
skos:prefLabel "Windows Service Start Type"^^xsd:string ;

gist:stixTerm "windows-service-start-type-enum"^^xsd:string ;
.

gist:WindowsServiceStatus
a owl:Class ;
rdfs:subClassOf gist:StixCategoryObject ;
Expand Down Expand Up @@ -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 ;
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. Fix all of the instances.

Suggested change
skos:prefLabel "SERVICE_AUTO_START"^^xsd:string ;
skos:prefLabel "service auto start"^^xsd:string ;

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:
Expand Down