Rezolvare vulnerabilitati Poodle din PowerShell (Windows Server 2012R2)

Rezolvare problema (Fix IT)

Situatie

Server-ul este vulnerabil la atacurile poodle pe protocolul ssl 2.0

Solutie

Pasi de urmat

Adaugam un document nou de tip text si copiem acest text in el, preferabil in Notepad.


$registryPath = “HKLM:SYSTEMCurrentControlSetControlSecurityProvidersSCHANNELProtocolsSSL 2.0”
$Name = “DisabledByDefault”
$value = “00000001”
IF(!(Test-Path $registryPath))
{
New-Item -Path $registryPath -Force | Out-Null
New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null
}
ELSE
{
New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null
}

” ( copiem textul fara ghilimele)

Dupa care salva fisierul “save as”  cu numele SSL v2 disable si extens .ps

Dupa salvare rulam fisierul cu power shell.

 

Executam un restart al server-ului, iar acum server-ul nu mai este vulnerabil la atacurile poodle.

Tip solutie

Permanent

Voteaza

(12 din 29 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?