From 15fad503935701e0169d8f249951f7a33f57804b Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Wed, 28 Jul 2021 12:24:20 +0300 Subject: [PATCH] Island UI: change ransomware report to contain a table of exploitations in lateral movement section --- .../report-components/ransomware/LateralMovement.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx index 1d062c5c5..b7026af5e 100644 --- a/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx +++ b/monkey/monkey_island/cc/ui/src/components/report-components/ransomware/LateralMovement.tsx @@ -1,6 +1,7 @@ import React, {ReactElement} from 'react'; import NumberedReportSection from './NumberedReportSection'; import pluralize from 'pluralize' +import BreachedServersComponent from '../security/BreachedServers'; const LATERAL_MOVEMENT_DESCRIPTION = 'After the initial breach, the attacker will begin the Lateral \ Movement phase of the attack. They will employ various \ @@ -18,6 +19,8 @@ function LateralMovement({propagationStats}: {propagationStats: PropagationStats <> {getScannedVsExploitedStats(propagationStats.num_scanned_nodes, propagationStats.num_exploited_nodes)} {getExploitationStatsPerExploit(propagationStats.num_exploited_per_exploit)} +
+ )