This is the foundation domain of Security+ (SY0-701). It covers security controls, the CIA triad, AAA, cryptographic basics, and change management. It is roughly 12% of the exam, but the ideas underpin every other domain, so learn it properly.
Controls are described two ways: category (how it works) and type (what it does).
'Never trust, always verify.' Every request is authenticated and authorised regardless of network location. Two planes: the control plane (policy engine, policy administrator) decides; the data plane (policy enforcement point) enforces. No implicit trust just because a device is inside the corporate network.
Changes to systems must go through a formal process: request, impact analysis, approval (Change Advisory Board), testing, implementation, and a documented backout plan. Common mistake: skipping the backout plan — always have a way to reverse a change that goes wrong.
This domain covers threat actors, attack types, vulnerabilities and how to reduce risk. It is one of the heaviest-weighted areas in Security+ SY0-701, so know it cold.
Security architecture is about designing IT environments so that security is built in, not bolted on. Security+ tests your grasp of models, network design patterns, and infrastructure concepts that reduce risk by design.
Zero Trust assumes no user or device is trusted by default, inside or outside the network perimeter - 'never trust, always verify'. Two core planes: the control plane (policy engine, policy administrator - decides who gets access) and the data plane (policy enforcement point - actually blocks or allows traffic). Verification happens continuously, not just at login. Common mistake: candidates think Zero Trust means 'no VPN' - it actually means every request is authenticated and authorised regardless of location.
Students confuse 'DMZ' terminology with modern exam wording ('screened subnet') - know both. They also forget that Zero Trust is a strategy applied across the whole architecture, not a single product, and that segmentation (VLANs, screened subnets) is a foundational control referenced across many other domains, including incident containment.
This domain is the day-to-day running of a secure environment: hardening systems, managing identity, monitoring, and keeping assets under control. It is the biggest single domain on the exam, so know it cold.
Identity & Access Management (IAM) is about proving who someone is (authentication) and then controlling what they can do (authorisation). Security+ tests both the theory and the specific technologies.
There are three classic factors: something you know (password, PIN), something you have (smart card, token, phone), and something you are (biometrics - fingerprint, iris, face). A fourth, less tested factor is somewhere you are (geolocation). Multifactor authentication (MFA) means combining factors from at least two different categories - two passwords is NOT MFA, it is just two knowledge factors.
Symmetric crypto uses one shared key for encryption and decryption - fast, used for bulk data. AES is the standard, typically AES-256 in GCM mode for authenticated encryption. Key exchange is the weakness - both parties need the same secret safely.
Asymmetric (public key) crypto uses a key pair - public key encrypts or verifies, private key decrypts or signs. RSA (2048-bit minimum, 3072+ recommended) and ECC (256-bit, e.g. secp256r1) are the main algorithms. ECC gives equivalent strength to RSA with much smaller keys, so it suits mobile and IoT.
Hashing is one-way - turns data into a fixed-length digest, cannot be reversed. Used for integrity checks and password storage. SHA-256 and SHA-3 are current standards. Never use MD5 or SHA-1 for security purposes - both are broken for collision resistance. Passwords must be salted and hashed with a slow algorithm like bcrypt, scrypt, or Argon2, never a fast general hash alone.
A Certificate Authority (CA) issues digital certificates binding a public key to an identity, following X.509 format. The chain of trust runs Root CA to Intermediate CA to end-entity certificate. Root CAs are kept offline for security. A Certificate Signing Request (CSR) is submitted to get a cert issued.
CRL (Certificate Revocation List) is a downloadable list of revoked certs - slow and can be large. OCSP (Online Certificate Status Protocol) checks a single cert's status in real time - faster. OCSP stapling lets the server provide a signed, timestamped OCSP response itself, improving speed and privacy.
Diffie-Hellman (and ECDHE for forward secrecy) lets two parties agree a shared symmetric key over an insecure channel without sending the key itself. TLS uses this hybrid model: asymmetric crypto for the handshake/key exchange, symmetric crypto (AES) for the actual session data - asymmetric is too slow for bulk encryption.
Signing uses the sender's private key on a hash of the message; anyone verifies with the sender's public key. This proves authenticity, integrity, and non-repudiation.