forked from p15670423/monkey
Island UI: change ransomware report to contain a table of exploitations in lateral movement section
This commit is contained in:
parent
1448bb1850
commit
15fad50393
|
@ -1,6 +1,7 @@
|
||||||
import React, {ReactElement} from 'react';
|
import React, {ReactElement} from 'react';
|
||||||
import NumberedReportSection from './NumberedReportSection';
|
import NumberedReportSection from './NumberedReportSection';
|
||||||
import pluralize from 'pluralize'
|
import pluralize from 'pluralize'
|
||||||
|
import BreachedServersComponent from '../security/BreachedServers';
|
||||||
|
|
||||||
const LATERAL_MOVEMENT_DESCRIPTION = 'After the initial breach, the attacker will begin the Lateral \
|
const LATERAL_MOVEMENT_DESCRIPTION = 'After the initial breach, the attacker will begin the Lateral \
|
||||||
Movement phase of the attack. They will employ various \
|
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)}
|
{getScannedVsExploitedStats(propagationStats.num_scanned_nodes, propagationStats.num_exploited_nodes)}
|
||||||
{getExploitationStatsPerExploit(propagationStats.num_exploited_per_exploit)}
|
{getExploitationStatsPerExploit(propagationStats.num_exploited_per_exploit)}
|
||||||
|
<br/>
|
||||||
|
<BreachedServersComponent />
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue