https://unifiedcyberontology.org/ontology/uco/observable#WindowsPEBinaryFileFacet
A Windows PE binary file facet is a grouping of characteristics unique to a Windows portable executable (PE) file.
Instances of observable:WindowsPEBinaryFileFacet can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
investigation:authorizationIdentifier | owl:DatatypeProperty | The identifier for a particular authorization (e.g. warrant number) | xsd:string |
investigation:authorizationType | owl:DatatypeProperty | A label categorizing a type of authorization (e.g. warrant) | xsd:string |
investigation:exhibitNumber | owl:DatatypeProperty | Specifies a unique identifier assigned to a given object at any stage of an investigation to differentiate it from all other objects. | xsd:string |
investigation:focus | owl:DatatypeProperty | Specifies the topical focus of an investigation. | xsd:string |
investigation:investigationForm | owl:DatatypeProperty | A label categorizing a type of investigation (case, incident, suspicious-activity, etc.) | vocab:InvestigationFormVocab |
investigation:investigationStatus | owl:DatatypeProperty | A label characterizing the status of an investigation (open, closed, etc.). | xsd:string |
investigation:relevantAuthorization | owl:ObjectProperty | Specifies an authorization relevant to a particular investigation. | investigation:Authorization |
investigation:rootExhibitNumber | owl:DatatypeProperty | Specifies a unique identifier assigned to a given object at the start of its treatment as part of an investigation. The first node in a provenance chain, which can be viewed as a heirarchical tree originating from a single root. | xsd:string |
By the associated SHACL property shapes, instances of observable:WindowsPEBinaryFileFacet can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
LOCAL RANGE |
GLOBAL RANGE |
|
---|---|---|---|---|---|---|---|
observable:WindowsPEBinaryFileFacet | |||||||
observable:characteristics | owl:DatatypeProperty |
Specifies the flags that indicate the file’s characteristics.
|
0 | * |
xsd:unsignedShort
|
xsd:unsignedShort
|
|
observable:fileHeaderHashes | owl:ObjectProperty |
Specifies any hashes that were computed for the file header.
|
0 | * |
types:Hash
|
types:Hash
|
|
observable:impHash | owl:DatatypeProperty |
Specifies the special import hash, or ‘imphash’, calculated for the PE Binary based on its imported libraries and functions.
|
0 | 1 |
xsd:string
|
xsd:string
|
|
observable:machine | owl:DatatypeProperty |
Specifies the type of target machine.
|
0 | * |
xsd:string
|
xsd:string
|
|
observable:numberOfSections | owl:DatatypeProperty |
Specifies the number of sections in the PE binary, as a non-negative integer.
|
0 | 1 |
xsd:integer
|
xsd:integer
|
|
observable:numberOfSymbols | owl:DatatypeProperty |
Specifies the number of entries in the symbol table of the PE binary, as a non-negative integer.
|
0 | 1 |
xsd:integer
|
xsd:integer
|
|
observable:optionalHeader | owl:ObjectProperty |
Specifies the PE optional header of the PE binary.
|
0 | 1 |
observable:WindowsPEOptionalHeader
|
observable:WindowsPEOptionalHeader
|
|
observable:peType | owl:DatatypeProperty |
Specifies the type of the PE binary.
|
0 | 1 |
xsd:string
|
xsd:string
|
|
observable:pointerToSymbolTable | owl:DatatypeProperty |
Specifies the file offset of the COFF symbol table.
|
0 | * |
xsd:hexBinary
|
xsd:hexBinary
|
|
observable:sections | owl:ObjectProperty |
Specifies metadata about the sections in the PE file.
|
0 | * |
observable:WindowsPESection
|
observable:WindowsPESection
|
|
observable:sizeOfOptionalHeader | owl:DatatypeProperty |
Specifies the size of the optional header of the PE binary.
|
0 | 1 |
xsd:integer
|
xsd:integer
|
|
observable:timeDateStamp | owl:DatatypeProperty |
Specifies the time when the PE binary was created.
|
0 | 1 |
xsd:dateTime
|
xsd:dateTime
|
@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@prefix observable: <https://unifiedcyberontology.org/ontology/uco/observable#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix types: <https://unifiedcyberontology.org/ontology/uco/types#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:WindowsPEBinaryFileFacet a owl:Class,
sh:NodeShape ;
rdfs:label "WindowsPEBinaryFileFacet"@en ;
rdfs:comment "A Windows PE binary file facet is a grouping of characteristics unique to a Windows portable executable (PE) file."@en ;
rdfs:subClassOf core:Facet ;
sh:property [ sh:class observable:WindowsPEOptionalHeader ;
sh:maxCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:optionalHeader ],
[ sh:class observable:WindowsPESection ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:sections ],
[ sh:class types:Hash ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:fileHeaderHashes ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:timeDateStamp ],
[ sh:datatype xsd:hexBinary ;
sh:nodeKind sh:Literal ;
sh:path observable:pointerToSymbolTable ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:numberOfSections ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:numberOfSymbols ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:sizeOfOptionalHeader ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:impHash ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:peType ],
[ sh:datatype xsd:string ;
sh:nodeKind sh:Literal ;
sh:path observable:machine ],
[ sh:datatype xsd:unsignedShort ;
sh:nodeKind sh:Literal ;
sh:path observable:characteristics ] ;
sh:targetClass observable:WindowsPEBinaryFileFacet .