CAS-005 — CompTIA SecurityX Quick Review

Quick Review for CompTIA SecurityX (CAS-005): high-yield security architecture, engineering, operations, GRC, and exam decision points.

Quick Review Purpose

This Quick Review is for candidates preparing for the real CompTIA SecurityX (CAS-005) exam from CompTIA. Use it to refresh high-yield concepts before moving into topic drills, mock exams, and detailed explanations in an IT Mastery question bank.

SecurityX is an advanced security exam. Many questions are not asking, “What is this term?” They are asking, “Given this business constraint, threat, architecture, and operational reality, what is the best security decision?”

Your review should focus on:

  • Architecture tradeoffs, not just tool names.
  • Risk-based prioritization.
  • Enterprise controls across identity, cloud, network, application, data, and operations.
  • Secure implementation details.
  • Governance, risk, and compliance reasoning.
  • Incident response and resilience.
  • Choosing the best answer when multiple options are technically valid.

Exam Mindset: Think Like a Security Architect

For CompTIA SecurityX (CAS-005), assume the role of a senior security practitioner who must balance risk, usability, cost, compliance, and operational impact.

The “Best Answer” Pattern

When two answers look correct, prefer the one that is:

If the scenario emphasizes…Prefer an answer that…
Enterprise architectureReduces systemic risk, not just one symptom
ComplianceProvides evidence, auditability, policy mapping, and repeatability
Zero trustVerifies identity, device, context, and least privilege continuously
CloudUses native controls, automation, identity-first design, and shared-responsibility awareness
Incident responsePreserves evidence, contains impact, and follows the IR process
Business continuityMeets recovery objectives and protects critical processes
Vulnerability managementPrioritizes by exploitability, exposure, business criticality, and compensating controls
DevSecOpsShifts security left while also enforcing runtime protections
Data protectionUses classification, lifecycle controls, encryption, DLP, and access governance
High availabilityRemoves single points of failure and validates failover

Common Candidate Mistake

Do not automatically choose the most expensive or most advanced technology. The exam often rewards the control that best satisfies the stated requirement with the least unnecessary complexity.

Example:

  • If the problem is excessive standing administrator access, privileged access management with just-in-time access is usually stronger than simply adding another password policy.
  • If the problem is untrusted east-west traffic, microsegmentation and workload identity are often better than only hardening the perimeter firewall.
  • If the problem is lack of evidence for compliance, logging, control mapping, attestation, and repeatable reporting may matter more than buying a new prevention tool.

High-Yield SecurityX Review Map

AreaWhat to know coldCommon trap
Identity and accessFederation, MFA, PAM, conditional access, RBAC, ABAC, least privilegeConfusing authentication with authorization
Zero trustContinuous verification, device posture, segmentation, identity-centric accessTreating zero trust as one product
Cloud securityShared responsibility, IAM, network controls, encryption, logging, CSPM, workload protectionAssuming the cloud provider secures customer configurations
Application securitySecure SDLC, APIs, SAST, DAST, SCA, secrets, CI/CD securityRelying only on final-stage penetration testing
Data securityClassification, encryption, tokenization, masking, DLP, retentionEncrypting data without managing access or keys
CryptographyUse cases, key management, PKI, TLS, HSM, certificatesChoosing custom crypto or weak legacy algorithms
Risk managementInherent/residual risk, treatment options, BIA, RTO/RPO, third-party riskTreating all vulnerabilities as equal
Security operationsSIEM, SOAR, EDR/XDR, NDR, threat hunting, incident responseContainment before preserving critical evidence when forensics is required
ResilienceHA, DR, backups, immutable storage, failover testingConfusing backup with business continuity
Network securitySegmentation, NAC, VPN/ZTNA, WAF, IDS/IPS, DDoS protectionDepending only on perimeter controls
GovernancePolicies, standards, procedures, baselines, audits, metricsWriting policy without enforcement or evidence
Enterprise assessmentThreat modeling, attack path analysis, red/purple teaming, vulnerability managementFixing low-risk findings while critical exposed systems remain exploitable

Fast Decision Workflow for Scenario Questions

Use this mental workflow when a CAS-005 scenario is long or includes several attractive answer choices.

    flowchart TD
	    A[Read the business problem] --> B[Identify the asset and risk]
	    B --> C[Find constraints: compliance, cost, uptime, cloud, legacy, users]
	    C --> D[Determine control type needed]
	    D --> E{Prevent, detect, respond, recover, or govern?}
	    E --> F[Map to least-privilege and risk-based option]
	    F --> G[Eliminate tools that do not address the root cause]
	    G --> H[Choose the answer with evidence, scalability, and operational fit]

Identity and Access Management

Identity is central to modern enterprise security. For advanced questions, expect identity to connect to cloud, remote work, privileged administration, SaaS, APIs, and zero trust.

Core Identity Concepts

ConceptReview point
AuthenticationProves identity, often with password, certificate, token, biometric, or MFA
AuthorizationDetermines what an authenticated subject can access
AccountingRecords activity for audit, investigation, and nonrepudiation
FederationAllows identity trust across organizations, clouds, or applications
Single sign-onReduces repeated logins but increases importance of IdP security
MFAStronger when factors are independent and phishing-resistant
Conditional accessUses context such as device posture, location, risk score, and user behavior
PAMControls privileged accounts, sessions, credentials, elevation, and approvals
JIT accessGrants privilege only when needed and for limited time
JEAGrants only the specific administrative capability needed
Service accountsRequire rotation, least privilege, monitoring, and ownership
Break-glass accountsEmergency use only; strongly protected, monitored, and tested

Federation and Access Protocols

Protocol / StandardPrimary useExam distinction
SAMLBrowser-based enterprise SSOCommon with SaaS federation
OAuth 2.0Delegated authorizationGrants access through scopes; not primarily authentication
OpenID ConnectAuthentication layer on OAuth 2.0Used for identity claims and sign-in
KerberosTicket-based authenticationCommon in enterprise directory environments
LDAP / LDAPSDirectory queriesLDAPS protects LDAP with TLS
RADIUSCentralized authentication for network accessCommon with VPN, Wi-Fi, NAC
TACACS+Device administration AAASeparates authentication, authorization, and accounting well
SCIMIdentity provisioningAutomates user lifecycle across systems

Identity Traps

  • OAuth is not the same as authentication. OAuth delegates authorization; OpenID Connect adds authentication.
  • SSO is not automatically safer. It centralizes risk; protect the identity provider with MFA, monitoring, conditional access, and strong recovery controls.
  • MFA quality matters. Phishing-resistant MFA is stronger than SMS-based MFA.
  • Privileged access is not only about admins. Service accounts, CI/CD runners, API keys, and cloud roles can be privileged.
  • Least privilege requires lifecycle management. Access reviews, recertification, role mining, and deprovisioning matter.

Authorization Models

ModelBest fitWatch for
RBACStable job rolesRole explosion if roles are too granular
ABACDynamic access based on attributesRequires accurate attributes and policy logic
MACHigh-control environmentsLess flexible; centrally enforced labels
DACOwner-controlled accessCan lead to inconsistent permissions
ReBACRelationship-based accessCommon in collaboration and social graph-style access
Rule-based accessIf/then policy logicCan become hard to manage at scale

Quick Rule

If the scenario emphasizes dynamic context such as device health, location, risk score, time, data sensitivity, and user attributes, ABAC or conditional access is usually a better answer than static role assignment alone.

Zero Trust Architecture

Zero trust assumes no implicit trust based solely on network location.

Zero Trust Principles

  • Verify explicitly.
  • Use least privilege.
  • Assume breach.
  • Continuously evaluate trust.
  • Segment access to applications and workloads.
  • Monitor behavior and posture.
  • Apply policy consistently across users, devices, services, and data.

Zero Trust Control Map

Zero trust concernStrong control examples
User identityMFA, conditional access, identity governance
Device trustDevice certificates, MDM/UEM, posture checks
Application accessZTNA, identity-aware proxy, per-app access
Workload accessService identity, microsegmentation, workload policies
Data accessClassification, DLP, rights management, encryption
VisibilityCentralized logs, UEBA, EDR/XDR, NDR
PrivilegePAM, JIT, JEA, session recording

Common Trap

A VPN alone is not zero trust. VPNs can provide encrypted connectivity, but zero trust requires explicit verification, least privilege, segmentation, and continuous evaluation.

Network and Infrastructure Security

Segmentation Choices

RequirementBetter design choice
Limit user-to-server accessVLANs, ACLs, firewalls, NAC
Limit workload-to-workload trafficMicrosegmentation
Isolate sensitive systemsDedicated security zones and strict policy enforcement
Control third-party accessZTNA, bastion, restricted routes, monitored sessions
Reduce lateral movementIdentity-based access, host firewalling, EDR, segmentation
Protect OT/ICSStrong separation, allowlists, jump hosts, passive monitoring

