@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc11: <http://purl.org/dc/elements/1.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ns0: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix ns1: <http://purl.org/vocab/vann/> .

<http://securitytoolbox.appspot.com/stac#>
  a owl:Ontology, <http://purl.org/vocommons/voaf#Vocabulary> ;
  dc11:title "The STAC Ontology (Security Toolbox : Attacks and Countermeasures)"@en ;
  dc11:description "A vocabulary to describe main security and cryptographic concepts: attacks, security mechanisms, OSI model, security protocols, security tools in numerous technologies: Web applications, network management, Sensor networks, Cellular (2G, 3G, 4G) and Wireless (Wifi), etc. "@en ;
  dc11:creator "Amelie Gyrard. Eurecom"^^xsd:string ;
  dc:issued "2013-04-30"^^xsd:date ;
  dc:modified "2013-06-02"^^xsd:date ;
  owl:versionInfo 0.2 ;
  rdfs:comment ""@en ;
  ns0:term_status "Work in progress" ;
  ns1:preferredNamespacePrefix "stac" ;
  ns1:preferredNamespaceUri "http://securitytoolbox.appspot.com/stac#" ;
  rdfs:seeAlso "This work has been inspired for the cryptographic concepts and security properties by \"Security Ontology for Annotating resources\" [Kim et al. 2005]"^^xsd:string, "This work has been inspired for the cryptographic concepts and security properties by \"Security in the Semantic Web using OWL\" [Denker et al. 2005]"^^xsd:string, "This work has been inspired for the cryptographic concepts and security properties by \"Construction d'une ontologie pour le domaine de la securite\" [Lekhchine et al. 2009]"^^xsd:string, "This work has been inspired for the cryptographic concepts and security properties by \"An ontology of Information Security\" [Herzog et al. 2007]"^^xsd:string .

<http://securitytoolbox.appspot.com/stac#Requirement>
  a owl:Class ;
  rdfs:label "Requirement"@en ;
  rdfs:comment "The application to secure has requirements (e.g., high sensitive data or specific technologies)."@en .

<http://securitytoolbox.appspot.com/stac#DataTypeSensitive>
  a owl:Class ;
  rdfs:label "DataTypeSensitive"@en ;
  rdfs:comment "DataTypeSensitive (low, medium or high sensitive). The data to secure."@en .

<http://securitytoolbox.appspot.com/stac#Technology>
  a owl:Class ;
  rdfs:label "Technology"@en ;
  rdfs:comment "Technologies can be wireless (Wi-Fi, Wimax), cellular (2G, 3G, 4G), sensor  networks, web application, etc."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Requirement> .

<http://securitytoolbox.appspot.com/stac#Architecture>
  a owl:Class ;
  rdfs:label "Architecture"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#ArchitectureComponent>
  a owl:Class ;
  rdfs:label "Architecture component"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#Feature>
  a owl:Class ;
  rdfs:label "Feature"@en ;
  rdfs:comment "Features of security mechanisms. For example a sensor technology is low energy consuming, and the symmetric algorithm (a SecurityMechanism) is low energy consumming."@en .

<http://securitytoolbox.appspot.com/stac#PositiveFeature>
  a owl:Class ;
  rdfs:label "Positive Feature"@en ;
  rdfs:comment "Positive Feature of security mechanisms"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Feature> .

<http://securitytoolbox.appspot.com/stac#NegativeFeature>
  a owl:Class ;
  rdfs:label "Negative Feature"@en ;
  rdfs:comment "Negative Feature of security mechanisms"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Feature> .

<http://securitytoolbox.appspot.com/stac#SecurityProperty>
  a owl:Class ;
  rdfs:label "SecurityProperty"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Requirement> ;
  rdfs:seeAlso <http://www.ida.liu.se/~iislab/projects/secont/Security.owlGoal>, <http://www.daml.org/services/owl-s/security/security.owl#SecurityNotation>, <http://securitytoolbox.appspot.com/securityMain#SecurityObjective>, <http://securitytoolbox.appspot.com/MASO#Objectif>, <http://semanticweb.org/images/5/53/OntologySecurity.owlServices>, <http://preciosa.informatik.hu-berlin.de/ontology/security.owlSecurityProtectionMechanism> .

<http://securitytoolbox.appspot.com/stac#Attack>
  a owl:Class ;
  rdfs:label "Attack"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#SecurityMechanism>
  a owl:Class ;
  rdfs:label "SecurityMechanism"@en ;
  rdfs:comment "Security Mechanisms are processes that are used to detect, prevent and recover from security attacks."@en ;
  dc11:description "Security Mechanisms are processes that are used to detect, prevent and recover from security attacks."@en .

<http://securitytoolbox.appspot.com/stac#SecurityTool>
  a owl:Class ;
  rdfs:label "Security Tool"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#AuthenticationServer>
  a owl:Class ;
  rdfs:label "Authentication Server (AS)"@en ;
  rdfs:comment "It identifies the supplicant, checks its credentials, and define privileges and restrictions, and allows or denies it access to the network and services."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#Obfuscation>
  a owl:Class ;
  rdfs:label "Obfuscation"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityTool>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#occursInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
  ] .

<http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityTool>
  a owl:Class ;
  rdfs:label "Network Management Security Tool"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityTool>, <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#MessageEncryptionTool>
  a owl:Class ;
  rdfs:label "Message Encryption Tool"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityTool> .

<http://securitytoolbox.appspot.com/stac#Protocol>
  a owl:Class ;
  rdfs:label "Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#OSIModel>
  a owl:Class ;
  rdfs:label ""@en ;
  rdfs:comment ""@en ;
  owl:oneOf (
   <http://securitytoolbox.appspot.com/stac#PhysicalLayer>
   <http://securitytoolbox.appspot.com/stac#LinkLayer>
   <http://securitytoolbox.appspot.com/stac#NetworkLayer>
   <http://securitytoolbox.appspot.com/stac#TransportLayer>
   <http://securitytoolbox.appspot.com/stac#SessionLayer>
   <http://securitytoolbox.appspot.com/stac#PresentationLayer>
   <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
 ) .

<http://securitytoolbox.appspot.com/stac#OSIModelLayer>
  a owl:Class ;
  rdfs:label "OSI Model Layer"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#isReplacedBy>
  a owl:ObjectProperty, owl:ReflexiveProperty ;
  rdfs:label "isReplacedBy"@en ;
  rdfs:comment "When a SecurityMechanism is not secured anymore, it is replaced by a more secure SecurityMechanism. This is also the case for technologies: a technology can be replaced by another one more recent. (E.G., 2G has been replaced by 3G)"@en ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#SecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#occursInLayer>
  a owl:ObjectProperty ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Attack> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#OSIModelLayer> ;
  rdfs:label "occursInLayer"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#protectsInLayer>
  a owl:ObjectProperty ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#OSIModelLayer> ;
  rdfs:label "protectsInLayer"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#hasSecurityMechanism>
  a owl:ObjectProperty ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#isSecurityMechanismOf> ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Attack> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:label "hasSecurityMechanism"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#isSecurityMechanismOf>
  a owl:ObjectProperty ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#Attack> ;
  rdfs:label "isSecurityMechanismOf"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#satisfies>
  a owl:ObjectProperty ;
  rdfs:label "satisfies"@en ;
  rdfs:comment "A security mechanism (e.g., VPN) satisfies some security properties (e.g., authentication)"@en ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#SecurityProperty> .

<http://securitytoolbox.appspot.com/stac#threatens>
  a owl:ObjectProperty ;
  rdfs:label "threatens"@en ;
  rdfs:comment "An attack (e.g., eavesdropping) threatens some security properties (e.g., confidentiality)"@en ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Attack> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#SecurityProperty> .

<http://securitytoolbox.appspot.com/stac#isProtectedBy>
  a owl:ObjectProperty ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#protects> ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Technology> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:label "isProtectedBy"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#protects>
  a owl:ObjectProperty ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#isProtectedBy> ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#Technology> ;
  rdfs:label "protects"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#hasVulnerability>
  a owl:ObjectProperty ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#isVulnerabilityOf> ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Technology> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#Attack> ;
  rdfs:label "has vulnerability"@en ;
  rdfs:comment "A technology can be vulnerable to some attacks."@en .

<http://securitytoolbox.appspot.com/stac#isVulnerabilityOf>
  a owl:ObjectProperty ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Attack> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#Technology> ;
  rdfs:label "is Vulnerability Of"@en ;
  rdfs:comment "Some attacks cannot be thwart in technologies. For example, the Denial of Service is difficult to thwart in different technologies."@en .

<http://securitytoolbox.appspot.com/stac#hasFeature>
  a owl:ObjectProperty ;
  rdfs:label "hasFeature"@en ;
  rdfs:comment "A SecurityMechanism has specific features (secured, depreceted, low energy consuming). For example, an asymmetric algorithm is high energy consuming."@en ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#Feature> ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#isFeatureOf> .

<http://securitytoolbox.appspot.com/stac#isFeatureOf>
  a owl:ObjectProperty ;
  rdfs:label "isFeatureOf"@en ;
  rdfs:comment "Features are related to security mechanisms. For example, an asymmetric algorithm is high energy consuming."@en ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Feature> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#SecurityMechanism> ;
  owl:inverseOf <http://securitytoolbox.appspot.com/stac#hasFeature> .

<http://securitytoolbox.appspot.com/stac#hasArchitecture>
  a owl:ObjectProperty ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#Technology> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#Architecture> ;
  rdfs:label "hasArchitecture"@en ;
  rdfs:comment "A technology has a specific architecture."@en .

<http://securitytoolbox.appspot.com/stac#Worm>
  a owl:Class ;
  rdfs:label "Worm"@en ;
  rdfs:comment "Worms are self-propagating pieces of malicious software. They propagate from one computer/device to another via a network link."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, <http://securitytoolbox.appspot.com/stac#GPRSAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#occursInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
  ] ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006]"@en .

<http://securitytoolbox.appspot.com/stac#Virus>
  a owl:Class ;
  rdfs:label "Virus"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#GPRSAttack>, <http://securitytoolbox.appspot.com/stac#RfidAttack>, <http://securitytoolbox.appspot.com/stac#WebAttack>, <http://securitytoolbox.appspot.com/stac#NetworkManagementAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#Antivirus>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#occursInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
  ] ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006], Paper: Survey of Security and Privacy Issues of Internet of Things [Borgohain et al. 2015]"@en .

<http://securitytoolbox.appspot.com/stac#Spam>
  a owl:Class ;
  rdfs:label "Spam"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#AntiSpam>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#occursInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
  ] .

<http://securitytoolbox.appspot.com/stac#Spyware>
  a owl:Class ;
  rdfs:label "Spyware"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack> .

<http://securitytoolbox.appspot.com/stac#Troyan>
  a owl:Class ;
  rdfs:label "Troyan"@en ;
  rdfs:comment "A Trojan horse is a malicious piece of software hidden in a program that performs normal tasks. Program that does something malicious (such as capturing passwords) when run by an unsuspecting user."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Virus>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#isVulnerabilityOf> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebAttack>
  ] ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006]"@en .

<http://securitytoolbox.appspot.com/stac#PolymorphicVirus>
  a owl:Class ;
  rdfs:label "Polymorphic Virus"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Virus> .

<http://securitytoolbox.appspot.com/stac#Antivirus>
  a owl:Class ;
  rdfs:label "Antivirus"@en ;
  rdfs:comment "Anti-viruses softwares applications will reduce viruses and malware on M2M equipment."@en ;
  dc11:description "See Paper: A study of information security for M2M and IoT [Jiang et al. 2010]"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#M2MSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#IntegrityMethod> .

<http://securitytoolbox.appspot.com/stac#Honeypot>
  a owl:Class ;
  rdfs:label "Honeypot"@en ;
  rdfs:comment "Honeypots are hosts meant to be attacked either to distract the attackers or to research their techniques."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#AntiSpyware>
  a owl:Class ;
  rdfs:label "Anti Spyware"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#AntiSpam>
  a owl:Class ;
  rdfs:label "Anti Spam"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#ExternalAttack>
  a owl:Class ;
  rdfs:label "External Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ActiveAttack> ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006]"@en .

