Security+ SY0-701 Acronyms, Grouped by What They Actually Do

By Moussa BENALI, Senior Network & Security Engineer · SY0-701 · Free, no signup

CompTIA publishes 322 acronyms in Appendix A of the SY0-701 objectives. Almost every list online reproduces them alphabetically, expansion only, which is close to useless: you are never asked what SAML stands for. You are asked which technology federates identity between two organisations, and the answer happens to be spelled SAML.

So this list is grouped by job, with a line on what each one actually does and, where it matters, what it gets confused with. If you know the function, the expansion comes free. The reverse almost never works.

💡
How to use this. Do not read it start to finish. Find the group covering whatever you are studying this week, and check you can say what each entry does without reading the third column. The ones you cannot are your revision list. For the complete 322, CompTIA's own objectives PDF is the authoritative source and it is free.
Your free Security+ exam code

Knowing the acronym is not the same as answering the question

The exam gives you scenarios, not definitions. A full-length SY0-701 practice exam shows you whether the recognition actually converts under pressure - with an explanation on every item and a coach that names your weak domains. The code applies itself when you create the account.

SECPLUS-EXAM-FULL Redeem the code

Free, no credit card. Already have an account? Log in to start

The confusable pairs - learn these first

If you only drill one section, make it this one. These are the distinctions the exam builds whole questions around.

PairThe distinction
SIEM vs SOARSIEM collects and correlates logs so a human can see. SOAR acts on the alerts automatically via playbooks. SIEM tells you; SOAR does something.
IDS vs IPSDetection alerts and sits out of band. Prevention sits inline and can drop. If the question says "block", it is IPS.
DAC vs MACDiscretionary: the owner decides who gets access. Mandatory: the system decides from labels and clearances, and the owner cannot override.
RTO vs RPORTO is time - how fast must it be back. RPO is data - how much loss is acceptable. RPO drives backup frequency.
MTBF vs MTTRBetween failures (reliability) vs to repair (recoverability). MTBF is a prediction; MTTR is a response commitment.
TOTP vs HOTPTime-based codes expire on a clock. HMAC-based codes advance on a counter and stay valid until used.
OAuth vs OIDCOAuth is authorisation - delegated access to a resource. OIDC adds authentication on top of OAuth 2.0. Treating OAuth as a login protocol is the classic error.
SAML vs OIDCBoth federate identity. SAML is XML and enterprise-typical; OIDC is JSON/REST and dominates modern consumer and mobile flows.
CSR vs certificate vs CRLRequest → issued credential → revocation list. Three stages of one lifecycle, routinely mixed up.
Hashing vs encryptionHashing is one-way and proves integrity. Encryption is reversible and provides confidentiality. A hash is not "encrypted".

Cryptography and PKI

AcronymExpansionWhat it does
AESAdvanced Encryption StandardThe symmetric block cipher you should assume by default. 128/192/256-bit keys.
DES / 3DES(Triple) Data Encryption StandardLegacy symmetric ciphers. Both deprecated - if they appear as an option, that is usually the wrong answer.
RSARivest-Shamir-AdlemanAsymmetric algorithm for key exchange and digital signatures. Slow, so used to protect symmetric keys rather than bulk data.
ECC / ECDSA / ECDHEElliptic Curve Cryptography / …DSA / Ephemeral Diffie-HellmanSame security as RSA at much smaller key sizes - hence mobile and IoT. ECDHE additionally gives perfect forward secrecy.
DH / DHEDiffie-Hellman (Ephemeral)Key agreement, not encryption. The ephemeral variant is what delivers PFS.
PFSPerfect Forward SecrecyCompromising the long-term key does not decrypt past sessions, because session keys were ephemeral.
SHASecure Hash AlgorithmIntegrity. SHA-256 and above are current; SHA-1 is broken for collision resistance.
MD5Message Digest 5Broken hash. Still appears for non-security checksums; never a valid answer for integrity assurance.
HMACHash-based Message Authentication CodeA hash plus a shared secret - proves integrity and authenticity, which a bare hash cannot.
PKIPublic Key InfrastructureThe whole trust system: CAs, certificates, revocation, policy.
CA / RACertificate / Registration AuthorityThe CA issues and signs. The RA verifies identity before the CA issues.
CSRCertificate Signing RequestWhat you send a CA - contains the public key and identity, never the private key.
CRL / OCSPCertificate Revocation List / Online Certificate Status ProtocolTwo ways to check revocation. CRL is a downloaded list; OCSP queries live. OCSP stapling has the server present the proof.
SANSubject Alternative NameAdditional names a certificate is valid for. (Also Storage Area Network - context decides.)
PEM / DER / PFX / P12Certificate encodingsContainer formats. PEM is Base64 text; DER is binary; PFX/P12 can bundle the private key.
KEK / DEKKey Encryption Key / Data Encryption KeyThe DEK encrypts data; the KEK encrypts the DEK. Rotating the KEK avoids re-encrypting everything.
HSMHardware Security ModuleTamper-resistant hardware that generates and stores keys so they never exist in software.
TPMTrusted Platform ModuleOn-board chip storing keys for that machine - underpins full-disk encryption and secure boot.
FDE / SEDFull Disk Encryption / Self-Encrypting DriveEncryption at rest in software vs built into the drive controller.

