Skip to content

Issue 51 implement the stix 21 windows service type enumeration #107

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

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
46 changes: 46 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:WindowsServiceType
a owl:Class ;
rdfs:subClassOf gist:StixCategoryObject ;
skos:definition "A category describing different Windows service types."^^xsd:string ;
skos:example ""^^xsd:string ;
skos:note """STIX 2.1 description:
The Windows service type vocabulary is currently used in the following SCO(s):
● Process (Windows Service extension)

An enumeration of Windows service types."""^^xsd:string ;
skos:prefLabel "Windows™ Service Type Enumeration"^^xsd:string ;
gist:stixTerm "windows-service-type-enum"^^xsd:string ;
.

gist:_AccountType_facebook
a gist:AccountType ;
rdfs:label "Facebook"^^xsd:string ;
Expand Down Expand Up @@ -2473,6 +2487,38 @@ There is not enough information available to determine the type of threat actor.
skos:prefLabel "unknown"^^xsd:string ;
.

gist:_WindowsServiceType_service-file-system-driver
a gist:WindowsServiceType ;
skos:definition """STIX 2.1 description:
The service is a file system driver."""^^xsd:string ;
skos:prefLabel "SERVICE_FILE_SYSTEM_DRIVER"^^xsd:string ;
gist:stixTerm "SERVICE_FILE_SYSTEM_DRIVER"^^xsd:string ;
.

gist:_WindowsServiceType_service-kernel-driver
a gist:WindowsServiceType ;
skos:definition """STIX 2.1 description:
The service is a device driver."""^^xsd:string ;
skos:prefLabel "SERVICE_KERNEL_DRIVER"^^xsd:string ;
gist:stixTerm "SERVICE_KERNEL_DRIVER"^^xsd:string ;
.

gist:_WindowsServiceType_service-win32-own-process
a gist:WindowsServiceType ;
skos:definition """STIX 2.1 description:
The service runs in its own process."""^^xsd:string ;
skos:prefLabel "SERVICE_WIN32_OWN_PROCESS"^^xsd:string ;
gist:stixTerm "SERVICE_WIN32_OWN_PROCESS"^^xsd:string ;
.

gist:_WindowsServiceType_service-win32-share-process
a gist:WindowsServiceType ;
skos:definition """STIX 2.1 description:
The service shares a process with other services."""^^xsd:string ;
skos:prefLabel "SERVICE_WIN32_SHARE_PROCESS"^^xsd:string ;
gist:stixTerm "SERVICE_WIN32_SHARE_PROCESS"^^xsd:string ;
.

gist:stixTerm
a owl:AnnotationProperty ;
.
Expand Down