Last active
May 3, 2016 15:55
-
-
Save ikiril01/01b0d1ce6018299a8184de9c5f4de5e8 to your computer and use it in GitHub Desktop.
CybOX Relationships - Domain Redirection/Resolution
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", | |
"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", | |
"cybox": { | |
"objects": [ | |
{ | |
"type": "domain-name-object", | |
"id": "domain-name--1", | |
"spec_version": "cybox-3.0", | |
"value": "http://foo.bar.com" | |
}, | |
{ | |
"type": "domain-name-object", | |
"id": "domain-name--2", | |
"spec_version": "cybox-3.0", | |
"value": "http://bar.foo.com" | |
}, | |
{ | |
"type": "ipv4-addr-object", | |
"id": "ip-address--1", | |
"spec_version": "cybox-3.0", | |
"value": "1.2.3.4" | |
} | |
], | |
"relationships": [ | |
{ | |
"type": "cybox-object-relationship", | |
"id": "object-relationship--1", | |
"spec_version": "cybox-3.0", | |
"source_ref": "domain-name--1", | |
"target_ref": "ip-address--1", | |
"kind_of_relationship": "resolves-to" | |
}, | |
{ | |
"type": "cybox-object-relationship", | |
"id": "object-relationship--2", | |
"spec_version": "cybox-3.0", | |
"source_ref": "domain-name--1", | |
"target_ref": "domain-name--2", | |
"kind_of_relationship": "redirects-to" | |
} | |
] | |
} | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment