CISSP Certified Information Systems Security Professional

Security Field Guide
Linux Edition

All 8 CISSP domains summarised — each paired with real Linux command examples, configurations, and tools.

8 domains · SELinux · AppArmor · SSH · IPsec · iptables · OpenSSL & more
D1
Security & Risk Management
+

Summary

The foundation of the CISSP. Covers governance frameworks, security policies, risk analysis (qualitative & quantitative), legal compliance (GDPR, HIPAA, SOX), and ethics. The CIA triad — Confidentiality, Integrity, Availability — originates here.

Key risk concepts: asset value, threat, vulnerability, likelihood, impact, and controls (preventive, detective, corrective). Risk can be accepted, avoided, mitigated, or transferred.

CIA Triad Risk Analysis Governance GDPR NIST SP 800-53 ISO 27001 ALE / SLE / ARO

Linux Example — Audit & Policy

bash — auditd risk controls
# Install and enable Linux Audit Daemon
apt install -y auditd audispd-plugins
systemctl enable --now auditd

# Watch writes to /etc/passwd (integrity control)
auditctl -w /etc/passwd -p wa -k passwd_changes

# Watch /etc/sudoers (privilege escalation risk)
auditctl -w /etc/sudoers -p wa -k sudoers_mod

# View audit log for those events
ausearch -k passwd_changes --interpret

# Generate compliance report (SLE/ALE evidence)
aureport --summary -i
Summary Report
==============
Range of time: ...
Number of changes to /etc: 3
Number of logins: 47
Number of failed logins: 2
D2
Asset Security
+
D3
Security Architecture & Engineering
+
D4
Network Security
+
D5
Identity & Access Management (IAM)
+
D6
Security Assessment & Testing
+
D7
Security Operations
+
D8
Software Development Security
+