diff --git a/monkey/monkey_island/cc/services/reporting/report.py b/monkey/monkey_island/cc/services/reporting/report.py index 27e76db85..5a9a33721 100644 --- a/monkey/monkey_island/cc/services/reporting/report.py +++ b/monkey/monkey_island/cc/services/reporting/report.py @@ -391,15 +391,8 @@ class ReportService: @staticmethod def get_config_exploits(): exploits_config_value = EXPLOITER_CLASSES_PATH - # TODO: Return default config here - default_exploits = ConfigService.get_default_config(False) - for namespace in exploits_config_value: - default_exploits = default_exploits[namespace] exploits = ConfigService.get_config_value(exploits_config_value, True) - if exploits == default_exploits: - return ["default"] - return [ ExploiterDescriptorEnum.get_by_class_name(exploit).display_name for exploit in exploits ] diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js b/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js index c79e068df..d91d2d0fc 100644 --- a/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js +++ b/monkey/monkey_island/cc/ui/src/components/report-components/SecurityReport.js @@ -297,17 +297,12 @@ class ReportPageComponent extends AuthComponent { } { this.state.report.overview.config_exploits.length > 0 ? - ( - this.state.report.overview.config_exploits[0] === 'default' ? - '' - : -

- The Monkey uses the following exploit methods: -

-

- ) +

+ The Monkey uses the following exploit methods: +

+

:

No exploits are used by the Monkey.