<http://securitytoolbox.appspot.com/stac#PassiveAttack>
  a owl:Class ;
  rdfs:label "Passive Attack"@en ;
  rdfs:comment "Malicious users violate the confidentiality  of the information exchanged over the network."@en ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006]"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack> .

<http://securitytoolbox.appspot.com/stac#ActiveAttack>
  a owl:Class ;
  rdfs:label "Active Attack"@en ;
  rdfs:comment "Active attacks involve actions performed by adversaries to gain the control of the network."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack> ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006]"@en .

<http://securitytoolbox.appspot.com/stac#InternalAttack>
  a owl:Class ;
  rdfs:label "Internal Attack"@en ;
  rdfs:comment "Internal attacks are launched from compromised nodes, are much more sophisticated than external attacks."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ActiveAttack> ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006]"@en .

<http://securitytoolbox.appspot.com/stac#Sniffer>
  a owl:Class ;
  rdfs:label "Sniffer"@en ;
  rdfs:comment "A Sniffer tries to spy passwords for instance."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityTool> .

<http://securitytoolbox.appspot.com/stac#WifiAttackTool>
  a owl:Class ;
  rdfs:label "Wifi Attack Tool"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityTool> .

<http://securitytoolbox.appspot.com/stac#JavaSecurityApi>
  a owl:Class ;
  rdfs:label "Java Api"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#Captcha>
  a owl:Class ;
  rdfs:label "Captcha"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#SymmetricSensorKey>
  a owl:Class ;
  rdfs:label "SymmetricSensorKey"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SymmetricKey> .

<http://securitytoolbox.appspot.com/stac#SensorKeyManagement>
  a owl:Class ;
  rdfs:label "Sensor Key Management"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#KeyManagement>, <http://securitytoolbox.appspot.com/stac#SensorSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#GSMKeyManagement>
  a owl:Class ;
  rdfs:label "GSM Key Management"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#KeyManagement>, <http://securitytoolbox.appspot.com/stac#GSMSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#UMTSKeyManagement>
  a owl:Class ;
  rdfs:label "UMTS Key Management"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#KeyManagement>, <http://securitytoolbox.appspot.com/stac#UMTSSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#WimaxKeyManagement>
  a owl:Class ;
  rdfs:label "Wimax Key Management"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#KeyManagement>, <http://securitytoolbox.appspot.com/stac#WimaxSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#WifiKeyManagement>
  a owl:Class ;
  rdfs:label "Wifi Key Management"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#KeyManagement>, <http://securitytoolbox.appspot.com/stac#WifiSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#MeshKeyManagement>
  a owl:Class ;
  rdfs:label "Mesh Key Management"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#KeyManagement>, <http://securitytoolbox.appspot.com/stac#MeshSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#SensorAttack>
  a owl:Class ;
  rdfs:label "Sensor Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#SensorSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#ManetAttack>
  a owl:Class ;
  rdfs:label "Manet Attack"@en ;
  rdfs:comment "Manet (Mobile ad hoc network) is a self-configuring network of mobile devices connected."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ManetSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#MeshAttack>
  a owl:Class ;
  rdfs:label "Mesh Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#MeshSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#M2MAttack>
  a owl:Class ;
  rdfs:label "M2M Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#M2MSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#UwbAttack>
  a owl:Class ;
  rdfs:label "Uwb Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UwbSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#RfidAttack>
  a owl:Class ;
  rdfs:label "RFID Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#RfidSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#BluetoothAttack>
  a owl:Class ;
  rdfs:label "Bluetooth Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#BluetoothSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#ZigbeeAttack>
  a owl:Class ;
  rdfs:label "Zigbee Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ZigbeeSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#WifiAttack>
  a owl:Class ;
  rdfs:label "Wifi Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WifiSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#WimaxAttack>
  a owl:Class ;
  rdfs:label "Wimax Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WimaxSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#GSMAttack>
  a owl:Class ;
  rdfs:label "GSM Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GSMSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#HSPDAAttack>
  a owl:Class ;
  rdfs:label "HSPDA Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#HSPDASecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#UMTSAttack>
  a owl:Class ;
  rdfs:label "UMTS Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UMTSSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#EDGEAttack>
  a owl:Class ;
  rdfs:label "EDGE Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#EDGESecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#GPRSAttack>
  a owl:Class ;
  rdfs:label "GPRS Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GPRSSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#LTEAttack>
  a owl:Class ;
  rdfs:label "LTE Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LTESecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#WebAttack>
  a owl:Class ;
  rdfs:label "Web Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#occursInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
  ] .

<http://securitytoolbox.appspot.com/stac#CloudAttack>
  a owl:Class ;
  rdfs:label "Cloud Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#CloudSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#FrameworkAttack>
  a owl:Class ;
  rdfs:label "Framework Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#FrameworkSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#DatabaseAttack>
  a owl:Class ;
  rdfs:label "Database Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#DatabaseSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#ECommerceAttack>
  a owl:Class ;
  rdfs:label "ECommerce Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ECommerceSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#ProgrammingLanguageAttack>
  a owl:Class ;
  rdfs:label "Programming Language Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ProgrammingLanguageSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#WebServiceAttack>
  a owl:Class ;
  rdfs:label "Web Service Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebServiceSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#NetworkManagementAttack>
  a owl:Class ;
  rdfs:label "Network Management Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#ServerAttack>
  a owl:Class ;
  rdfs:label "Server Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ServerSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#OperatingSystemAttack>
  a owl:Class ;
  rdfs:label "Operating System Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#OperatingSystemSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#EthernetAttack>
  a owl:Class ;
  rdfs:label "Ethernet Attack"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Attack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#EthernetSecurityMechanism>
  ] .

