Last active
April 5, 2016 15:56
-
-
Save ikiril01/fa99df536f11d478066c574e7b955170 to your computer and use it in GitHub Desktop.
Network Connection w/ AS - TLO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "package", | |
"spec_version": "stix-2.0", | |
"objects": [ | |
{ | |
"type": "network-connection", | |
"id": "network-connection--1", | |
"spec_version": "cybox-3.0" | |
}, | |
{ | |
"type": "ipv4-addr-object", | |
"id": "ip-address--2", | |
"spec_version": "cybox-3.0", | |
"value": "1.2.3.4" | |
}, | |
{ | |
"type": "ipv4-addr-object", | |
"id": "ip-address--3", | |
"spec_version": "cybox-3.0", | |
"value": "4.3.2.1" | |
}, | |
{ | |
"type": "as-object", | |
"id": "as--1", | |
"spec_version": "cybox-3.0", | |
"number": "40" | |
} | |
], | |
"observations": [ | |
{ | |
"type": "observation", | |
"id": "observation--4", | |
"spec_version": "stix-2.0", | |
"created_at": "2016-03-21T01:01:01Z", | |
"observed_at": "2016-03-21T01:01:01Z", | |
"object_ref" : "network-connection--1" | |
} | |
], | |
"relationships": [ | |
{ | |
"type": "object-relationship", | |
"id": "object-relationship--5", | |
"spec_version": "cybox-3.0", | |
"source_ref": "network-connection--1", | |
"target_ref": "ip-address--2", | |
"kind_of_relationship": "has-destination" | |
}, | |
{ | |
"type": "object-relationship", | |
"id": "object-relationship--6", | |
"spec_version": "cybox-3.0", | |
"source_ref": "network-connection--1", | |
"target_ref": "ip-address--3", | |
"kind_of_relationship": "has-source" | |
}, | |
{ | |
"type": "object-relationship", | |
"id": "object-relationship--7", | |
"spec_version": "cybox-3.0", | |
"source_ref": "ip-address--3", | |
"target_ref": "as--1", | |
"kind_of_relationship": "belongs-to" | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment