forked from p15670423/monkey
UI: Add ransomware blog link to lateral movement section
This commit is contained in:
parent
fdba9f54ca
commit
62b2217821
|
@ -6,7 +6,15 @@ 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 \
|
||||||
techniques in order to compromise other systems in your \
|
techniques in order to compromise other systems in your \
|
||||||
network.'
|
network. \
|
||||||
|
<br /> \
|
||||||
|
<br /> \
|
||||||
|
<a \
|
||||||
|
href="https://www.guardicore.com/blog/stopping-ransomware-with-segmentation/" \
|
||||||
|
target="_blank" \
|
||||||
|
> \
|
||||||
|
See some real-world examples on Guardicore\'s blog. \
|
||||||
|
</a>'
|
||||||
|
|
||||||
type PropagationStats = {
|
type PropagationStats = {
|
||||||
num_scanned_nodes: number,
|
num_scanned_nodes: number,
|
||||||
|
|
|
@ -31,9 +31,7 @@ function Description({text}: {text: string}): ReactElement {
|
||||||
return (
|
return (
|
||||||
<div className='alert alert-secondary description'>
|
<div className='alert alert-secondary description'>
|
||||||
<FontAwesomeIcon icon={faInfoCircle} className='alert-icon'/>
|
<FontAwesomeIcon icon={faInfoCircle} className='alert-icon'/>
|
||||||
<span>
|
<span dangerouslySetInnerHTML={{__html: text}} />
|
||||||
{text}
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue