Optional analytics cookies help us improve Hardenly. They stay off unless you accept. Cookie policy
Maturity tier — First: Basic, essential — do this before anything else.
Implementation effort: Medium — requires an audit phase to find legacy devices (printers, NAS) still using SMBv1.
User impact: Low — transparent unless legacy devices depend on SMBv1.
SMBv1 is a 40-year-old protocol with fundamental design flaws that cannot be patched away. It lacks encryption, lacks integrity protection worth trusting, and was the vector for EternalBlue — the exploit behind WannaCry and NotPetya. Microsoft has deprecated it since 2014, yet it still survives in many environments because of one old printer, scanner, or NAS device. Alongside removing SMBv1, enforcing SMB signing stops a different but equally dangerous class of attacks: NTLM relay.
SMBv1 eliminates exposure to remote code execution exploits and downgrade attacks that force a connection onto the weakest dialect.SMB signing adds a cryptographic signature to every SMB packet. Without it, an attacker on the network can relay captured NTLM authentication to another machine and act as that user — a core technique in tools like ntlmrelayx and a standard step in most internal penetration tests.Set-SmbServerConfiguration -AuditSmb1Access $true, then watch the Microsoft-Windows-SMBServer/Audit event log to see which clients still connect with SMBv1.Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol on clients, Get-WindowsFeature FS-SMB1 on servers.SMB1Protocol optional feature, or push Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol through your management tooling. Windows 10 1709+ and Server 2019+ no longer install it by default.Computer Configuration > Policies > Windows Settings > Security Settings > Local Policies > Security Options: set both Microsoft network server: Digitally sign communications (always) and Microsoft network client: Digitally sign communications (always) to Enabled.Get-SmbConnection | Format-List Dialect,Signed from a client.This pairing is one of the highest-value, lowest-cost hardening steps available in a Windows domain: it removes a wormable protocol and neutralizes NTLM relay in a single change window.
Keep building momentum
Audit your firewall for overly permissive rules and replace them with explicit source, destination, and port definitions.
Sign in to vote on this item or share your rollout notes.
No comments yet — be the first to share your rollout experience.