Island UI: change ransomware report to contain a table of exploitations in lateral movement section

This commit is contained in:
VakarisZ 2021-07-28 12:24:20 +03:00
parent 1448bb1850
commit 15fad50393
1 changed files with 3 additions and 0 deletions

View File

@ -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)}
<br/>
<BreachedServersComponent />
</>
)