Table of Contents

Click Here to Return To the CompTIA SecurityX Course Page

Security Engineering is 31% of the CompTIA SecurityX (CAS-005) exam, the single heaviest domain. This module covers how you implement and troubleshoot the controls an architect designed. Build deep hands-on familiarity with cryptography and hardware roots of trust, because this domain rewards depth.

Engineering is where designs meet reality. You configure identity systems, harden endpoints, root trust in hardware, secure industrial systems, automate at scale, and apply the right cryptography to each job. Expect performance-based questions here.

Troubleshooting IAM Components

You diagnose identity problems across protocols and services.

ComponentRoleCommon failure
SAMLWeb SSO via XML assertionsClock skew, bad certificate, wrong endpoint
OpenID ConnectAuthN on top of OAuthMisconfigured redirect URI
MFAAdds a second factorTime drift on TOTP tokens
KerberosTicket-based authNTime skew over 5 minutes breaks tickets
PAMPrivileged access managementVault misconfiguration, broken check-out
802.1XPort-based network accessRADIUS or supplicant misconfiguration

Kerberos and SAML both break when system clocks drift, so check time sync first.

Endpoint and Server Security

You harden the hosts where attackers land.

  • EDR (Endpoint Detection and Response) records endpoint activity and responds to threats.
  • Application control allowlists approved software and blocks everything else.
  • HIPS/HIDS detect and block host-level intrusions.
  • MDM (Mobile Device Management) enforces policy on phones and tablets.
  • SELinux applies mandatory access control on Linux so a compromised process cannot exceed its label.

Threat-Actor TTPs

You recognize the tactics, techniques, and procedures attackers use after a foothold:

  • Injections force an app to run attacker input as code.
  • Privilege escalation moves from a normal account to admin.
  • Credential dumping steals hashes and tokens from memory.
  • Lateral movement spreads from one host to others.
  • Defensive evasion disables logging and tools to stay hidden.

You map these to MITRE ATT&CK, the framework introduced in Governance, Risk, and Compliance .

Network Infrastructure Security

You troubleshoot the protocols that keep traffic trustworthy.

TechnologyProtectsNotes
DNSSECDNS integritySigns records to stop spoofing
SPFEmail sender IPsLists who may send for a domain
DKIMEmail integritySigns messages cryptographically
DMARCEmail policyTells receivers how to handle SPF/DKIM failures
TLSTraffic confidentialityWatch for expired certs and weak ciphers
# Check a domain's SPF and DMARC records during email troubleshooting
dig +short TXT example.com | grep spf
dig +short TXT _dmarc.example.com

Hardware Security Technologies

You root trust in hardware so software cannot lie about its own integrity.

TechnologyRole
TPMChip storing keys and boot measurements
HSMAppliance for high-volume key operations
vTPMVirtual TPM for virtual machines
Secure BootAllows only signed bootloaders
Measured BootRecords each boot stage for attestation
Self-encrypting driveEncrypts data at the hardware level

Specialized and Legacy Systems

You secure systems that cannot run standard endpoint tools.

  • OT, SCADA, and ICS run critical infrastructure and often use old, fragile protocols. You isolate them with the Purdue model and monitor passively.
  • IoT devices ship with weak defaults, so you segment them and change credentials.
  • SoC and embedded systems have limited resources, so you secure them at the network boundary.

These systems carry deep, structural weaknesses, as explored in why OT/ICS/PLC cybersecurity is fundamentally broken .

Automation to Secure the Enterprise

You automate so security scales beyond manual effort.

  • PowerShell, Bash, and Python script repetitive tasks and response actions.
  • Infrastructure as Code (IaC) defines systems in version-controlled files, covered in Ansible for beginners .
  • SOAR orchestrates and automates incident response.
  • SCAP, OVAL, and XCCDF standardize how you express and check secure configurations.

Advanced Cryptography

You explain and apply modern cryptographic concepts.

ConceptWhat it does
Post-quantum cryptographyResists attacks from quantum computers (ML-KEM, ML-DSA)
Homomorphic encryptionComputes on encrypted data without decrypting
Forward secrecyA stolen key cannot decrypt past sessions
Key stretchingStrengthens weak passwords (PBKDF2, bcrypt, Argon2)

You then match the use case to the right technique:

  • Tokenization replaces sensitive data with a non-sensitive token.
  • Code signing proves software came from a trusted source and was not altered.
  • Digital signatures provide integrity and non-repudiation.
  • Symmetric cryptography is fast for bulk data; asymmetric solves key distribution and signatures.

Next Steps

With the controls engineered, continue to Security Operations to monitor and respond, then revisit Security Architecture for the design context. Return to the CompTIA SecurityX Course and review tips for passing CompTIA exams .