Skip to content

Issue 48: implement the stix 21 windows pe binary vocabulary #104

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
38 changes: 38 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:WindowsPEBinaryType
a owl:Class ;
rdfs:subClassOf gist:StixCategoryObject ;
skos:definition """STIX 2.1 description:
The Windows PE binary vocabulary is currently used in the following SCO(s):
● File (Windows PE Binary extension)

An open vocabulary of Windows PE binary types."""^^xsd:string ;
skos:example ""^^xsd:string ;
skos:note ""^^xsd:string ;
skos:prefLabel "Windows™ PE Binary Vocabulary"^^xsd:string ;
gist:stixTerm "windows-pebinary-type-ov"^^xsd:string ;
.
Comment on lines +171 to +183
Copy link
Contributor

Choose a reason for hiding this comment

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

  • Move to TBox
  • Change IRI per gist convention to avoid camelcasing ambiguity with acronyms
  • add examples
  • add note
  • align prefLabel with IRI, remove trademark character - asking for trouble.
Suggested change
gist:WindowsPEBinaryType
a owl:Class ;
rdfs:subClassOf gist:StixCategoryObject ;
skos:definition """STIX 2.1 description:
The Windows PE binary vocabulary is currently used in the following SCO(s):
● File (Windows PE Binary extension)
An open vocabulary of Windows PE binary types."""^^xsd:string ;
skos:example ""^^xsd:string ;
skos:note ""^^xsd:string ;
skos:prefLabel "Windows™ PE Binary Vocabulary"^^xsd:string ;
gist:stixTerm "windows-pebinary-type-ov"^^xsd:string ;
.
gist:WindowsPeBinaryType
a owl:Class ;
rdfs:subClassOf gist:StixCategoryObject ;
skos:definition """STIX 2.1 description:
The Windows PE binary vocabulary is currently used in the following SCO(s):
● File (Windows PE Binary extension)
An open vocabulary of Windows PE binary types."""^^xsd:string ;
skos:example "exe, dll"^^xsd:string ;
skos:note "PE stands for Portable Executable"^^xsd:string ;
skos:prefLabel "Windows PE Binary Type"^^xsd:string ;
gist:stixTerm "windows-pebinary-type-ov"^^xsd:string ;
.


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

gist:_WindowsPEBinaryType_dll
a gist:WindowsPEBinaryType ;
skos:definition """STIX 2.1 description:
Specifies that the PE binary is a dynamically linked library (DLL)."""^^xsd:string ;
skos:prefLabel "DLL"^^xsd:string ;
gist:stixTerm "dll"^^xsd:string ;
.

gist:_WindowsPEBinaryType_exe
a gist:WindowsPEBinaryType ;
skos:definition """STIX 2.1 description:
Specifies that the PE binary is an executable image (i.e., not an OBJ or DLL)."""^^xsd:string ;
skos:prefLabel "EXE"^^xsd:string ;
gist:stixTerm "exe"^^xsd:string ;
.

gist:_WindowsPEBinaryType_sys
a gist:WindowsPEBinaryType ;
skos:definition """STIX 2.1 description:
Specifies that the PE binary is a device driver (SYS)."""^^xsd:string ;
skos:prefLabel "SYS"^^xsd:string ;
gist:stixTerm "sys"^^xsd:string ;
.

gist:stixTerm
a owl:AnnotationProperty ;
.
Expand Down