<http://securitytoolbox.appspot.com/stac#EthernetSecurityMechanism>
  a owl:Class ;
  rdfs:label "Ethernet SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#EthernetTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#M2MSecurityMechanism>
  a owl:Class ;
  rdfs:label "M2M SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#M2MTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#ManetSecurityMechanism>
  a owl:Class ;
  rdfs:label "Manet SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ManetTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#SensorSecurityMechanism>
  a owl:Class ;
  rdfs:label "Sensor Security Mechanism"@en ;
  rdfs:comment "Sensor nodes have very limited computationnal power, and traditional security and encryption techniques are not-well suitd to this domain."@en ;
  dc11:description "Sensor nodes have very limited computationnal power, and traditional security and encryption techniques are not-well suitd to this domain."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#SensorTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#MeshSecurityMechanism>
  a owl:Class ;
  rdfs:label "Mesh Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#MeshTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>
  a owl:Class ;
  rdfs:label "Web Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebTechnology>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protectsInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
  ] .

<http://securitytoolbox.appspot.com/stac#CloudSecurityMechanism>
  a owl:Class ;
  rdfs:label "Cloud Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#CloudTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#FrameworkSecurityMechanism>
  a owl:Class ;
  rdfs:label "Framework Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#FrameworkTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#DatabaseSecurityMechanism>
  a owl:Class ;
  rdfs:label "Database Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#DatabaseTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#ProgrammingLanguageSecurityMechanism>
  a owl:Class ;
  rdfs:label "Programming Language Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ProgrammingLanguageTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#ECommerceMechanism>
  a owl:Class ;
  rdfs:label "ECommerce Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ECommerceTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#WebServiceMechanism>
  a owl:Class ;
  rdfs:label "Web Service Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebServiceTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>
  a owl:Class ;
  rdfs:label "Network Management Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#NetworkManagementTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#OperatingSystemSecurityMechanism>
  a owl:Class ;
  rdfs:label "Operating System Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#OperatingSystemTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#ServerSecurityMechanism>
  a owl:Class ;
  rdfs:label "Server Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ServerTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#LTESecurityMechanism>
  a owl:Class ;
  rdfs:label "LTE Security Mechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LTETechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#GSMSecurityMechanism>
  a owl:Class ;
  rdfs:label "GSM SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GSMTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#HSPDASecurityMechanism>
  a owl:Class ;
  rdfs:label "HSPDA SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#HSPDATechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#GPRSSecurityMechanism>
  a owl:Class ;
  rdfs:label "GPRS SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GPRSTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#UMTSSecurityMechanism>
  a owl:Class ;
  rdfs:label "UMTS SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UMTSTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#EDGESecurityMechanism>
  a owl:Class ;
  rdfs:label "EDGE SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#EDGETechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#RfidSecurityMechanism>
  a owl:Class ;
  rdfs:label "Rfid SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#RfidTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#UwbSecurityMechanism>
  a owl:Class ;
  rdfs:label "Uwb SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UwbTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#BluetoothSecurityMechanism>
  a owl:Class ;
  rdfs:label "Bluetooth SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#BluetoothTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#ZigbeeSecurityMechanism>
  a owl:Class ;
  rdfs:label "Zigbee SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ZigbeeTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#WimaxSecurityMechanism>
  a owl:Class ;
  rdfs:label "Wimax SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WimaxTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#WifiSecurityMechanism>
  a owl:Class ;
  rdfs:label "Wifi SecurityMechanism"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WifiTechnology>
  ] .

<http://securitytoolbox.appspot.com/stac#EthernetTechnology>
  a owl:Class ;
  rdfs:label "Ethernet"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#HighCostDeployment>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#EthernetAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#GSMTechnology>
  a owl:Class ;
  rdfs:label "Global System for Mobile Communication (GSM) or 2G"@en ;
  rdfs:comment "Global System for Mobile Communication (GSM) or 2G"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#isReplacedBy> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GPRSTechnology>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasArchitecture> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GSMArchitecture>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GSMAttack>
  ] ;
  rdfs:seeAlso <http://ontology.ist-spice.org/mobile-ontology/1/0/service_context/0/service_context.owl#GSM> .

<http://securitytoolbox.appspot.com/stac#GPRSTechnology>
  a owl:Class ;
  rdfs:label "General Packet Radio Service (GPRS) or 2.5G"@en ;
  rdfs:comment "General Packet Radio Service (GPRS) or 2.5G"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#isReplacedBy> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#EDGETechnology>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasArchitecture> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GPRSArchitecture>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#GPRSAttack>
  ] ;
  rdfs:seeAlso <http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#GPRS> .

<http://securitytoolbox.appspot.com/stac#EDGETechnology>
  a owl:Class ;
  rdfs:label "Enhanced Data Rates for GSM Evolution (EDGE) or 2.75G"@en ;
  rdfs:comment "Enhanced Data Rates for GSM Evolution (EDGE) or 2.75G"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#isReplacedBy> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UMTSTechnology>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#EDGEAttack>
  ] ;
  rdfs:seeAlso <http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#EDGE> .

<http://securitytoolbox.appspot.com/stac#UMTSTechnology>
  a owl:Class ;
  rdfs:label "3G technology (UMTS:Universal Mobile Telecommunications System)"@en ;
  rdfs:comment "Universal Mobile Telecommunications System (UMTS). Third Generation (3G)"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#isReplacedBy> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#HSPDATechnology>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasArchitecture> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UMTSArchitecture>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UMTSAttack>
  ] ;
  rdfs:seeAlso <http://ontology.ist-spice.org/mobile-ontology/1/0/service_context/0/service_context.owl#UMTS>, <http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#UMTS> .

<http://securitytoolbox.appspot.com/stac#HSPDATechnology>
  a owl:Class ;
  rdfs:label "High-Speed Download Packet Access (HSPDA) or 3.5G"@en ;
  rdfs:comment "High-Speed Download Packet Access (HSPDA) or 3.5G"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#isReplacedBy> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LTETechnology>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#HSPDAAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#LTETechnology>
  a owl:Class ;
  rdfs:label "Long Term Evolution (LTE) Technology or 4G"@en ;
  rdfs:comment "Long Term Evolution (LTE) Technology or 4G"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasArchitecture> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LTEArchitecture>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LTEAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#BluetoothTechnology>
  a owl:Class ;
  rdfs:label "Bluetooth Technology"@en ;
  rdfs:comment "A protocol for short-range (up to 100 meters) wireless networks."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#BluetoothAttack>
  ] ;
  rdfs:seeAlso <http://ontology.ist-spice.org/mobile-ontology/1/0/service_context/0/service_context.owl#Bluetooth>, <http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#BluetoothConnectivity> .

