observable:WindowsPEBinaryFileFacet leaf node


URI

https://ontology.unifiedcyberontology.org/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.

Shape Properties

Instances of observable:WindowsPEBinaryFileFacet can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:WindowsPEBinaryFileFacet
observable:characteristics xsd:unsignedShort
observable:fileHeaderHashes types:Hash
observable:impHash 1 xsd:string
observable:machine xsd:string
observable:numberOfSections 1 xsd:integer
observable:numberOfSymbols 1 xsd:integer
observable:optionalHeader 1 observable:WindowsPEOptionalHeader
observable:peType 1 xsd:string
observable:pointerToSymbolTable xsd:hexBinary
observable:sections observable:WindowsPESection
observable:sizeOfOptionalHeader 1 xsd:integer
observable:timeDateStamp 1 xsd:dateTime

Implementation

@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/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://ontology.unifiedcyberontology.org/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:IRI ;
            sh:path observable:optionalHeader ],
        [ sh:class observable:WindowsPESection ;
            sh:nodeKind sh:IRI ;
            sh:path observable:sections ],
        [ sh:class types:Hash ;
            sh:nodeKind sh:IRI ;
            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 .