UI: Add ransomware blog link to lateral movement section

This commit is contained in:
Mike Salvatore 2021-08-02 11:59:38 -04:00
parent fdba9f54ca
commit 62b2217821
2 changed files with 10 additions and 4 deletions

View File

@ -6,7 +6,15 @@ 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 \
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 = {
num_scanned_nodes: number,

View File

@ -31,9 +31,7 @@ function Description({text}: {text: string}): ReactElement {
return (
<div className='alert alert-secondary description'>
<FontAwesomeIcon icon={faInfoCircle} className='alert-icon'/>
<span>
{text}
</span>
<span dangerouslySetInnerHTML={{__html: text}} />
</div>
)
}