<http://securitytoolbox.appspot.com/stac#RfidTechnology>
  a owl:Class ;
  rdfs:label "Rfid Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#RfidAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#ZigbeeTechnology>
  a owl:Class ;
  rdfs:label "Zigbee Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LowCost>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LowEnergyConsuming>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#Scalable>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ZigbeeAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#UwbTechnology>
  a owl:Class ;
  rdfs:label "Ultra Wideband (UWB) Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#UwbAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#WifiTechnology>
  a owl:Class ;
  rdfs:label " Wi-Fi technology (Wireless-Fidelity)"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LowCostDeployment>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasArchitecture> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WifiArchitecture>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WifiAttack>
  ] ;
  rdfs:seeAlso <http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#WiFiConnectivity> .

<http://securitytoolbox.appspot.com/stac#WimaxTechnology>
  a owl:Class ;
  rdfs:label "Wimax Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasArchitecture> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WimaxArchitecture>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WimaxAttack>
  ] ;
  rdfs:seeAlso <http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#WiMAXConnectivity> .

<http://securitytoolbox.appspot.com/stac#SensorTechnology>
  a owl:Class ;
  rdfs:label "Sensor Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#SensorAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#M2MTechnology>
  a owl:Class ;
  rdfs:label "Machine-to-Machine(M2M)"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#M2MAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#ManetTechnology>
  a owl:Class ;
  rdfs:label "Manet Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ManetAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#MeshTechnology>
  a owl:Class ;
  rdfs:label "Mesh Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasArchitecture> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#MeshArchitecture>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#MeshAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#FrameworkTechnology>
  a owl:Class ;
  rdfs:label "Framework Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#FrameworkAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#CloudTechnology>
  a owl:Class ;
  rdfs:label "Cloud Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#CloudAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#WebTechnology>
  a owl:Class ;
  rdfs:label "Web Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#ECommerceTechnology>
  a owl:Class ;
  rdfs:label "ECommerce Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ECommerceAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#DatabaseTechnology>
  a owl:Class ;
  rdfs:label "Database Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#DatabaseAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#ProgrammingLanguageTechnology>
  a owl:Class ;
  rdfs:label "Programming Language"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ProgrammingLanguageAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#WebService>
  a owl:Class ;
  rdfs:label "Web Service"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#WebTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebServiceAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#NetworkManagementTechnology>
  a owl:Class ;
  rdfs:label "Network Management Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Technology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#NetworkManagementAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#ServerTechnology>
  a owl:Class ;
  rdfs:label "Server Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ServerAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#OperatingSystemTechnology>
  a owl:Class ;
  rdfs:label "Operating system Technology"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementTechnology>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasVulnerability> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#OperatingSystemAttack>
  ] .

<http://securitytoolbox.appspot.com/stac#SensorSecurityProtocol>
  a owl:Class ;
  rdfs:label "Sensor Security Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Protocol>, <http://securitytoolbox.appspot.com/stac#SensorSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#GSMSecurityProtocol>
  a owl:Class ;
  rdfs:label "GSM Security Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Protocol>, <http://securitytoolbox.appspot.com/stac#GSMSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#UMTSSecurityProtocol>
  a owl:Class ;
  rdfs:label "UMTS Security Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Protocol>, <http://securitytoolbox.appspot.com/stac#UMTSSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#WifiSecurityProtocol>
  a owl:Class ;
  rdfs:label "Wifi Security Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Protocol>, <http://securitytoolbox.appspot.com/stac#WifiSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#MeshSecurityProtocol>
  a owl:Class ;
  rdfs:label "Mesh Security Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Protocol>, <http://securitytoolbox.appspot.com/stac#MeshSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#WimaxSecurityProtocol>
  a owl:Class ;
  rdfs:label "Wimax Security Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Protocol>, <http://securitytoolbox.appspot.com/stac#WimaxSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#WebSecurityProtocol>
  a owl:Class ;
  rdfs:label "Web Security Protocol"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Protocol>, <http://securitytoolbox.appspot.com/stac#WebSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#GSMSecurityAlgorithm>
  a owl:Class ;
  rdfs:label "GSM Security Algorithm"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityAlgorithm>, <http://securitytoolbox.appspot.com/stac#GSMSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#GPRSSecurityAlgorithm>
  a owl:Class ;
  rdfs:label "GPRS Security Algorithm"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityAlgorithm>, <http://securitytoolbox.appspot.com/stac#GPRSSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#UMTSSecurityAlgorithm>
  a owl:Class ;
  rdfs:label "UMTS Security Algorithm"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityAlgorithm>, <http://securitytoolbox.appspot.com/stac#UMTSSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#BluetoothSecurityAlgorithm>
  a owl:Class ;
  rdfs:label "Bluetooth Security Algorithm"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityAlgorithm>, <http://securitytoolbox.appspot.com/stac#BluetoothSecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#LowSensitive>
  a owl:Class ;
  rdfs:label "LowSensitive"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#DataTypeSensitive> .

<http://securitytoolbox.appspot.com/stac#MediumSensitive>
  a owl:Class ;
  rdfs:label "MediumSensitive"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#DataTypeSensitive> .

<http://securitytoolbox.appspot.com/stac#HighSensitive>
  a owl:Class ;
  rdfs:label "HighSensitive"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#DataTypeSensitive> .

<http://securitytoolbox.appspot.com/stac#DataProvenanceType>
  a owl:Class ;
  rdfs:label "DataProvenanceType"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#Bank>
  a owl:Class ;
  rdfs:label "Bank"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#DataProvenanceType> .

<http://securitytoolbox.appspot.com/stac#Personal>
  a owl:Class ;
  rdfs:label "Personal"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#DataProvenanceType> .

<http://securitytoolbox.appspot.com/stac#CryptographicConcept>
  a owl:Class ;
  rdfs:label "CryptographicConcept"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#PhysicalKey>
  a owl:Class ;
  rdfs:label "Physical Key"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#PhysicalAuthentication> .

