https://ontology.solveit-df.org/solveit/core/Technique
A digital forensic technique representing how one might achieve an objective by performing an action. Based on the SOLVE-IT knowledge base.
Instances of solveit-core:Technique can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| From class solveit-core:Technique | |||
| solveit-core:hasCASEOutputClass | owl:DatatypeProperty | A CASE/UCO class IRI that represents an output of this technique. Multiple output classes can be specified (e.g., https://ontology.unifiedcyberontology.org/uco/observable/Image). | xsd:anyURI |
| solveit-core:hasExample | owl:DatatypeProperty | Example tool, implementation, or instance for a Technique. | xsd:string |
| solveit-core:hasSynonym | owl:DatatypeProperty | Alternative name or synonym for a Technique. | xsd:string |
| solveit-core:techniqueDescription | owl:DatatypeProperty | A detailed description of how the technique is performed. | xsd:string |
| solveit-core:techniqueDetails | owl:DatatypeProperty | Additional details about the technique. | xsd:string |
| solveit-core:techniqueID | owl:DatatypeProperty | The unique identifier for a SOLVE-IT technique (e.g., T1002). | xsd:string |
| solveit-core:techniqueName | owl:DatatypeProperty | The name of the technique (e.g., 'Disk imaging'). | xsd:string |
| solveit-core:hasPotentialWeakness | owl:ObjectProperty | Links a Technique to potential weaknesses (error categories from ASTM E3016-18) that may occur when using this technique. | solveit-core:Weakness |
| solveit-core:hasSubtechnique | owl:ObjectProperty | Links a Technique to more specific subtechniques. | solveit-core:Technique |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-core: <https://ontology.solveit-df.org/solveit/core/> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
solveit-core:Technique a owl:Class ;
rdfs:label "SOLVE-IT Technique"@en ;
rdfs:comment "A digital forensic technique representing how one might achieve an objective by performing an action. Based on the SOLVE-IT knowledge base."@en ;
rdfs:subClassOf uco-core:UcoObject .