Tyscorpa Study resources Open the Academy

Acronyms - General Security Concepts

Every acronym this domain uses, grouped by theme, with a note on the ones where the expansion does not tell you what the thing does.

SY0-701 Obj. 1.1 - 1.4 General Security Concepts 12% of the exam

Expanding the letters is the easy half. The column on the right is filled only where the expansion leaves you no wiser, or where a neighbouring acronym is routinely confused with this one.

Fundamentals and access

AcronymExpands toWhat it isWorth knowing
CIAConfidentiality, Integrity, AvailabilityThe three properties security exists to protectThe priority order is not fixed. Industrial and medical systems put availability and safety first, because a control that stops a physical process can be more dangerous than a disclosure.
AAAAuthentication, Authorization, AccountingThe three steps of every access decisionA sequence, not a list. Authentication asks who, authorisation asks what they may do per action, and accounting records what was done. Accounting is the one organisations under-implement and the one an investigation depends on.
MFAMulti-Factor AuthenticationEvidence from two different categoriesA factor is a category, not an instance. Two passwords are one factor twice. The categories are something you know, something you have, something you are.
2FATwo-Factor AuthenticationMFA with exactly two factors
OTPOne-Time PasswordA code valid for one authenticationStill phishable. A replica page can ask for the code and relay it inside its validity window, which is why hardware keys bound to the origin are stronger.
TOTPTime-based One-Time PasswordAn OTP derived from a shared secret and the clockWhy an authenticator app works offline, and why clock drift breaks it.
HOTPHMAC-based One-Time PasswordAn OTP derived from a shared secret and a counter
SSOSingle Sign-OnOne authentication granting access to many services
ZT / ZTAZero Trust / Zero Trust ArchitectureTrust nothing by location; verify every request
PEPPolicy Enforcement PointThe component in the traffic path that allows or blocksThe only one of the zero trust components traffic actually passes through. It holds no policy and makes no decisions.
PDPPolicy Decision PointThe policy engine and administrator togetherDecides but does not touch traffic. Compromising it means controlling access decisions everywhere, which is why it is protected as the most sensitive component.
PAPolicy AdministratorEstablishes and tears down the session once a verdict exists
PINPersonal Identification NumberA short secret, almost always paired with something you holdKnowledge, not possession. A PIN on its own is single-factor however short the number is.
SMSShort Message ServiceA one-time code delivered by text messageThe weakest common second factor. Swapping the SIM moves the number to the attacker, and the code arrives at their handset instead.
CCTVClosed-Circuit TelevisionCamera surveillance of a spaceDetective when reviewed after the fact and deterrent when visible. It prevents nothing on its own, which is why it is paired with a physical barrier.

Change management

AcronymExpands toWhat it isWorth knowing
CAB / CCBChange Advisory Board / Change Control BoardThe body that approves normal changesStandard changes are pre-approved and skip it; emergency changes bypass the approval and not the documentation.
SOPStandard Operating ProcedureHow a recurring task is performedWhat makes pre-approval defensible. A change can only be pre-approved if its risk is known, and its risk is only known if it is done the same way every time.
AUPAcceptable Use PolicyWhat staff may and may not do with company systemsManagerial and directive. The acknowledgement is what makes it enforceable, not the publication.

Cryptography

AcronymExpands toWhat it isWorth knowing
AESAdvanced Encryption StandardThe symmetric block cipher standardThe mode matters as much as the key. ECB encrypts identical blocks identically and leaks structure; GCM adds authentication so tampering is detected.
DES / 3DESData Encryption StandardThe symmetric cipher AES replacedRetired. A 56-bit key is brute-forceable, and 3DES is deprecated rather than safe.
RSARivest, Shamir, AdlemanAsymmetric algorithm based on factoringOne of the few acronyms that is a list of surnames. 2048 bits is the current minimum.
ECCElliptic Curve CryptographyAsymmetric algorithms based on curvesEquivalent security at roughly a tenth the key length. A 256-bit curve key is comparable to 3072-bit RSA.
ECDSAElliptic Curve Digital Signature AlgorithmSigning with a curve key
ECDH / ECDHEElliptic Curve Diffie-Hellman (Ephemeral)Key exchange with a fresh key per sessionThe ephemeral part is what gives forward secrecy: a compromise of the long-term key does not expose sessions recorded earlier.
SHASecure Hash AlgorithmA family of cryptographic hash functionsSHA-1 is broken for collisions and retired for signatures. SHA-2 members are named for their output length; SHA-256 is the workhorse.
MD5Message Digest 5A 128-bit hashBroken for any security purpose. Collisions can be produced deliberately and cheaply.
HMACHash-based Message Authentication CodeA hash keyed with a shared secretGives integrity and authentication and not non-repudiation: both parties hold the same key, so neither can prove which of them produced it. That is the boundary between a MAC and a digital signature.
PBKDF2Password-Based Key Derivation Function 2A deliberately slow password hashStretching defeats brute force; salting defeats precomputation. Both are needed and neither substitutes.
TLS / SSLTransport Layer Security / Secure Sockets LayerEncryption for a connectionSSL is the retired predecessor and the name persists in conversation. TLS 1.2 and 1.3 are current.
TPMTrusted Platform ModuleA chip on the motherboard holding keysWhat releases the disk encryption key only to a machine that boots unchanged.
HSMHardware Security ModuleA tamper-responsive appliance holding keysA TPM protects one machine; an HSM serves many and is certified to a standard such as FIPS 140.
KMSKey Management ServiceA managed service that creates, rotates and audits keys
ECBElectronic CodebookThe block cipher mode that encrypts each block independentlyIdentical plaintext blocks produce identical ciphertext, so structure survives encryption. The reason it is the wrong answer whenever a mode is being chosen.
CBCCipher Block ChainingEach block is combined with the previous one before encryptionHides the structure ECB leaks, and gives confidentiality only - nothing in it detects tampering.
GCMGalois/Counter ModeEncryption and an authentication tag in one operationAuthenticated encryption. Modified ciphertext fails the tag check rather than decrypting to plausible rubbish, which is why AES-GCM is what modern TLS negotiates.
PFSPerfect Forward SecrecyA session key that cannot be recovered from the long-term private keyWhat ephemeral key exchange buys. Traffic captured today stays unreadable even if the server key is stolen later.
DHDiffie-HellmanAgreeing on a shared secret over a channel anyone can readKey exchange, not encryption and not signing. On its own it authenticates nobody, which is what makes an unauthenticated exchange interceptable.
DSADigital Signature AlgorithmSigning only, with no encryption capabilityThe contrast with RSA, which can do both.
PGPPretty Good PrivacyEnd-to-end encryption and signing, most often for mail and filesTrust comes from a web of trust rather than a certificate authority, which is the structural difference from PKI.
FDEFull Disk EncryptionThe whole volume encrypted at restProtects a device that is lost or stolen. Once the machine is booted and unlocked, it protects nothing from anybody using it.
FIPSFederal Information Processing StandardUS standards for cryptographic modules and algorithmsFIPS 140 validation certifies the implementation, not just the algorithm. Correct maths in a flawed module still fails.
CTRCounter ModeA block cipher run as a stream cipherEncrypts without padding, which removes a whole class of padding oracle attacks. GCM is this mode with authentication added.
RC4Rivest Cipher 4The stream cipher behind WEP and older TLSBroken and removed everywhere. Seeing it named in an answer is usually the signal that the answer is the obsolete one.

Public key infrastructure

AcronymExpands toWhat it isWorth knowing
PKIPublic Key InfrastructureEverything built to answer whose public key this isPublic key cryptography works without it. What it cannot do alone is tell you whose key you hold, which is the entire problem PKI exists for.
CACertificate AuthorityValidates identities and signs certificatesA compromised or careless CA can issue a valid certificate for any name, which has happened. Certificate transparency logs exist because of it.
RARegistration AuthorityPerforms the identity checking on behalf of a CA
CSRCertificate Signing RequestThe application for a certificate, carrying the public keyThe private key never leaves the requester, which is the point.
CRLCertificate Revocation ListA published list of certificates no longer trusted
OCSPOnline Certificate Status ProtocolChecking one certificate rather than downloading a listThe weak point of PKI in practice: clients frequently fail open when the responder is unreachable, so revocation quietly does not happen.
PreviousChange Management

Test yourself on this

Reading is the easy half. The Academy has 1,360 exam-style questions, including performance-based ones, and it keeps pulling from whichever domain you keep getting wrong. Free to create an account.

Open the Academy