Skip to content

Commit 57d32d3

Browse files
authored
Merge pull request #58 from semanticarts/issue-40-network-socket-type-vocab
fixes #40 implements Network Socket Type enumeration for STIX Network…
2 parents db89256 + c8ac233 commit 57d32d3

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

ontologies/vocabs.ttl

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ gist:NetworkSocketAddressFamily
111111
skos:prefLabel "Network Socket Address Family"^^xsd:string ;
112112
.
113113

114+
gist:NetworkSocketType
115+
a owl:Class ;
116+
rdfs:subClassOf gist:StixCategoryObject ;
117+
skos:definition "Categories of socket types of network traffic"^^xsd:string ;
118+
skos:prefLabel "Network Socket Type"^^xsd:string ;
119+
.
120+
114121
gist:ThreatActorRole
115122
a owl:Class ;
116123
rdfs:subClassOf gist:StixCategoryObject ;
@@ -1574,6 +1581,41 @@ Specifies an unspecified address family."""^^xsd:string ;
15741581
skos:prefLabel "AF_UNSPEC"^^xsd:string ;
15751582
.
15761583

1584+
gist:_NetworkSocketType_SOCK_DGRAM
1585+
a gist:NetworkSocketType ;
1586+
skos:definition """STIX 2.1 description:
1587+
Specifies a socket in which individually-addressed packets are sent (datagram)."""^^xsd:string ;
1588+
skos:prefLabel "SOCK_DGRAM"^^xsd:string ;
1589+
.
1590+
1591+
gist:_NetworkSocketType_SOCK_RAW
1592+
a gist:NetworkSocketType ;
1593+
skos:definition """STIX 2.1 description:
1594+
Specifies raw sockets which allow new IP protocols to be implemented in user space. A raw socket receives or sends the raw datagram not including link level headers."""^^xsd:string ;
1595+
skos:prefLabel "SOCK_RAW"^^xsd:string ;
1596+
.
1597+
1598+
gist:_NetworkSocketType_SOCK_RDM
1599+
a gist:NetworkSocketType ;
1600+
skos:definition """STIX 2.1 description:
1601+
Specifies a socket indicating a reliably-delivered message."""^^xsd:string ;
1602+
skos:prefLabel "SOCK_RDM"^^xsd:string ;
1603+
.
1604+
1605+
gist:_NetworkSocketType_SOCK_SEQPACKET
1606+
a gist:NetworkSocketType ;
1607+
skos:definition """STIX 2.1 description:
1608+
Specifies a datagram congestion control protocol socket."""^^xsd:string ;
1609+
skos:prefLabel "SOCK_SEQPACKET"^^xsd:string ;
1610+
.
1611+
1612+
gist:_NetworkSocketType_SOCK_STREAM
1613+
a gist:NetworkSocketType ;
1614+
skos:definition """STIX 2.1 description:
1615+
Specifies a pipe-like socket which operates over a connection with a particular remote socket and transmits data reliably as a stream of bytes."""^^xsd:string ;
1616+
skos:prefLabel "SOCK_STREAM"^^xsd:string ;
1617+
.
1618+
15771619
gist:_ThreatActorRole_Agent
15781620
a gist:ThreatActorRole ;
15791621
skos:definition """STIX 2.1 description:

0 commit comments

Comments
 (0)