PILLAR GUIDE

Endpoint Security

EDR, Antivirus & Device Hardening

Table of Contents
Endpoint Protection Platforms (EPP) EDR vs XDR Windows Hardening Linux Hardening Mobile Device Security BYOD Security

Endpoint Protection Platforms (EPP)

EPP provides preventive security for endpoints including antivirus, anti-malware, personal firewall, and host-based intrusion prevention.

EPP vs EDR

EPP (Prevention)EDR (Detection & Response)
Signature-based AVBehavioral analysis
Blocks known threatsDetects unknown threats
Minimal visibilityFull endpoint telemetry
Automatic blockingInvestigation + response

EDR vs XDR

EDR (Endpoint Detection & Response) provides visibility into endpoint activity. XDR (Extended Detection & Response) correlates data across endpoints, network, cloud, and email.

Top EDR Solutions

Windows Hardening

# PowerShell - Security configurations

# Disable SMBv1
Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol

# Enable Windows Firewall
Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled True

# Configure Audit Policy
auditpol /set /category:"Logon/Logoff" /success:enable /failure:enable

# Enable Credential Guard
reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 1

# Disable LLMNR
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\DNSClient" /v EnableMulticast /t REG_DWORD /d 0

CIS Benchmark for Windows

Linux Hardening

# Essential Linux hardening

# Update system
apt update && apt upgrade -y

# Disable root SSH login
sed -i 's/PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config

# Configure SSH key authentication only
sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config

# Enable firewall (UFW)
ufw default deny incoming
ufw default allow outgoing
ufw allow ssh
ufw enable

# Install fail2ban
apt install fail2ban -y
systemctl enable fail2ban

Mobile Device Security

BYOD Security

Bring Your Own Device policies balance employee flexibility with security:

Last updated: December 2024