engagement:Honeypot leaf node


URI

https://ontology.adversaryengagement.org/ae/engagement/Honeypot

Label

Honeypot

Description

A controlled environment intended to be probed, compromised or attacked by adversaries or malware.

Target Classes (1)

Shape Properties

Instances of engagement:Honeypot can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

engagement:Honeypot
engagement:honeypotInteractionType 1 vocabulary:HoneypotInteractionTypeVocab
engagement:LureObject
engagement:hasAttackSurface 1 uco-core:UcoObject
engagement:hasCharacterization 1 uco-core:UcoObject
engagement:hasPerceptionCharacterization 1 uco-core:UcoObject

Implementation

@prefix engagement: <https://ontology.adversaryengagement.org/ae/engagement/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vocabulary: <https://ontology.adversaryengagement.org/ae/vocabulary/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

engagement:Honeypot a owl:Class,
        sh:NodeShape ;
    rdfs:label "Honeypot"@en ;
    rdfs:comment " A controlled environment intended to be probed, compromised or attacked by adversaries or malware."@en ;
    rdfs:subClassOf engagement:HoneyObject ;
    sh:property [ sh:datatype vocabulary:HoneypotInteractionTypeVocab ;
            sh:message "Value is outside the default vocabulary HoneypotInteractionTypeVocab." ;
            sh:path engagement:honeypotInteractionType ;
            sh:severity sh:Info ],
        [ sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:or ( [ sh:datatype vocabulary:HoneypotInteractionTypeVocab ] [ sh:datatype xsd:string ] ) ;
            sh:path engagement:honeypotInteractionType ],
        [ sh:message "Value is not member of the vocabulary HoneypotInteractionTypeVocab." ;
            sh:or ( [ sh:datatype vocabulary:HoneypotInteractionTypeVocab ;
                        sh:in ( "High"^^vocabulary:HoneypotTypeVocab "Low"^^vocabulary:HoneypotTypeVocab "Dynamic"^^vocabulary:HoneypotTypeVocab ) ] [ sh:datatype xsd:string ] ) ;
            sh:path engagement:honeypotInteractionType ] ;
    sh:targetClass engagement:Honeypot .