Perimeter and Edge Controls

ControlUse
NGFWLayer 7 filtering, application visibility, IPS features
IDSDetects suspicious activity; does not block by itself
IPSBlocks or prevents detected traffic
WAFProtects web apps from application-layer attacks
API gatewayAuthentication, authorization, rate limiting, routing, observability
DDoS protectionAbsorbs or filters volumetric and protocol attacks
Secure web gatewayControls outbound web access
CASBVisibility and control for SaaS/cloud usage
SASEConverges networking and security services
SSESecurity service edge capabilities without full WAN functions

Secure Network Services

ServiceSecure design points
DNSUse filtering, logging, DNSSEC where appropriate, secure resolvers
EmailSPF, DKIM, DMARC, anti-phishing controls, sandboxing
NTPAuthenticated time sources; critical for logs and Kerberos
DHCPSnooping, IP source guard, segmentation
SNMPPrefer SNMPv3; avoid default communities
SSHKey-based auth, strong algorithms, no shared admin accounts
RDPRestrict exposure; use gateway, MFA, logging
Wi-FiEnterprise authentication, strong encryption, certificate-based access where possible

Candidate Traps

  • A firewall rule does not replace identity governance.
  • Network segmentation does not remove the need for endpoint controls.
  • IDS alerts are not prevention unless paired with blocking or response workflows.
  • Exposing management interfaces to the internet is rarely acceptable.
  • “Encrypt the traffic” does not fix excessive authorization.

Cloud Security

Cloud questions often test whether you understand responsibility boundaries, identity, automation, logging, and secure architecture.

Shared Responsibility Review

AreaUsually cloud provider responsibilityUsually customer responsibility
Physical data centerFacilities, physical securityVendor assessment and contractual review
Core infrastructureHardware, foundational cloud servicesSecure configuration choices
IdentityPlatform IAM capabilitiesUsers, roles, policies, federation
DataStorage services availableClassification, encryption choices, access, retention
NetworkCloud networking primitivesRouting, security groups, segmentation
ApplicationsManaged service platform elementsApplication code, secrets, API security
LoggingLog generation featuresEnabling, centralizing, monitoring, retention

Exact responsibility depends on service model and contract. IaaS gives the customer more operational responsibility than PaaS or SaaS.

IaaS, PaaS, SaaS Decision Points

ModelCustomer focus
IaaSOS hardening, patching, network rules, IAM, logging, workload security
PaaSApp configuration, identity, secrets, data, secure code, service settings
SaaSUser access, tenant configuration, data governance, integrations, audit logs

Cloud Security Controls

NeedControl
Find misconfigurationsCSPM
Protect workloadsCWPP
Manage cloud entitlementsCIEM
Secure containers and clustersImage scanning, admission control, runtime protection
Govern infrastructure changesIaC scanning, policy as code
Protect secretsSecrets manager, rotation, no hardcoding
Centralize eventsCloud-native logging to SIEM/data lake
Reduce blast radiusSeparate accounts/projects/subscriptions, least-privilege IAM
Protect keysKMS, HSM-backed keys when required

Cloud Traps

  • Public object storage exposure is usually a configuration and governance failure.
  • Long-lived access keys are riskier than short-lived federated credentials.
  • Cloud encryption is incomplete without access control and key governance.
  • Security groups, NACLs, and routing controls operate differently; do not assume one replaces all others.
  • Multi-cloud increases complexity; standardize identity, logging, policy, and tagging.

Container, Kubernetes, and Workload Security

Container Security Checklist

LayerReview focus
ImageMinimal base image, signed image, vulnerability scanning, SBOM
BuildSecure CI/CD, no secrets in pipelines, dependency checks
RegistryAccess control, image signing, retention, scanning
RuntimeLeast privilege, read-only filesystem, resource limits
NetworkNamespace isolation, network policies, service mesh where useful
SecretsDedicated secrets management, rotation, no environment leakage
ClusterRBAC, admission control, audit logs, secure API server
NodeHardened host, patching, EDR/runtime monitoring

Kubernetes Traps

  • Do not run containers as root unless explicitly required and justified.
  • Do not grant broad cluster-admin rights to applications.
  • Kubernetes secrets are not automatically equivalent to full enterprise secrets management.
  • Image scanning is not enough; runtime behavior still matters.
  • Admission control can prevent risky deployments before they run.

Application and API Security

Secure SDLC Controls

PhaseHigh-yield controls
RequirementsSecurity requirements, privacy requirements, abuse cases
DesignThreat modeling, architecture review, secure patterns
DevelopmentSecure coding, peer review, secrets control
BuildSAST, SCA, IaC scanning, signing
TestDAST, IAST, fuzzing, API testing
ReleaseChange approval, deployment controls, artifact integrity
RuntimeWAF, RASP where appropriate, logging, monitoring
MaintenancePatch dependencies, vulnerability intake, bug bounty handling

Testing Types

TestBest use
SASTFinds code issues before runtime
DASTTests running application behavior
IASTObserves application while tested
SCAIdentifies vulnerable or risky dependencies
FuzzingFinds unexpected input-handling failures
Penetration testExploits realistic attack paths under scope
Code reviewFinds logic flaws and insecure patterns
Threat modelingFinds design-level weaknesses before build

API Security Review

RiskControl
Broken object-level authorizationEnforce authorization per object and request
Excessive data exposureResponse filtering and data minimization
Weak authenticationStrong tokens, OIDC, mutual TLS where appropriate
Token misuseProper audience, issuer, scope, expiration validation
Abuse and scrapingRate limiting, throttling, anomaly detection
InjectionInput validation, parameterized queries
Unmanaged APIsAPI inventory, gateway, discovery
Secrets leakageVaulting, rotation, scanning

Common Application Traps

  • Authentication success does not prove authorization is correct.
  • WAFs help, but they do not replace secure code.
  • SAST may miss runtime configuration issues.
  • DAST may miss unreachable code paths.
  • SCA identifies dependency risk but does not always prove exploitability in your environment.
  • Secrets in source control require rotation, not just deletion from the latest commit.

Data Security and Privacy

Data Lifecycle Controls

StageControls
CreateClassification, ownership, labeling
StoreEncryption, access control, tokenization, retention
UseLeast privilege, masking, monitoring
ShareDLP, rights management, secure transfer, contracts
ArchiveRetention policy, immutable storage where required
DestroySecure deletion, cryptographic erasure, certificate of destruction

Data Protection Methods

MethodBest fitWatch for
EncryptionConfidentiality of data at rest or in transitKey management is critical
TokenizationReplacing sensitive data with tokensToken vault becomes highly sensitive
MaskingReducing exposure in displays or testsMay not protect original source data
HashingIntegrity verification or password storagePasswords need salt and slow hashing
DLPDetecting or preventing sensitive data movementRequires tuning and classification
Rights managementPersistent usage controlMay affect usability and compatibility

Data Classification Decision Rule

If the question asks what to do first before applying data protection controls, the answer is often to identify, classify, and assign ownership. You cannot consistently protect data you have not inventoried or classified.

Cryptography and PKI

Cryptographic Use Cases

NeedCommon solution
ConfidentialitySymmetric encryption for bulk data
Key exchangeAsymmetric cryptography or key agreement
IntegrityHashing or message authentication
AuthenticationCertificates, digital signatures, MACs
NonrepudiationDigital signatures with proper key control
Password storageSalted, adaptive hashing
Data in transitTLS with strong configuration
Data at restDisk, database, object, or application-layer encryption
Key protectionHSM, KMS, TPM, secure enclave

PKI Components

ComponentRole
Root CATrust anchor; should be highly protected
Intermediate CAIssues certificates while limiting root exposure
CertificateBinds public key to subject identity
CSRRequest containing public key and subject details
CRL / OCSPCertificate revocation checking
HSMHardware-backed key protection
Certificate policyDefines issuance and management rules

TLS Review

Know the purpose of:

  • Server authentication.
  • Optional mutual TLS.
  • Certificate chain validation.
  • Cipher suite selection.
  • Forward secrecy.
  • Certificate expiration and renewal.
  • Revocation checking.
  • Secure protocol versions and configurations.

Crypto Traps

  • Do not choose custom cryptography.
  • Do not choose deprecated or weak algorithms when modern alternatives are available.
  • Encryption does not provide integrity unless the mode or construction supports it.
  • Hashing is not encryption.
  • Encoding is not encryption.
  • Key rotation must be planned with availability and data access in mind.
  • Losing encryption keys can mean losing the data.

Governance, Risk, and Compliance

Risk Terms

TermMeaning
AssetSomething of value to protect
ThreatPotential cause of harm
VulnerabilityWeakness that can be exploited
LikelihoodChance of risk occurring
ImpactConsequence if risk occurs
Inherent riskRisk before controls
Residual riskRisk remaining after controls
Risk appetiteAmount of risk leadership is willing to accept
Risk toleranceAcceptable variation around appetite
ControlSafeguard that modifies risk
Compensating controlAlternative control that reduces risk when primary control is not feasible

Risk Treatment Options

OptionMeaningExample
AvoidStop the risky activityRetire an unsafe legacy service
MitigateReduce likelihood or impactPatch, segment, monitor
TransferShift financial or operational riskCyber insurance, contract terms
AcceptFormally acknowledge residual riskDocumented exception approval

Quantitative Risk Formulas

Use these when a question provides numerical values.

\[ SLE = Asset\ Value \times Exposure\ Factor \]\[ ALE = SLE \times ARO \]

Where:

  • SLE = single loss expectancy.
  • ARO = annualized rate of occurrence.
  • ALE = annualized loss expectancy.

Governance Artifacts

ArtifactPurpose
PolicyHigh-level management intent
StandardMandatory specific requirement
ProcedureStep-by-step instructions
GuidelineRecommended practice
BaselineMinimum secure configuration
ExceptionApproved deviation with risk acceptance
Control matrixMaps controls to requirements
Risk registerTracks risks, owners, status, and treatment
Audit evidenceProves controls exist and operate

GRC Traps

  • A policy without enforcement, ownership, and evidence is weak.
  • Accepting risk should be formal and authorized, not informal.
  • Compliance does not guarantee security.
  • Security does not automatically prove compliance.
  • Metrics should support decisions, not just report activity.
  • Third-party risk continues after contract signing; monitoring and reassessment matter.

Business Continuity and Disaster Recovery

Key Terms

TermMeaning
BIABusiness impact analysis; identifies critical processes and impacts
RTOMaximum acceptable time to restore service
RPOMaximum acceptable data loss measured in time
MTD / MAOMaximum tolerable downtime/outage
DRPDisaster recovery plan for technology restoration
BCPBusiness continuity plan for sustaining critical operations
COOPContinuity of operations planning
FailoverMoving service to alternate resources
FailbackReturning to primary resources after recovery

Availability and Recovery Choices

RequirementLikely answer
Minimal downtimeActive-active, clustering, load balancing
Rapid recovery at lower costWarm site or pre-provisioned standby
Lowest cost, slower recoveryCold site
Protect against ransomwareImmutable/offline backups and tested restoration
Protect regional outageMulti-region architecture
Reduce hardware failure impactRedundancy and high availability
Verify DR readinessTabletop, simulation, failover test

Backup Types

TypeAdvantageLimitation
FullSimplest restoreMore storage/time
IncrementalEfficient backupRestore may require chain
DifferentialFaster restore than long incremental chainGrows until next full
SnapshotFast point-in-time captureMay depend on underlying platform
Immutable backupResists tampering/ransomwareRequires retention and access planning
Offline backupStrong isolationSlower operational access

Continuity Trap

A backup is not a disaster recovery strategy by itself. The exam may expect tested restoration, defined RTO/RPO, alternate processing, dependency mapping, communications, and business ownership.

Security Operations and Monitoring

Detection and Response Tooling

ToolRole
SIEMAggregates, correlates, and alerts on logs/events
SOARAutomates response workflows and enrichment
EDREndpoint detection and response
XDRCorrelates across multiple telemetry sources
NDRNetwork detection and response
UEBADetects abnormal user/entity behavior
DLPDetects or blocks sensitive data movement
TIPThreat intelligence platform
DeceptionHoneypots, decoys, canary tokens
Case managementTracks investigations and evidence

Log Sources to Remember

  • Identity provider events.
  • Endpoint telemetry.
  • Network flow logs.
  • DNS logs.
  • Firewall and proxy logs.
  • Cloud control plane logs.
  • SaaS audit logs.
  • Application logs.
  • Database activity logs.
  • EDR/XDR alerts.
  • Email security events.
  • CI/CD and code repository events.

Incident Response Process

PhaseFocus
PreparationPlans, tools, roles, communications, logging
IdentificationConfirm incident and scope
ContainmentLimit spread and damage
EradicationRemove root cause and attacker presence
RecoveryRestore operations securely
Lessons learnedImprove controls and procedures

Evidence Handling

For forensic scenarios, preserve:

  • Chain of custody.
  • Time synchronization.
  • Original evidence integrity.
  • Volatile data when appropriate.
  • Disk/memory images when needed.
  • Logs before retention windows expire.
  • Documented actions and timestamps.

IR Traps

  • Do not wipe a system before collecting required evidence if forensic investigation is needed.
  • Do not restore from backup without removing the root cause.
  • Do not notify externally before following the incident communication plan, unless the scenario clearly requires it.
  • Containment should be proportional; disconnecting critical systems may create business harm.
  • Lessons learned should produce control improvements, not only a report.

Threat Intelligence and Threat Hunting

Threat Intelligence Types

TypeDescription
StrategicExecutive-level trends and risk context
OperationalCampaigns, adversaries, motivations
TacticalTTPs mapped to attacker behavior
TechnicalIOCs such as IPs, hashes, domains

Intelligence Quality

Good intelligence is:

  • Relevant.
  • Timely.
  • Actionable.
  • Accurate.
  • Contextualized.
  • Mapped to controls or detection logic.

Threat Hunting Review

StepActivity
HypothesisDefine suspected attacker behavior
Data selectionChoose logs/telemetry needed
AnalysisQuery and investigate patterns
ValidationConfirm or reject hypothesis
ResponseEscalate, contain, or tune detections
ImprovementCreate detections and close visibility gaps

Trap

Indicators of compromise are useful but often expire quickly. For advanced defense, behavioral detections based on tactics, techniques, and procedures are usually more durable.

Vulnerability Management and Enterprise Assessment

Vulnerability Prioritization

Do not prioritize only by severity score. Consider:

  • Internet exposure.
  • Known exploitation.
  • Asset criticality.
  • Data sensitivity.
  • Compensating controls.
  • Exploit maturity.
  • Privilege required.
  • Attack path relevance.
  • Business impact.
  • Patch availability.
  • Maintenance windows.
  • Regulatory or contractual requirements.

Assessment Types

AssessmentPurpose
Vulnerability scanIdentifies known weaknesses
Configuration auditCompares systems to baselines
Penetration testExploits vulnerabilities to prove impact
Red teamTests detection and response against realistic adversary behavior
Blue teamDefends, monitors, and responds
Purple teamCollaborative improvement between attack and defense
Tabletop exerciseValidates plans and decision-making
Security architecture reviewEvaluates design-level risk
Threat modelIdentifies design threats and mitigations
Attack path analysisFinds chained paths to critical assets

Remediation Choices

SituationBest response
Patch available, critical exposed systemPatch or mitigate urgently
Patch unavailableCompensating controls, segmentation, monitoring
Legacy system cannot be patchedIsolate, restrict, virtual patch, plan replacement
False positive suspectedValidate with evidence
Business outage riskPlan maintenance, test rollback, add temporary mitigations
Repeated misconfigurationAutomate baseline enforcement

Trap

A penetration test finding is not “fixed” when the report is delivered. Closure requires remediation, validation, tracking, ownership, and sometimes control redesign.

Threat Modeling

Threat modeling helps identify design flaws before deployment.

STRIDE Review

STRIDE categoryConcernExample control
SpoofingPretending to be someone/something elseStrong authentication
TamperingUnauthorized modificationIntegrity checks, signing
RepudiationDenying an actionLogging, nonrepudiation
Information disclosureData exposureEncryption, access control
Denial of serviceAvailability attackRate limiting, redundancy
Elevation of privilegeGaining unauthorized rightsLeast privilege, input validation

Threat Modeling Traps

  • Threat modeling is most valuable early in design, not only after production deployment.
  • A data flow diagram helps identify trust boundaries.
  • Mitigations should map to specific threats.
  • Business logic flaws may not be found by simple vulnerability scanning.

Enterprise Architecture Decision Rules

Control Selection Table

Scenario clueLikely best control
Excessive administrator privilegesPAM, JIT, access review
Lateral movement after phishingSegmentation, EDR, identity controls
SaaS shadow ITCASB, discovery, SaaS governance
Cloud misconfigurationsCSPM, policy as code, IaC scanning
Secrets in codeSecrets manager, scanning, rotation
API abuseAPI gateway, rate limiting, authorization checks
Sensitive data in test environmentsMasking, tokenization, synthetic data
Ransomware concernImmutable backups, EDR, segmentation, tested restore
Weak vendor securityThird-party risk assessment, contract controls, monitoring
Audit evidence gapsCentralized logging, control mapping, evidence automation
Legacy unsupported serverIsolation, compensating controls, migration plan
High false positivesDetection tuning, baselining, context enrichment
Need secure remote app accessZTNA or identity-aware proxy
Need branch security and cloud accessSASE/SSE depending on networking requirement
Need workload-to-workload restrictionMicrosegmentation
Need secure admin accessBastion host, PAM, session recording