Identity, authentication and access control

AcronymExpansionWhat it does
AAAAuthentication, Authorization, AccountingWho are you, what may you do, what did you do. The frame the whole domain hangs on.
MFA / 2FAMulti-/Two-Factor AuthenticationTwo or more different factor types. Two passwords is not MFA.
SSOSingle Sign-OnAuthenticate once, access many services. Convenience with a concentrated risk.
SAMLSecurity Assertion Markup LanguageXML-based federation - the enterprise SSO standard for web apps.
OIDCOpenID ConnectAuthentication layer on top of OAuth 2.0. The modern "sign in with…" flow.
LDAP / LDAPSLightweight Directory Access Protocol (Secure)Directory queries. 389 plaintext, 636 over TLS.
RADIUSRemote Authentication Dial-In User ServiceAAA over UDP; encrypts only the password. Cross-vendor, common for wireless and VPN.
TACACS+Terminal Access Controller Access-Control System PlusCisco's AAA over TCP; encrypts the whole payload and separates authorisation from authentication.
Kerberos(not an acronym)Ticket-based authentication using a KDC. Time-sensitive - clock skew breaks it, a favourite exam detail.
KDC / TGTKey Distribution Center / Ticket Granting TicketThe Kerberos authority, and the ticket that gets you further tickets.
RBACRole-Based Access ControlPermissions attach to roles, users get roles. Scales where per-user permissions do not.
ABACAttribute-Based Access ControlDecisions from attributes - department, device, location, time. The most granular model.
DAC / MACDiscretionary / Mandatory Access ControlOwner decides vs system decides from labels. MAC is the government/military model.
PAMPrivileged Access ManagementControls and records the use of admin accounts - checkout, session recording, rotation.
IdP / SPIdentity Provider / Service ProviderWho vouches for you, and who relies on that vouching. The two halves of federation.
TOTP / HOTPTime- / HMAC-based One-Time PasswordClock-driven vs counter-driven codes.
CHAP / PAP / EAPChallenge-Handshake / Password / Extensible Authentication ProtocolPAP sends plaintext (never the answer). CHAP challenges. EAP is a framework with many methods.
PEAP / EAP-TLSProtected EAP / EAP-Transport Layer SecurityPEAP wraps EAP in TLS with a server certificate. EAP-TLS needs certificates on both sides - the strongest and the most work.
JITJust-in-Time (access)Privileges granted only for the window they are needed, then removed.

Network security and infrastructure

AcronymExpansionWhat it does
NGFWNext-Generation FirewallApplication-aware filtering, not just ports - plus identity and inspection.
WAFWeb Application FirewallFilters HTTP specifically - the control for SQL injection and XSS.
UTMUnified Threat ManagementFirewall, IPS, AV, filtering in one box. Convenient, and a single point of failure.
IDS / IPS / NIDS / HIDSIntrusion Detection / Prevention (Network / Host)Detect vs block; on the wire vs on the endpoint.
NACNetwork Access ControlChecks posture before admitting a device. Pairs with 802.1X.
802.1XPort-based Network Access ControlAuthenticate before the port forwards traffic. Supplicant, authenticator, authentication server.
VLANVirtual LANLogical segmentation. Limits broadcast domains and lateral movement.
DMZDemilitarized Zone (screened subnet)Where public-facing services live so a compromise does not land inside.
VPN / IPSecVirtual Private Network / IP SecurityEncrypted tunnel. IPsec has AH (integrity only) and ESP (encryption) - ESP is what you want.
IKEInternet Key ExchangeNegotiates the IPsec security association. UDP 500.
SASE / ZTNASecure Access Service Edge / Zero Trust Network AccessCloud-delivered security at the edge; per-application access with no implicit trust from being "inside".
DLPData Loss PreventionDetects and blocks sensitive data leaving - email, USB, upload.
CASBCloud Access Security BrokerPolicy enforcement point between users and cloud services. Finds shadow IT.
SDNSoftware-Defined NetworkingControl plane separated from data plane and centrally programmed.
DNSSECDNS Security ExtensionsSigns DNS records - authenticity, not confidentiality. Does not encrypt the query.
DoH / DoTDNS over HTTPS / over TLSThese do the confidentiality part DNSSEC does not.
SPF / DKIM / DMARCSender Policy Framework / DomainKeys Identified Mail / Domain-based Message AuthenticationThe email anti-spoofing trio: who may send, signed proof, and what to do on failure. Expect a question on all three.

Attacks and threats

AcronymExpansionWhat it does
DoS / DDoS(Distributed) Denial of ServiceExhausts a resource. Distributed means many sources, usually a botnet.
MITM / on-pathMan-in-the-MiddleAttacker relays and can alter traffic. CompTIA now prefers "on-path".
XSSCross-Site ScriptingInjects script into a page other users load. Stored, reflected, DOM-based.
CSRF / XSRFCross-Site Request ForgeryRides an authenticated session to make the browser act. Anti-CSRF tokens are the control.
SQLiSQL InjectionDatabase syntax in user input. Parameterised queries are the fix - not input validation alone.
RCERemote Code ExecutionAttacker runs code on the target. Usually the most severe outcome available.
APTAdvanced Persistent ThreatWell-resourced actor prioritising long-term stealthy access, typically nation-state.
C2 / C&CCommand and ControlThe channel compromised hosts call home on. Beaconing regularity is the detection.
IoCIndicator of CompromiseEvidence of a breach - a hash, a domain, a registry key.
TTPTactics, Techniques and ProceduresHow an actor operates. Harder to change than an IoC, so better for attribution.
PUPPotentially Unwanted ProgramNot quite malware - adware, bundled toolbars.
RATRemote Access TrojanMalware giving interactive remote control.
ARP poisoningAddress Resolution ProtocolForged ARP replies redirect traffic. Enables on-path attacks on a LAN. DAI is the control.
OSINTOpen-Source IntelligenceReconnaissance from public sources - the first phase of most engagements.

Operations, monitoring and response

AcronymExpansionWhat it does
SIEMSecurity Information and Event ManagementAggregates and correlates logs; alerts humans.
SOARSecurity Orchestration, Automation and ResponseRuns automated playbooks on those alerts.
SOCSecurity Operations CenterThe team and function doing the monitoring.
EDR / XDR / MDREndpoint / Extended / Managed Detection and ResponseEndpoint telemetry with response; extended across more sources; managed by a third party.
UEBAUser and Entity Behavior AnalyticsBaselines normal behaviour and flags deviation - catches valid-credential misuse.
IRIncident ResponsePreparation → identification → containment → eradication → recovery → lessons learned. Know the order.
CVE / CVSSCommon Vulnerabilities and Exposures / Scoring SystemThe identifier, and the 0-10 severity score attached to it.
SCAPSecurity Content Automation ProtocolStandard formats so scanners and configuration tools interoperate.
MTTD / MTTRMean Time to Detect / Respond (or Repair)The two headline SOC metrics.
SLA / MOU / MSA / BPA / NDAService Level Agreement / Memorandum of Understanding / Master Service Agreement / Business Partners Agreement / Non-Disclosure AgreementThe third-party agreement family. Only the SLA carries enforceable performance commitments; an MOU generally does not.
RA / SOWRisk Assessment / Statement of WorkWhat could go wrong, and precisely what a vendor will deliver.

Governance, risk and continuity

AcronymExpansionWhat it does
GRCGovernance, Risk and ComplianceThe umbrella for policy, risk management and regulation.
BIABusiness Impact AnalysisIdentifies critical processes and what an outage costs. Produces RTO and RPO - it comes first.
RTO / RPORecovery Time / Point ObjectiveHow fast back vs how much data loss is tolerable.
MTBF / MTTFMean Time Between / To FailureRepairable systems vs things replaced on failure.
BCP / DRPBusiness Continuity / Disaster Recovery PlanKeep the business running vs restore the technology. BCP is broader and contains DRP.
SLE / ALE / AROSingle Loss Expectancy / Annualized Loss Expectancy / Annualized Rate of OccurrenceQuantitative risk: SLE = AV × EF, ALE = SLE × ARO. Worked examples here.
AV / EFAsset Value / Exposure FactorWhat it is worth, and the proportion lost in one event.
PII / PHI / SPIPersonally Identifiable / Protected Health / Sensitive Personal InformationData categories driving regulatory obligations.
GDPR / HIPAA / PCI DSS / SOXRegulations and standardsEU privacy, US healthcare, payment cards, financial reporting. Know which applies to which data.
NIST / ISO / CISStandards bodies and benchmarksNIST CSF and 800-series, ISO 27001, CIS Controls and Benchmarks.
RPO vs MTDMaximum Tolerable DowntimeMTD is the absolute ceiling; RTO must be shorter than it.

Cloud, virtualization and applications

AcronymExpansionWhat it does
IaaS / PaaS / SaaSInfrastructure / Platform / Software as a ServiceThe service models - and the shared responsibility boundary moves with each.
IaCInfrastructure as CodeProvisioning from version-controlled definitions. Repeatable, reviewable, and a new place for secrets to leak.
CI/CDContinuous Integration / Continuous DeploymentAutomated build and release pipeline - and a high-value supply-chain target.
SDLCSoftware Development Life CycleRequirements → design → build → test → deploy → maintain, with security at each stage.
SAST / DASTStatic / Dynamic Application Security TestingAnalyse source without running it vs test the running application. Static finds it earlier; dynamic finds runtime issues.
SBOMSoftware Bill of MaterialsInventory of components in a build - how you answer "are we affected?" after a library CVE.
APIApplication Programming InterfaceMachine interface. Needs authentication, rate limiting and input validation like any other entry point.
VDIVirtual Desktop InfrastructureDesktops hosted centrally; data never lands on the endpoint.
VM escapeVirtual MachineBreaking out of a guest to the hypervisor - the worst-case virtualization failure.
MDM / COPE / BYOD / CYODMobile Device Management / Corporate-Owned Personally Enabled / Bring or Choose Your Own DeviceHow mobile devices are owned and controlled. BYOD is cheapest and hardest to secure.
SCADA / ICS / OTSupervisory Control and Data Acquisition / Industrial Control Systems / Operational TechnologyIndustrial systems, where availability and safety outrank confidentiality - which inverts the usual advice.
Your free Security+ exam code

Test the recognition, not the recall

The exam gives you a scenario and four plausible acronyms. A full-length SY0-701 practice exam tells you which groups above you actually know and which you only recognise - one-time purchase, lifetime access, and the first exam is free.

SECPLUS-EXAM-FULL Redeem the code

Free, no credit card. Already have an account? Log in to start

Frequently asked questions

How many acronyms are on the Security+ SY0-701 exam?

CompTIA lists 322 in Appendix A of the official objectives. You will not be asked to expand all of them - the exam tests what the technology does, with the acronym simply being how it is named. Around eighty carry most of the weight, and they are the ones grouped above.

Do I need to memorise every acronym?

No, and it is a poor use of study time. Nobody is asked what SAML stands for; they are asked which technology federates identity between organisations. Learn the function and the expansion follows.

What is the difference between SIEM and SOAR?

SIEM collects and correlates logs so a human can see what happened. SOAR takes those alerts and runs an automated playbook - isolate the host, disable the account, open the ticket. SIEM tells you; SOAR acts.

What is the difference between SAML, OAuth and OIDC?

SAML is XML-based federation, typical for enterprise SSO. OAuth is authorisation - delegated access to a resource, not a login mechanism. OIDC sits on OAuth 2.0 and adds authentication. Treating OAuth as a login protocol is the standard trap.

Where can I get the official full list?

CompTIA publishes all 322 in Appendix A of the SY0-701 exam objectives, free from their website. Use it as the checklist and this page as the explanation - a bare list of expansions will not, on its own, answer a scenario question.