<http://securitytoolbox.appspot.com/stac#Badge>
  a owl:Class ;
  rdfs:label "Badge"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#PhysicalAuthentication> .

<http://securitytoolbox.appspot.com/stac#PhysicalAuthentication>
  a owl:Class ;
  rdfs:label "Physical Authentication"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#SymmetricKey>
  a owl:Class ;
  rdfs:label "Symmetric Key"@en ;
  rdfs:comment "Symmetric key: the same key is used for encryption and decryption."@en .

<http://securitytoolbox.appspot.com/stac#AsymmetricKey>
  a owl:Class ;
  rdfs:label "Asymmetric Key"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#PublicKey>
  a owl:Class ;
  rdfs:label "Public Key "@en ;
  rdfs:comment "The public key is used for verifying a digital signature and is used for encryption."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AsymmetricKey> .

<http://securitytoolbox.appspot.com/stac#PrivateKey>
  a owl:Class ;
  rdfs:label "Private Key "@en ;
  rdfs:comment "The private key is used for computing signatures and decryption."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AsymmetricKey> .

<http://securitytoolbox.appspot.com/stac#DigitalSignature>
  a owl:Class ;
  rdfs:label "Digital Signature"@en ;
  rdfs:comment "The digital signature verifies that the contents of the electronic message have not been altered."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#CryptographicConcept>, <http://securitytoolbox.appspot.com/stac#IntegrityMethod>, <http://securitytoolbox.appspot.com/stac#AuthenticationMethod>, <http://securitytoolbox.appspot.com/stac#NonRepudiationMethod> ;
  dc:hasPart <http://securitytoolbox.appspot.com/stac#AsymmetricAlgorithm> .

<http://securitytoolbox.appspot.com/stac#SystemLogs>
  a owl:Class ;
  rdfs:label "System Logs"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NonRepudiationMethod> .

<http://securitytoolbox.appspot.com/stac#DigitalCertificate>
  a owl:Class ;
  rdfs:label "Digital Certificate"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#HashFunction>
  a owl:Class ;
  rdfs:label "Hash Function"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#CryptographicConcept>, <http://securitytoolbox.appspot.com/stac#IntegrityMethod>, <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> ;
  dc:hasPart <http://securitytoolbox.appspot.com/stac#SymmetricAlgorithm> .

<http://securitytoolbox.appspot.com/stac#ChecksumAlgorithm>
  a owl:Class ;
  rdfs:label "Checksum Algorithm"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#IntegrityMethod> .

<http://securitytoolbox.appspot.com/stac#hasModeOperation>
  a owl:ObjectProperty ;
  rdfs:domain <http://securitytoolbox.appspot.com/stac#SymmetricAlgorithm> ;
  rdfs:range <http://securitytoolbox.appspot.com/stac#ModeOperation> ;
  rdfs:label "hasModeOperation"@en ;
  rdfs:comment ""@en .

<http://securitytoolbox.appspot.com/stac#ModeOperation>
  a owl:Class ;
  rdfs:label "Mode of operation"@en ;
  rdfs:comment "A mode of operation describes the process of encrypting each of block cipher."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#BlockCipher> .

<http://securitytoolbox.appspot.com/stac#AsymmetricAlgorithm>
  a owl:Class ;
  rdfs:label "Asymmetric algorithm"@en ;
  rdfs:comment "The keys used for encryption and decryption are different, allowing for easier key distribution."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#EncryptionAlgorithm>, <http://securitytoolbox.appspot.com/stac#AuthenticationMethod>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#HighEnergyConsuming>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ExchangeKeyEasy>
  ] ;
  rdfs:seeAlso <http://securitytoolbox.appspot.com/securityAlgorithms#AsymmetricAlgorithm>, <http://www.ida.liu.se/~iislab/projects/secont/Security.owlPublic-KeyEncryption>, <http://semanticweb.org/images/5/53/OntologySecurity.owlAsymmetricAlgorithm>, <http://securitytoolbox.appspot.com/MASO#Cryptage-asymetrique>, <http://preciosa.informatik.hu-berlin.de/ontology/security.owlAsymmetric_cryptographic_algorithm> ;
  dc:hasPart <http://securitytoolbox.appspot.com/IndividualKey>, <http://securitytoolbox.appspot.com/stac#PrivateKey>, <http://securitytoolbox.appspot.com/stac#PublicKey> .

<http://securitytoolbox.appspot.com/stac#SymmetricAlgorithm>
  a owl:Class ;
  rdfs:label "Symmetric algorithm"@en ;
  rdfs:comment "The same secret key is used for encryption and decryption."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#EncryptionAlgorithm>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ExchangeKeyNotEasy>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LowEnergyConsuming>
  ] ;
  rdfs:seeAlso <http://securitytoolbox.appspot.com/securityAlgorithms#SymmetricAlgorithm>, <http://www.ida.liu.se/~iislab/projects/secont/Security.owlSymmetricAlgorithm>, <http://preciosa.informatik.hu-berlin.de/ontology/security.owlSymmetricAlgorithm>, <http://semanticweb.org/images/5/53/OntologySecurity.owlSymmetricAlgorithm>, <http://securitytoolbox.appspot.com/MASO#Cryptage-symetrique> .

<http://securitytoolbox.appspot.com/stac#BlockCipher>
  a owl:Class ;
  rdfs:label "BlockCipher"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SymmetricAlgorithm> ;
  rdfs:seeAlso <http://www.ida.liu.se/~iislab/projects/secont/Security.owlBlockCipher>, <http://semanticweb.org/images/5/53/OntologySecurity.owlBlockCipherAlgorithm> .

<http://securitytoolbox.appspot.com/stac#StreamCipher>
  a owl:Class ;
  rdfs:label "StreamCipher"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SymmetricAlgorithm> ;
  rdfs:seeAlso <http://www.ida.liu.se/~iislab/projects/secont/Security.owlStreamCipher>, <http://preciosa.informatik.hu-berlin.de/ontology/security.owlStreamCipherAlgorithm>, <http://semanticweb.org/images/5/53/OntologySecurity.owlStreamCipherAlgorithm> .

