CyberDefence — Defence Strategies Reference

Defence Strategies Reference

A practical guide to defensive security — layered protection, detection, incident response, and recovery. Every strategy maps to the attacks it counters, so you can defend with purpose rather than checklist fatigue.

Introduction

Defence is not a single product — it’s a continuous cycle: prevent → detect → respond → recover. The goal is to make attacks expensive, noisy, and short-lived.

Prevent

Reduce the attack surface and stop attacks before they succeed: patching, hardening, MFA, least privilege, network segmentation.

Prevent

Detect

Find intrusions fast: logging, SIEM, EDR, IDS, threat hunting, deception.

Detect

Respond

Contain and eradicate threats: incident response plans, playbooks, isolation, forensics.

Respond

Recover

Restore operations and learn: backups, disaster recovery, post-incident review, resilience.

Recover
The core principle Assume breach. Design every layer as if an attacker is already inside — this is what separates mature security programs from fragile ones.

Defense in Depth

Layer multiple independent controls so a single failure doesn’t cause a breach. No single layer is trusted to stop everything.

1 · PerimeterFirewalls, DMZ, web application firewalls (WAF), VPN gateways, DDoS protection, mail gateways.
2 · NetworkSegmentation, VLANs, micro-segmentation, NAC (802.1X), IDS/IPS, zero-trust network access.
3 · Host / EndpointEDR/AV, host firewalls, patching, hardening, application allow-listing, full-disk encryption.
4 · ApplicationSecure coding, input validation, WAF rules, API security, secrets management, dependency scanning.
5 · DataEncryption at rest/in transit, DLP, access control, classification, immutable backups.
6 · IdentityMFA, SSO, least privilege, privileged access management (PAM), identity governance.
7 · HumanSecurity awareness training, phishing simulations, security culture, insider threat programs.
Design rule Each layer should fail independently and detect failures in the layer below it. If your only control is the perimeter firewall, you have one point of failure.

Zero Trust Architecture

Never trust by default; verify every request, device, and identity — regardless of network location.

Core principles

  • Verify explicitly — authenticate and authorize every request using all available signals (identity, device health, location, behavior).
  • Least privilege access — grant just-enough, just-in-time access; revoke when done.
  • Assume breach — segment, monitor, and limit blast radius as if compromise already happened.

Building blocks

Identity

MFA, SSO, conditional access, passwordless (FIDO2/WebAuthn), identity governance.

Architecture

Device

Device compliance checks, certificate-based auth, endpoint posture before access.

Architecture

Network

Micro-segmentation, software-defined perimeters, no implicit trust on LAN/VPN.

Architecture

Application & Data

Per-app access policies, encryption, DLP, API authorization, shadow-IT control.

Architecture
Mapping to standards Zero Trust is described in NIST SP 800-207 (“Zero Trust Architecture”) — the authoritative reference for implementing it.

Prevention Controls

The highest-ROI defences: stop the most common attacks before they land.

Patch Management

Close known vulnerabilities before they’re exploited. Most breaches use unpatched, known CVEs.

Priority: Use EPSS/CVSS + exposure to prioritize; automate where possible.
Prevent

Multi-Factor Authentication

MFA blocks the vast majority of credential-stuffing and password-based attacks.

Best: Phishing-resistant MFA (FIDO2/WebAuthn) over SMS/TOTP.
Prevent

Least Privilege

Give users and services only the permissions they need; removes the elevation step for attackers.

Tools: PAM, JIT access, privileged access workstations.
Prevent

Network Segmentation

Isolate sensitive systems so a breach in one zone can’t spread laterally.

Methods: VLANs, firewalls between zones, micro-segmentation.
Prevent

Application Allow-Listing

Only approved executables run — blocks LOLBins, malware, and unsigned code.

Tools: AppLocker, WDAC, macOS Gatekeeper.
Prevent

Email & Web Filtering

Block phishing, malicious attachments, and risky domains before users see them.

Controls: SPF/DKIM/DMARC, sandboxing, URL rewriting, DNS filtering.
Prevent

Backup (3-2-1)

Immutable, offline backups neutralize ransomware’s leverage.

Rule: 3 copies, 2 media, 1 offsite — plus immutability and tested restores.
Prevent

Secrets Management

Remove hardcoded credentials; rotate keys; vault secrets.

Tools: Vault, AWS Secrets Manager, KMS, secret scanning.
Prevent

System Hardening

Reduce the attack surface by removing unnecessary components and locking down configurations.

AreaKey actionsBenchmark
OS HardeningRemove unused services/packages, disable guest accounts, enforce strong password policy, configure audit logging, enable host firewall.CIS Benchmarks
WindowsEnable BitLocker, Credential Guard, WDAC, LSA protection, disable SMBv1/LLMNR, enable Windows Defender tamper protection.CIS / Microsoft baselines
LinuxMinimal install, SELinux/AppArmor enforcing, restrict sudo, disable root SSH login, use SSH keys, kernel hardening (sysctl).CIS / STIG
Network DevicesDisable unused ports, change default creds, SSHv2 only, ACLs, disable CDP/LLDP where unused.CIS / vendor guides
CloudLock down S3/object storage, least-privilege IAM, enable MFA on root, restrict IMDS, enable logging (CloudTrail).CIS Cloud Benchmarks
Web ServersRemove server version headers, disable directory listing, TLS 1.2+, security headers (CSP, HSTS).OWASP / CIS
DatabasesRemove default accounts, network restrictions, least-privilege DB users, encryption, audit logging.CIS / vendor guides
Tooling Automate hardening with configuration scanners: OpenSCAP, Lynis, InSpec, Chef/Puppet/Ansible baselines, and cloud posture managers (AWS Config, Azure Policy).

Detection

Prevention fails sometimes. Detection is how you find the attacker before real damage is done.

SIEM

Aggregate and correlate logs across the estate to surface anomalies and alert on threats.

Tools: Splunk, Microsoft Sentinel, Elastic Security, QRadar.
Detect

EDR / XDR

Continuous endpoint visibility, behavioral detection, and response actions (isolate, kill process).

Tools: CrowdStrike, Defender for Endpoint, SentinelOne.
Detect

IDS / IPS

Network-based detection (and blocking) of malicious traffic patterns and signatures.

Tools: Snort, Suricata, Zeek (network metadata).
Detect

Deception (Honeypots)

Plant decoys to lure attackers and generate high-fidelity alerts with near-zero false positives.

Tools: Canary tokens, T-Pot, honeypot services.
Detect

Threat Hunting

Proactively search for attackers that evaded automated detection, driven by hypotheses.

Approach: ATT&CK-based hunting, IoA focus, data-driven.
Detect

UEBA

Detect anomalies in user/entity behavior — impossible travel, unusual data access, off-hours activity.

Signals: Login patterns, data volume, privilege use.
Detect
Detection engineering Build detections from MITRE ATT&CK techniques: for each high-value technique, define a detection rule, a data source, and a test. Use Sigma rules to keep them portable across SIEMs.

Monitoring & Logging

You can’t detect what you don’t collect. Centralized, immutable logs are the foundation of detection and forensics.

What to log (minimum)

  • Authentication — logons, failures, MFA challenges, privilege changes (Windows 4624/4625/4672/4720, Linux auth.log).
  • Process & command-line — Sysmon Event 1, PowerShell script block logging (Event 4104), auditd execve.
  • Network — firewall, DNS, proxy/flow logs (NetFlow), IDS alerts.
  • Cloud — CloudTrail, Azure Activity, GCP Audit logs, and object-storage access logs.
  • Application & database — web server access logs, DB audit logs, API gateway logs.
  • Endpoint — EDR telemetry, registry/file changes, scheduled task creation.

Best practices

Centralize

Ship all logs to a SIEM / log lake with adequate retention (often 90+ days, 1 year for compliance).

Detect

Immutable & offsite

Store logs so attackers can’t tamper with or delete them — WORM storage or separate admin plane.

Detect

Time sync

Use NTP everywhere so cross-system correlation and timelines are accurate.

Detect

Alert tuning

Reduce false positives with context; every alert should have a clear action and owner.

Detect

Incident Response

A structured, rehearsed process for containing and eradicating a breach. Aligned to NIST SP 800-61.

  1. Preparation — build the IR plan, roles, communication channels, tools, and run tabletop exercises.
  2. Detection & Analysis — confirm the incident, scope it, and prioritize severity.
  3. Containment — isolate affected systems/accounts, preserve evidence, stop the bleeding.
  4. Eradication — remove the attacker’s access and artifacts (malware, persistence, backdoors).
  5. Recovery — restore systems from clean state, monitor for re-compromise.
  6. Lessons Learned — document findings and improve controls to prevent recurrence.

Playbooks

Pre-written runbooks for common incidents: phishing, ransomware, data exfil, insider threat, DDoS.

Respond

Containment Strategy

Decide isolate-vs-observe per incident; short-term (block, disconnect) then long-term (reimage, rotate creds).

Respond

Evidence Preservation

Capture forensic images, memory dumps, and logs with chain of custody before remediation.

Respond

Communication

Internal escalation, legal, PR, regulator (GDPR 72h), and customer notification plans.

Respond
Critical first actions Isolate the host, revoke compromised credentials/tokens, rotate secrets, and preserve volatile evidence (memory, network connections) before rebooting or reimaging.

Recovery & Business Continuity

Resilience: how fast you restore operations after disruption, and how you survive worst-case scenarios.

Backup Strategy

3-2-1 rule + immutability + regular restore testing. Backups that can’t be restored are useless.

Recover

Disaster Recovery (DR)

Recovery Time Objective (RTO) and Recovery Point Objective (RPO) define acceptable downtime/data loss.

Recover

Business Continuity (BCP)

Keep critical functions running during disruption — alternate sites, manual fallback, staff redundancy.

Recover

Post-Incident Review

Blameless review to extract lessons, close control gaps, and update playbooks.

Recover
Resilience mindset The metric that matters is mean time to recover (MTTR), not just time-to-detect. Invest in tested recovery, not only prevention.

Attack → Defence Map

Every attack has a counter. Use this map to translate an attack into concrete defensive controls.

AttackPreventDetectRespond / Recover
PhishingEmail filtering, DMARC, MFA, user trainingGateway logs, link-click telemetry, MFA fatigue alertsReset creds, scan for malware, report the campaign
Credential stuffing / sprayingMFA, passwordless, rate limiting, breached-password screeningMany failures across accounts, impossible travelForce reset, block source, review sign-ins
SQL InjectionParameterized queries, WAF, least-priv DBWAF alerts, DB error patternsPatch code, rotate DB creds, audit data access
XSSOutput encoding, CSP, input validationCSP violations, WAF signaturesFix sink, invalidate sessions, review stored payloads
SSRFAllow-list egress, block metadata endpointRequests to 169.254.169.254 / internal IPsRotate cloud creds, close vector, review requests
Kerberoasting / PtHStrong service passwords, LAPS, Credential GuardEvent 4769 anomalies, NTLM anomaliesRotate KRBTGT/affected creds, hunt lateral movement
RansomwareImmutable backups, segmentation, MFA, patchingMass encryption (Sysmon 11), shadow copy deletionIsolate, restore from clean backups, notify
DDoSCDN/scrubbing, rate limiting, redundancyTraffic spikes, connection exhaustionActivate DDoS provider, failover, scale
Data exfiltrationDLP, least privilege, egress filtering, encryptionLarge outbound transfers, unusual DNS/cloud usageBlock egress, contain, assess data loss, notify
LOLBins / obfuscationApp allow-listing, LOLBin blockingSysmon 1 anomalies, script block logging, entropyIsolate host, kill processes, rebuild
Privilege escalationLeast privilege, patching, sudo/SUID auditingUnexpected privilege change, token anomaliesRevoke elevated access, reimage, hunt
Insider threatLeast privilege, PAM, separation of duties, background checksUEBA, unusual data access, off-hours activityRevoke access, legal/HR, forensic review

CyberDefence — a purple-themed defence strategies reference. Aligns with NIST CSF/SP 800-61/800-207, CIS Controls, and MITRE ATT&CK/D3FEND.

A7 Security Hunters provides cybersecurity training, ethical hacking courses, penetration testing education, digital forensics training, AI security learning, and professional cybersecurity certifications for students and professionals across India.

Address: Mata Darwaja, Gau Karan Rd, Near SD School, landmark Gau Karn Traffic Police Choki, Plot 736a Baba Laxman Puri Colony, Makhane or, Library Wali Gali, Rohtak124001, Haryana (India) | Official Email Address- [email protected] | [email protected] | Official Phone Numbers – +91 – 7988-28-5508 | +91 – 818181-6323

© 2026 A7 Security Hunters. Cybersecurity Training, Ethical Hacking Courses & Professional Certifications.