-
Notifications
You must be signed in to change notification settings - Fork 595
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load data via STIX 2.1 Collection Index (#629)
* load collection index * rename function * move domain class from stix directory * remove unused code * code smell * parse collection index into domain/version structure * add mimimum supported version to globals * only parse valid versions * cleanup styles * update tabs note * use domain identifier for layer compatibility * code cleanup * return properly for edge cases * only parse most recent minor versions * retrieve latest version during parsing * remove tests for deleted function * update svg domain section * global replace * backwards compatibility for versions structure * config validation * remove unused code * add enabled option to user defined versions * update existing tests * config validation tests * add dataservice tests * data service tests * tabs component tests * autoformatter * remove old layer file format specs * update readme * add link to stix 2.1 data * support for taxii 2.1 * update docs * autoformatter * update version to 5.0.0 * minor changes * minor change * update documentation * fix tests
- Loading branch information
Showing
45 changed files
with
793 additions
and
1,039 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,43 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GFD952VXH6"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-GFD952VXH6'); | ||
</script> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>ATT&CK® Navigator</title> | ||
</head> | ||
<body> | ||
<div> | ||
<h3>ATT&CK Navigator's Enterprise instance has moved to the new multi-domain instance.</h3> | ||
<p>This page should automatically redirect. If it does not, please use the following link:</p> | ||
<p><a href="https://mitre-attack.github.io/attack-navigator/">https://mitre-attack.github.io/attack-navigator/</a></p> | ||
</div> | ||
|
||
<style> | ||
h3 { | ||
font-size: 25px; | ||
} | ||
div { | ||
max-width: 35em; | ||
margin: 5vh auto; | ||
} | ||
.deemphasis { | ||
color: rgb(171, 171, 171); | ||
} | ||
</style> | ||
<script> | ||
let configuration = window.location.hash | ||
let redirectURL = "https://mitre-attack.github.io/attack-navigator" + configuration | ||
console.log("redirecting to", redirectURL) | ||
window.location = redirectURL; | ||
</script> | ||
</body> | ||
</html> | ||
<head> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GFD952VXH6"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag('js', new Date()); | ||
gtag('config', 'G-GFD952VXH6'); | ||
</script> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>ATT&CK® Navigator</title> | ||
</head> | ||
<body> | ||
<div> | ||
<h3>ATT&CK Navigator's Enterprise instance has moved to the new multi-domain instance.</h3> | ||
<p>This page should automatically redirect. If it does not, please use the following link:</p> | ||
<p><a href="https://mitre-attack.github.io/attack-navigator/">https://mitre-attack.github.io/attack-navigator/</a></p> | ||
</div> | ||
|
||
<style> | ||
h3 { | ||
font-size: 25px; | ||
} | ||
div { | ||
max-width: 35em; | ||
margin: 5vh auto; | ||
} | ||
.deemphasis { | ||
color: rgb(171, 171, 171); | ||
} | ||
</style> | ||
<script> | ||
let configuration = window.location.hash; | ||
let redirectURL = 'https://mitre-attack.github.io/attack-navigator' + configuration; | ||
console.log('redirecting to', redirectURL); | ||
window.location = redirectURL; | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.