Secure Engineering and Automation

Infrastructure as Code Security

RiskControl
Misconfigured cloud resourcesIaC scanning and policy as code
Unreviewed changesPull requests and approvals
DriftContinuous compliance checks
Secret exposureSecret scanning and vault integration
Inconsistent buildsImmutable infrastructure
Manual errorsAutomated deployment pipelines

CI/CD Security

AreaControls
Source controlBranch protection, signed commits, code review
Build agentsHardened runners, ephemeral builds
DependenciesSCA, repository controls, SBOM
SecretsVault integration, short-lived credentials
ArtifactsSigning, provenance, integrity checks
DeploymentLeast-privilege deploy roles, approvals
MonitoringPipeline logs, anomaly detection

DevSecOps Trap

“Shift left” does not mean runtime security disappears. Strong programs combine early testing, secure pipelines, runtime monitoring, and rapid feedback.

Endpoint, Mobile, and Device Security

Endpoint Controls

ControlPurpose
EDRDetect and respond to endpoint threats
Application allowlistingRestrict execution to approved software
Host firewallLimit inbound/outbound host traffic
Disk encryptionProtect data if device is lost
Secure bootValidate boot integrity
TPMHardware-backed key protection
Patch managementReduce known vulnerabilities
MDM/UEMEnforce mobile and endpoint policy
DLPPrevent sensitive data leakage
Browser isolationReduce web-based compromise risk

BYOD and Mobile Traps

  • BYOD requires policy, user consent, containerization or app protection, and data wipe boundaries.
  • Full device wipe may be inappropriate for personally owned devices unless policy and consent allow it.
  • Jailbroken or rooted devices should fail posture checks.
  • Mobile MFA push fatigue attacks require stronger controls and user education.

OT, ICS, and IoT Security

OT/ICS Priorities

PrioritySecurity implication
SafetyAvoid controls that could disrupt safe operations
AvailabilityPatch and scan carefully; test before deployment
IntegrityProtect commands, configurations, and sensor data
SegmentationSeparate OT from IT and internet exposure
MonitoringPrefer passive monitoring where active scanning is risky
Remote accessUse jump hosts, MFA, strict approvals, logging

OT/IoT Traps

  • Traditional vulnerability scanning can disrupt fragile systems.
  • Patching may require vendor validation and maintenance windows.
  • Default credentials and exposed management interfaces are common IoT risks.
  • Network isolation is often essential because device-level controls may be limited.

Physical and Environmental Security

Physical Control Categories

TypeExamples
DeterrentFences, lighting, signage
PreventiveLocks, mantraps, guards, biometrics
DetectiveCameras, motion sensors, alarms
CorrectiveFire suppression, incident response
CompensatingAdditional monitoring when primary control is unavailable

Environmental Controls

  • Fire detection and suppression.
  • HVAC and humidity control.
  • UPS and generator power.
  • Water leak detection.
  • Cable management.
  • Secure equipment disposal.
  • Restricted data center access.

Trap

Biometrics identify people, but they can raise privacy, storage, and fallback concerns. Strong designs include liveness detection, secure template storage, and alternate access procedures.

Security Metrics and Reporting

Useful Metrics

MetricWhy it matters
Mean time to detectVisibility and detection effectiveness
Mean time to respondOperational response capability
Patch SLA complianceVulnerability management performance
Phishing report rateUser reporting culture
Control coverageWhether critical assets are protected
Backup restore successActual recoverability
Incident recurrenceRoot-cause remediation quality
Privileged account countAccess risk exposure
Logging coverageInvestigation readiness
Exception ageRisk acceptance discipline

Reporting Trap

Executives usually need risk, trend, impact, and decision support. Analysts need technical detail. Match the report to the audience.

Common SecurityX Candidate Traps

Technical Traps

  • Confusing encryption, hashing, encoding, and tokenization.
  • Treating authentication as authorization.
  • Choosing a VPN when the scenario requires per-application zero trust access.
  • Selecting IDS when prevention is required.
  • Selecting prevention when the scenario asks for visibility or evidence.
  • Ignoring key management in encryption scenarios.
  • Forgetting certificate lifecycle management.
  • Fixing symptoms instead of root causes.
  • Assuming cloud-native means secure by default.
  • Missing service accounts and machine identities.