<http://securitytoolbox.appspot.com/stac#KeyManagement>
  a owl:Class ;
  rdfs:label "Key Management"@en ;
  rdfs:comment "Key management protocols are fundamental requirements to develop a secure application. These protocols are used to set up and distribute various kinds of cryptographic keys to nodes in the network."@en ;
  dc11:description "Key management protocols are fundamental requirements to develop a secure application. These protocols are used to set up and distribute various kinds of cryptographic keys to nodes in the network."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#CryptographicConcept>, <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#EncryptionAlgorithm>
  a owl:Class ;
  rdfs:label "Encryption Algorithm"@en ;
  rdfs:comment "Encryption algorithm ensures the confidentiality property."@en ;
  rdfs:seeAlso <http://securitytoolbox.appspot.com/securityAlgorithms#EncryptionAlgorithm> ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityAlgorithm>, <http://securitytoolbox.appspot.com/stac#CryptographicConcept>, <http://securitytoolbox.appspot.com/stac#ConfidentialityMethod> .

<http://securitytoolbox.appspot.com/stac#SecurityAlgorithm>
  a owl:Class ;
  rdfs:label "Security Algorithm"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#Flooding>
  a owl:Class ;
  rdfs:label "Flooding"@en ;
  rdfs:comment "Floodings attacks generally are used to drain the memry resources by sensing the control signals."@en ;
  dc11:description "See Paper: Survey of Security and Privacy Issues of Internet of Things [Borgohain et al. 2015]"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SensorAttack>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasSecurityMechanism> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ClientPuzzle>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#occursInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#TransportLayer>
  ] .

<http://securitytoolbox.appspot.com/stac#MeshArchitectureComponent>
  a owl:Class ;
  rdfs:label "Mesh Architecture component"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ArchitectureComponent> .

<http://securitytoolbox.appspot.com/stac#WimaxArchitectureComponent>
  a owl:Class ;
  rdfs:label "Wimax Architecture component"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ArchitectureComponent> .

<http://securitytoolbox.appspot.com/stac#WifiArchitectureComponent>
  a owl:Class ;
  rdfs:label "Wifi Architecture component"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ArchitectureComponent> .

<http://securitytoolbox.appspot.com/stac#LTEArchitectureComponent>
  a owl:Class ;
  rdfs:label "LTE Architecture component"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ArchitectureComponent> .

<http://securitytoolbox.appspot.com/stac#UMTSArchitectureComponent>
  a owl:Class ;
  rdfs:label "UMTS Architecture component"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ArchitectureComponent> .

<http://securitytoolbox.appspot.com/stac#GPRSArchitectureComponent>
  a owl:Class ;
  rdfs:label "GPRS Architecture component"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ArchitectureComponent> .

<http://securitytoolbox.appspot.com/stac#GSMArchitectureComponent>
  a owl:Class ;
  rdfs:label "GSM Architecture component"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#ArchitectureComponent> .

<http://securitytoolbox.appspot.com/stac#GPRSArchitecture>
  a owl:Class ;
  rdfs:label "GPRS Architecture"@en ;
  rdfs:comment "The GPRS system are a much more expesed to intruders, because of its IP based backbone."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Architecture> .

<http://securitytoolbox.appspot.com/stac#UMTSArchitecture>
  a owl:Class ;
  rdfs:label "UMTS Architecture"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Architecture> .

<http://securitytoolbox.appspot.com/stac#LTEArchitecture>
  a owl:Class ;
  rdfs:label "LTE Architecture"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Architecture> .

<http://securitytoolbox.appspot.com/stac#MeshArchitecture>
  a owl:Class ;
  rdfs:label "Mesh Architecture"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Architecture>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#LowCostDeployment>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#Scalable>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#Flexible>
  ] .

<http://securitytoolbox.appspot.com/stac#WimaxArchitecture>
  a owl:Class ;
  rdfs:label "WiMAX Architecture"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Architecture> .

<http://securitytoolbox.appspot.com/stac#GSMArchitecture>
  a owl:Class ;
  rdfs:label "GSM Architecture"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Architecture> .

<http://securitytoolbox.appspot.com/stac#WifiArchitecture>
  a owl:Class ;
  rdfs:label "Wifi Architecture"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#Architecture> .

<http://securitytoolbox.appspot.com/stac#SecurityMagazine>
  a owl:Class ;
  rdfs:label "Security Magazine"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod>
  a owl:Class ;
  rdfs:label "Security Property Method"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityMechanism> .

<http://securitytoolbox.appspot.com/stac#ConfidentialityMethod>
  a owl:Class ;
  rdfs:label "Confidentiality Method"@en ;
  rdfs:comment "Confidentiality means that only destined user must be able to read data."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#SemanticSecurityMethod>
  a owl:Class ;
  rdfs:label "Semantic Security Method"@en ;
  rdfs:comment "Semantic security ensures that an eavesdropper has no information about the message, even if it sees multiple encryptions of the same messages."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#AuthenticationMethod>
  a owl:Class ;
  rdfs:label "Authentication Method"@en ;
  rdfs:comment "Authentication prevents unauthorized access to the network."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#IntegrityMethod>
  a owl:Class ;
  rdfs:label "Integrity Method"@en ;
  rdfs:comment "Data integrity guarantees that the transmitted messages are not modified by attackers, either due to malicious intent or by accident."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#AccessControlMethod>
  a owl:Class ;
  rdfs:label "Access Control Method"@en ;
  rdfs:comment "Access Control is the mechanism that allows owners of resources to define, manage and enforce access conditions applicable to each resource."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#AvailabilityMethod>
  a owl:Class ;
  rdfs:label "Availability Method"@en ;
  rdfs:comment "Data availability ensures that the network is alive and that data are accessible."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#NonRepudiationMethod>
  a owl:Class ;
  rdfs:label "Non Repudiation Method"@en ;
  rdfs:comment "Non repudiation means that a sender is unable to deny having sent a message or infoomation."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#AnonymityMethod>
  a owl:Class ;
  rdfs:label "Anonymity Method"@en ;
  rdfs:comment "Anonymity protects user identity, making it hard to track the whereabouts of a certain user."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#DataFreshnessMethod>
  a owl:Class ;
  rdfs:label "Data Freshness Method"@en ;
  rdfs:comment "Data freshness suggests that the data is recent, and it ensures that no old messages have been replayed."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SecurityPropertyMethod> .

