engagement:Breadcrumb leaf node


URI

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

Label

Breadcrumb

Description

A Breadcrumb is a set of objects placed to be at least partially, sequentially interacted by an adversary to ellicit an explicit response, often in the context of lateral movement.

Usage

Instances of engagement:Breadcrumb can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
engagement:alertContext owl:ObjectProperty An alert context describes the association of actions and objects relating to an alert. uco-core:UcoObject

Property Shapes

By the associated SHACL property shapes, instances of engagement:Breadcrumb can have the following properties:

PROPERTY

PROPERTY TYPE

DESCRIPTION

MIN COUNT

MAX COUNT

LOCAL RANGE
(type range for property on this class)

GLOBAL RANGE
(type range for property globally)

engagement:Breadcrumb
engagement:breadcrumbTargetObject owl:ObjectProperty breadcrumbTargetObject specifies the target object or resource which the breadcrumb is luring an adversary to.
1 uco-core:UcoObject
uco-core:UcoObject
engagement:hasCharacterization owl:ObjectProperty hasCharacterization is an object property which describes the UcoObjects which compose a deception object or adversary engagement concept.
uco-core:UcoObject
uco-core:UcoObject
engagement:LureObject
engagement:hasAttackSurface owl:ObjectProperty hasAttackSurface is an object property which describes the UcoObjects which compose the attack surface which is expected to interacted with by an adversary.
1 uco-core:UcoObject
uco-core:UcoObject
engagement:hasCharacterization owl:ObjectProperty hasCharacterization is an object property which describes the UcoObjects which compose a deception object or adversary engagement concept.
1 uco-core:UcoObject
uco-core:UcoObject
engagement:hasPerceptionCharacterization owl:ObjectProperty hasPerceptionCharacterization is an object property which describes the UcoObjects which compose the perception object which an adversary perceives.
1 uco-core:UcoObject
uco-core:UcoObject

Implementation

@prefix engagement: <https://ontology.adversaryengagement.org/ae/engagement/> .
@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 uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

engagement:Breadcrumb a owl:Class,
        sh:NodeShape ;
    rdfs:label "Breadcrumb"@en ;
    rdfs:comment "A Breadcrumb is a set of objects placed to be at least partially, sequentially interacted by an adversary to ellicit an explicit response, often in the context of lateral movement."@en ;
    rdfs:subClassOf engagement:LureObject ;
    sh:property [ sh:class uco-core:UcoObject ;
            sh:nodeKind sh:IRI ;
            sh:path engagement:hasCharacterization ],
        [ sh:class uco-core:UcoObject ;
            sh:minCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path engagement:breadcrumbTargetObject ] ;
    sh:targetClass engagement:Breadcrumb .