Risk and Governance Traps

  • Treating every critical vulnerability score as the top business risk.
  • Ignoring asset criticality and exposure.
  • Accepting risk without formal approval.
  • Confusing policy, standard, procedure, and guideline.
  • Assuming compliance equals security.
  • Forgetting third-party monitoring after onboarding.
  • Choosing a control that violates stated business constraints.

Incident Response Traps

  • Destroying evidence too early.
  • Restoring systems before eradication.
  • Communicating outside the approved plan.
  • Skipping lessons learned.
  • Failing to document actions.
  • Ignoring time synchronization.
  • Not validating that recovery is clean.

Quick Tables for Last-Minute Review

Control Type Recognition

Control typePurposeExample
PreventiveStops event before it occursMFA, firewall, access control
DetectiveIdentifies eventIDS, SIEM alert, camera
CorrectiveRestores after eventPatch, restore backup
DeterrentDiscourages attackWarning banner, guard
CompensatingAlternative risk reductionExtra monitoring for unpatchable system
DirectiveGuides behaviorPolicy, standard
RecoveryRestores capabilityDR site, backup restoration

Security Objective Recognition

ObjectivePrimary concern
ConfidentialityPrevent unauthorized disclosure
IntegrityPrevent unauthorized modification
AvailabilityEnsure reliable access
AuthenticityVerify identity/source
AccountabilityTrace actions to subjects
NonrepudiationPrevent denial of performed action
PrivacyProper handling of personal data
SafetyPrevent harm to people and physical systems

Architecture Pattern Recognition

PatternUse when…
Defense in depthNo single control is sufficient
Least privilegeAccess should be minimized
SegmentationBlast radius must be reduced
Zero trustNetwork location cannot be trusted
Secure by defaultBaseline should reduce misconfiguration
Fail secureFailure should not expose assets
ResilienceSystems must continue or recover
Separation of dutiesReduce fraud or abuse risk
Dual controlTwo parties required for sensitive action
AutomationManual process causes drift or inconsistency

Practice Strategy for CAS-005

Use this Quick Review before IT Mastery practice, then let the questions expose weak areas.

  1. Run topic drills on one domain area at a time, such as IAM, cloud security, GRC, incident response, or application security.
  2. Review detailed explanations for both correct and incorrect answers.
  3. Write down decision rules you missed, not just definitions.
  4. Retake mixed sets to practice switching contexts quickly.
  5. Use mock exams only after you have strengthened weak topics.
  6. Review missed questions by root cause:
    • Did you misread the scenario?
    • Did you confuse two technologies?
    • Did you ignore a business constraint?
    • Did you pick a tool instead of a process?
    • Did you choose a control that was too narrow?

What to Look for in Original Practice Questions

Strong original practice questions for CompTIA SecurityX (CAS-005) should include:

  • Scenario-based architecture decisions.
  • Cloud and hybrid enterprise constraints.
  • Identity and privilege tradeoffs.
  • Security operations workflows.
  • Risk and compliance reasoning.
  • Detailed explanations that teach why distractors are wrong.
  • Topic drills for repeated weak areas.
  • Mock exams that mix concepts under time pressure.

Final Rapid Review Checklist

Before starting your next practice set, confirm you can explain:

  • The difference between authentication, authorization, and accounting.
  • When to choose RBAC, ABAC, conditional access, PAM, JIT, or JEA.
  • Why zero trust is an architecture, not a single product.
  • How cloud shared responsibility changes by service model.
  • How to prioritize vulnerabilities using exposure, exploitability, and business impact.
  • How RTO and RPO affect DR design.
  • Why immutable backups matter for ransomware resilience.
  • When to use SAST, DAST, SCA, fuzzing, and threat modeling.
  • How to protect APIs with scopes, token validation, authorization, and rate limits.
  • Why encryption depends on key management.
  • How to preserve evidence during incident response.
  • How governance artifacts differ: policy, standard, procedure, guideline, baseline.
  • How to match security metrics to the audience.

Practical Next Step

Use this Quick Review to identify two or three weak areas, then move into IT Mastery practice with topic drills, original practice questions, and detailed explanations. Focus less on memorizing isolated terms and more on consistently choosing the best risk-based security decision for each CompTIA SecurityX (CAS-005) scenario.

Continue in IT Mastery

Use this Quick Review as a final concept map, then move into IT Mastery for focused topic drills, mixed practice sets, timed mock exams, and detailed explanations. The practice questions are original IT Mastery practice items; they are not official CompTIA questions, copied live-exam content, or exam dumps.

Browse Certification Practice Tests by Exam Family