Zero Trust («never trust, always verify») is no longer a buzzword but a security standard for corporate networks. Let’s look at how to implement this approach with minimal cost.
The first and most important step. According to Microsoft, MFA blocks 99.9% of attacks on accounts.
# MikroTik configuration example
/ip firewall filter
add chain=forward in-interface=vlan-users out-interface=vlan-servers protocol=tcp dst-port=80,443,3389 action=accept
add chain=forward in-interface=vlan-users out-interface=vlan-servers action=drop comment="Block all other traffic"
Set up alerts for:
# PowerShell: audit Domain Admins members
Get-ADGroupMember "Domain Admins" -Recursive |
Get-ADUser -Properties LastLogonDate, PasswordLastSet |
Select Name, LastLogonDate, PasswordLastSet |
Export-Csv admins_audit.csv -Encoding UTF8
Bottom line: Zero Trust is not a product but an approach. Start with MFA and network segmentation — that delivers 80% of the result for 20% of the effort.