https://cacontology.projectvic.org/grooming#VulnerabilityExploitationBusinessRule
Instances of cacontology-grooming:GroomingBehavior can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-grooming:GroomingBehavior | ||||
| 0 | 1 |
xsd:string
|
||
| 0 | 1 |
xsd:string
|
||
| 1 | 1 |
xsd:string
|
||
| 1 |
xsd:double
|
|||
| cacontology-grooming:groomingStage | 1 | 1 |
xsd:string
|
|
| 1 |
xsd:string
|
|||
| 1 |
xsd:dateTimeStamp
|
|||
| 1 |
xsd:dateTimeStamp
|
|||
| 0 | 1 |
xsd:dateTime
|
||
| 0 | 1 |
xsd:dateTime
|
||
@prefix cacontology-grooming: <https://cacontology.projectvic.org/grooming#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-grooming:VulnerabilityExploitationBusinessRule a sh:NodeShape ;
sh:sparql [ sh:message "High manipulation grooming behaviors must target critical vulnerabilities"@en ;
sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/grooming#"^^xsd:anyURI ;
sh:prefix "cacontology-grooming" ] ] ;
sh:select """
SELECT $this
WHERE {
$this cacontology-grooming:manipulationLevel "extreme" ;
cacontology-grooming:exploitsVulnerability ?vulnerability .
?vulnerability cacontology-grooming:vulnerabilityLevel ?level .
FILTER (?level NOT IN ("severe", "extreme", "critical"))
}
""" ] ;
sh:targetClass cacontology-grooming:GroomingBehavior .