From a2edd4e1fa790fb1f4ec30d0b26a4b94559d6d4c Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Mon, 12 Apr 2021 09:45:51 +0300 Subject: [PATCH 1/2] Fixed documentation hub links, broken due to whitespace characters in between --- docs/content/_index.md | 2 +- docs/content/reference/exploiters/SMBExec.md | 2 +- docs/content/reports/mitre.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/_index.md b/docs/content/_index.md index 117aae443..88448acb8 100644 --- a/docs/content/_index.md +++ b/docs/content/_index.md @@ -40,7 +40,7 @@ A more in-depth description of reports generated can be found in the [reports do ## Getting Started -If you haven't downloaded Infection Monkey yet you can do so [from our homepage](https://www.guardicore.com/infectionmonkey/#download). After downloading the Monkey, install it using one of our [setup guides] ({{< ref "/setup" >}}), and read our [getting started guide] ({{< ref "/usage/getting-started" >}}) for a quick-start on Monkey! +If you haven't downloaded Infection Monkey yet you can do so [from our homepage](https://www.guardicore.com/infectionmonkey/#download). After downloading the Monkey, install it using one of our [setup guides]({{< ref "/setup" >}}), and read our [getting started guide]({{< ref "/usage/getting-started" >}}) for a quick-start on Monkey! ## Support and community diff --git a/docs/content/reference/exploiters/SMBExec.md b/docs/content/reference/exploiters/SMBExec.md index 93091357b..758f22b0a 100644 --- a/docs/content/reference/exploiters/SMBExec.md +++ b/docs/content/reference/exploiters/SMBExec.md @@ -5,4 +5,4 @@ draft: false tags: ["exploit", "windows"] --- -Brute forces using credentials provided by user (see ["Configuration"] ({{< ref "/usage/configuration" >}}) and hashes gathered by Mimikatz. +Brute forces using credentials provided by user (see ["Configuration"]({{< ref "/usage/configuration" >}}) and hashes gathered by Mimikatz. diff --git a/docs/content/reports/mitre.md b/docs/content/reports/mitre.md index 0e454fd91..72228e6e5 100644 --- a/docs/content/reports/mitre.md +++ b/docs/content/reports/mitre.md @@ -6,7 +6,7 @@ draft: false --- {{% notice info %}} -Check out [the documentation for other reports available in the Infection Monkey] ({{< ref "/reports" >}}) and [the documentation for supported ATT&CK techniques]({{< ref "/reference/mitre_techniques" >}}). +Check out [the documentation for other reports available in the Infection Monkey]({{< ref "/reports" >}}) and [the documentation for supported ATT&CK techniques]({{< ref "/reference/mitre_techniques" >}}). {{% /notice %}} The Infection Monkey maps its actions to the [MITRE ATT&CK](https://attack.mitre.org/) knowledge base. After simulating an advanced persistent threat (APT) attack, it generates a report summarizing the success of the techniques utilized along with recommended mitigation steps, helping you identify and mitigate attack paths in your environment. From 2480dc8cdb30e8aef5789e06332e4f85d8f1ddeb Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Thu, 22 Apr 2021 11:13:18 +0300 Subject: [PATCH 2/2] Fixed a broken import in attack_mitigations.py --- monkey/monkey_island/cc/models/attack/attack_mitigations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/monkey_island/cc/models/attack/attack_mitigations.py b/monkey/monkey_island/cc/models/attack/attack_mitigations.py index 271b68461..9d09aae5a 100644 --- a/monkey/monkey_island/cc/models/attack/attack_mitigations.py +++ b/monkey/monkey_island/cc/models/attack/attack_mitigations.py @@ -4,7 +4,7 @@ from mongoengine import Document, DoesNotExist, EmbeddedDocumentField, ListField from stix2 import AttackPattern, CourseOfAction from monkey_island.cc.models.attack.mitigation import Mitigation -from monkey_island.cc.services.attack.test_mitre_api_interface import MitreApiInterface +from monkey_island.cc.services.attack.mitre_api_interface import MitreApiInterface class AttackMitigations(Document):