Remediation Steps
Follow the steps below to remediate this finding on Windows.
Enable SMB signing via Group Policy to require it on all connections.
Open Group Policy Management (gpmc.msc).
Navigate to Computer Configuration > Windows Settings > Security Settings > Local Policies > Security Options.
Enable the following policies:
- Microsoft network client: Digitally sign communications (always) — set to Enabled
- Microsoft network server: Digitally sign communications (always) — set to Enabled
Apply the policy and force an update:
gpupdate /forceAlternatively, via PowerShell:
Set-SmbServerConfiguration -RequireSecuritySignature $true -EnableSecuritySignature $true -Force Set-SmbClientConfiguration -RequireSecuritySignature $true -Force