observable:WindowsPEBinaryFileFacet leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#WindowsPEBinaryFileFacet

Label

WindowsPEBinaryFileFacet

Description

A Windows PE binary file facet is a grouping of characteristics unique to a Windows portable executable (PE) file.

Superclasses (1)

Shape Properties

Instances of observable:WindowsPEBinaryFileFacet can have the following properties:

PROPERTY

PROPERTY TYPE

DESCRIPTION

MIN COUNT

MAX COUNT

VALUE CONSTRAINTS

LOCAL TYPE
(type defined for property on this class)

GLOBAL RANGE
(type range for property globally)

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

Implementation

@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 .