diff --git a/docs/content/usage/reports/mitre.md b/docs/content/usage/reports/mitre.md index 05f87ba03..b5c4c7ee0 100644 --- a/docs/content/usage/reports/mitre.md +++ b/docs/content/usage/reports/mitre.md @@ -18,13 +18,14 @@ Watch an overview video: The MITRE ATT&CK report is centred around the ATT&CK matrix: -![MITRE Report](/images/usage/reports/mitre-report-0.jpg "MITRE Report") +![MITRE Report](/images/usage/reports/mitre-report-0.png "MITRE Report") The Monkey rates your network on the attack techniques it attempted. For each technique, you can get - {{< label danger Red >}}: The Monkey **successfully used** the technique in the simulation. That means your network is vulnerable to this technique being employed. - {{< label warning Yellow >}}: The Monkey **tried to use** the technique, but didn’t manage to. That means your network isn’t vulnerable to the way Monkey employs this technique. -- {{< label other Grey >}}: The Monkey **didn't try** the technique this time. Perhaps it wasn't relevant to this network or wasn't configured. +- {{< label unused "Dark Gray" >}}: The Monkey **didn't try** the technique this time. Perhaps it wasn't relevant to this network. +- {{< label disabled "Light Gray" >}}: The Monkey **didn't try** the technique this time since it wasn't configured. Then, you can see exactly HOW the technique was used in this attack, and also what you should do to mitigate it, by clicking on the technique and seeing the details. For example, let’s look at the [**Brute Force**](https://attack.mitre.org/techniques/T1110/) technique that’s a part of employing the [**Credentials Access**](https://attack.mitre.org/tactics/TA0006/) tactic: diff --git a/docs/static/css/labels.css b/docs/static/css/labels.css index 06565138d..36086f48f 100644 --- a/docs/static/css/labels.css +++ b/docs/static/css/labels.css @@ -9,4 +9,5 @@ .info {background-color: #2196F3;} /* Blue */ .warning {background-color: #ff9800;} /* Orange */ .danger {background-color: #f44336;} /* Red */ - .other {background-color: #e7e7e7; color: black;} /* Gray */ + .unused {background-color: #8d8d8d;} /* Dark Gray */ + .disabled {background-color: #cfcfcf; color: black;} /* Light Gray */ diff --git a/docs/static/images/usage/reports/mitre-report-0.jpg b/docs/static/images/usage/reports/mitre-report-0.jpg deleted file mode 100644 index 933e8e221..000000000 Binary files a/docs/static/images/usage/reports/mitre-report-0.jpg and /dev/null differ diff --git a/docs/static/images/usage/reports/mitre-report-0.png b/docs/static/images/usage/reports/mitre-report-0.png new file mode 100644 index 000000000..9835d100b Binary files /dev/null and b/docs/static/images/usage/reports/mitre-report-0.png differ