<http://securitytoolbox.appspot.com/stac#CounterValue>
  a owl:Class ;
  rdfs:label "Counter Value"@en ;
  rdfs:comment "Since the counter value is incremented after each message, the same message is encrypted differently each time."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#DataFreshnessMethod> .

<http://securitytoolbox.appspot.com/stac#Timestamp>
  a owl:Class ;
  rdfs:label "Timestamp"@en ;
  rdfs:comment "In order to ensure the freshness of packet, a timestamp can be attached to the packet. A receiving node can compare the timestamp in the packet with its own time clock and determine whether the packet is valid or not."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#DataFreshnessMethod> .

<http://securitytoolbox.appspot.com/stac#TemporaryIdentity>
  a owl:Class ;
  rdfs:label "Temporary Identity"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AnonymityMethod> .

<http://securitytoolbox.appspot.com/stac#IPS>
  a owl:Class ;
  rdfs:label "Intrusion Prevention System (IPS)"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#AvailabilityMethod> .

<http://securitytoolbox.appspot.com/stac#IDS>
  a owl:Class ;
  rdfs:label "Intrusion Detection System (IDS)"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#AvailabilityMethod> .

<http://securitytoolbox.appspot.com/stac#Proxy>
  a owl:Class ;
  rdfs:label "Proxy"@en ;
  rdfs:comment "A proxy analyzes application commands, performs authentication and keeps logs."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#AccessControlMethod> .

<http://securitytoolbox.appspot.com/stac#ReverseProxy>
  a owl:Class ;
  rdfs:label "Reverse Proxy"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#AccessControlMethod> .

<http://securitytoolbox.appspot.com/stac#RBAC>
  a owl:Class ;
  rdfs:label "Role Based Access Control (RBAC)"@en ;
  rdfs:comment "Mechanism for access control that organizes users (in the system) into specific groups called Roles. E.g., Doctor and nurses are different roles in a hospital."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#hasFeature> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#NotFlexible>
  ] .

<http://securitytoolbox.appspot.com/stac#CA-RBAC>
  a owl:Class ;
  rdfs:label "Context Aware Role Based Access Control (CA-RBAC)"@en ;
  rdfs:comment "E.g. herat attack is a critical event. Criticaly is a context aware permission."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod> .

<http://securitytoolbox.appspot.com/stac#ABAC>
  a owl:Class ;
  rdfs:label "Attribute Based Access control (ABAC)"@en ;
  rdfs:comment "Permissions are associated with a set of rules expressed on measurable parameters and are granted to users who can prove compliance with these rules."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod> .

<http://securitytoolbox.appspot.com/stac#RelBAC>
  a owl:Class ;
  rdfs:label "Relation Based Access Control (RelBAC)"@en ;
  rdfs:comment "Permissions are modeled as relations between users (subjects) and data (objects)."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod> .

<http://securitytoolbox.appspot.com/stac#DAC>
  a owl:Class ;
  rdfs:label "Discretionary Access Control (DAC)"@en ;
  rdfs:comment "Object owners can add access rights."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod> .

<http://securitytoolbox.appspot.com/stac#Firewall>
  a owl:Class, <http://securitytoolbox.appspot.com/stac#NetworkManagementSecurityMechanism>, <http://securitytoolbox.appspot.com/stac#UMTSSecurityMechanism> ;
  rdfs:label "Firewall"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod>, [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protectsInLayer> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#ApplicationLayer>
  ], [
    a owl:Restriction ;
    owl:onProperty <http://securitytoolbox.appspot.com/stac#protects> ;
    owl:someValuesFrom <http://securitytoolbox.appspot.com/stac#WebTechnology>
  ] ;
  dc11:description "See Paper: Malicious actions against the GPRS technology [Xenakis 2006]"@en .

<http://securitytoolbox.appspot.com/stac#LoginPassword>
  a owl:Class ;
  rdfs:label "Login/Password"@en ;
  rdfs:comment "The simple form of authentication is providing a user name and password which is mainly the case in internet based authentication (e.g. email, online shopping, etc)"@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod>, <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#MandatoryAccessControl>
  a owl:Class ;
  rdfs:label "Mandatory Access Control (MAC)"@en ;
  rdfs:comment "Only an administrator is authorized to add a new access right to the system."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AccessControlMethod> .

<http://securitytoolbox.appspot.com/stac#InitialVector>
  a owl:Class ;
  rdfs:label "Initial Vector"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#SemanticSecurityMethod> .

<http://securitytoolbox.appspot.com/stac#ICV>
  a owl:Class ;
  rdfs:label "Integrity Check Value (ICV)"@en ;
  rdfs:comment "The purpose of this value is to enable the receiver to detect any malicious modifications of the message by an attacker."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#IntegrityMethod> .

<http://securitytoolbox.appspot.com/stac#MAC>
  a owl:Class ;
  rdfs:label "Message Authentication Code (MAC)"@en ;
  rdfs:comment "MAC is a short piece of information used to authenticate a message and check the integrity."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#IntegrityMethod>, <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#PreSharedKey>
  a owl:Class ;
  rdfs:label "Pre Shared Key"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#MutualAuthentication>
  a owl:Class ;
  rdfs:label "Mutual Authentication ot two-way authentication"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#OneWayAuthentication>
  a owl:Class ;
  rdfs:label "One Way Authentication"@en ;
  rdfs:comment ""@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .

<http://securitytoolbox.appspot.com/stac#ChallengeResponse>
  a owl:Class ;
  rdfs:label "Challenge Response"@en ;
  rdfs:comment "Challenge/Response is a mechanism where on entity in the network proves to another entity that it knows the password without revealing it."@en ;
  rdfs:subClassOf <http://securitytoolbox.appspot.com/stac#AuthenticationMethod> .
