Tyscorpa Study resources Open the Academy

Acronyms - Security Architecture

Cloud models, network appliances, wireless and resilience, with the distinctions between the boxes whose names describe the same thing from different angles.

SY0-701 Obj. 3.1 - 3.4 Security Architecture 18% of the exam

This domain carries more acronyms than any other, and most of them name a box or a service. The fourth column is used mainly to separate the ones that sound interchangeable and are not.

Cloud and compute models

AcronymExpands toWhat it isWorth knowing
IaaSInfrastructure as a ServiceVirtual machines, storage and networking you manageThe customer patches the guest operating system. This is the most consequential line in the shared responsibility model and the one most often assumed away.
PaaSPlatform as a ServiceThe provider runs the OS and runtime; you deploy code
SaaSSoftware as a ServiceThe provider runs everything; you configure it and own the dataThe data is yours in every model. No provider ever takes on classifying it or deciding who may see it.
FaaSFunction as a ServiceServerless - code runs on demand with no instance to manageServerless does not mean no servers. It means none you manage, and the risk moves to the permissions each function holds.
IaCInfrastructure as CodeInfrastructure defined in files rather than built by handA mistake in the definition is applied everywhere at once, and a secret committed to the repository is the commonest serious finding.
VDIVirtual Desktop InfrastructureDesktops hosted centrally and streamed to thin clients
SDNSoftware-Defined NetworkingThe control plane separated from the data planePolicy is expressed once centrally rather than device by device, which also makes the controller a concentration of risk.

Network structure

AcronymExpands toWhat it isWorth knowing
VLANVirtual Local Area NetworkLogical segments on shared physical infrastructureSeparates broadcast domains and is not access control. Routed with a permissive rule set, hosts reach each other as freely as before with one extra hop.
DMZDemilitarized ZoneA segment for the systems the internet must reachAlso called a screened subnet. The inner policy is the whole design: a compromised web server should yield a segment of other exposed systems and a very short list of paths inward.
NATNetwork Address TranslationRewriting addresses at the boundaryBuilt to solve address exhaustion. Its security effect is a side effect, and it is not a firewall: it applies no policy and inspects nothing.
CDNContent Delivery NetworkDistributed caching close to usersAbsorbs volumetric denial of service upstream, which is why it appears as a mitigation and not only as a performance measure.
LAN / WANLocal / Wide Area NetworkOne site, and the links between sites
SANStorage Area NetworkBlock storage presented over a dedicated networkAlso the abbreviation for a Subject Alternative Name in a certificate. Unrelated, and both appear in this syllabus.
NASNetwork Attached StorageFile storage shared over the ordinary network
SPANSwitched Port AnalyzerA switch port that receives a copy of other ports' trafficHow an IDS is fed. A copy arrives after the fact, which is exactly why a device on a SPAN port cannot block anything.
CAMContent Addressable MemoryThe table mapping MAC addresses to switch portsFlooding it past capacity makes the switch broadcast to every port, turning a switched network back into a hub for the attacker.
DAIDynamic ARP InspectionDropping ARP replies that contradict the DHCP bindingsThe switch-level answer to ARP poisoning.
DTPDynamic Trunking ProtocolAutomatic negotiation of a trunk linkLeft enabled on an access port, a host can negotiate a trunk and reach every VLAN. Disabling it is the standard hardening step.
SWGSecure Web GatewayOutbound web filtering and inspection

Protocols, and the ports they answer on

Port numbers are asked about directly, and the pattern worth holding is the pairing: nearly every one of these has a clear-text original and a protected replacement.

AcronymExpands toWhat it isWorth knowing
TCP / UDPTransmission Control Protocol / User Datagram ProtocolConnected and connectionless transportUDP has no handshake, so the source address is trivially forged. That is what makes UDP services the ones used for reflection and amplification.
IPInternet ProtocolAddressing and routing between networks
ICMPInternet Control Message ProtocolReachability and error messages, including pingHas no ports. Blocking it wholesale breaks path MTU discovery and is a common cause of connections that hang rather than fail.
DNSDomain Name SystemNames resolved to addresses, on port 53Answers are not authenticated by default, which is what poisoning exploits. It is also the commonest covert channel out of a network, because it is almost never blocked.
DNSSECDomain Name System Security ExtensionsSigned DNS recordsProvides origin authentication and integrity, and not confidentiality - the answers remain in clear text. DoH and DoT are what encrypt them.
DHCPDynamic Host Configuration ProtocolAutomatic address assignment, on ports 67 and 68A rogue server wins by answering first, and hands out its own address as the gateway.
NTPNetwork Time ProtocolClock synchronisation, on port 123Correlation across logs and certificate validity both depend on it. A drifting clock quietly breaks the evidence.
HTTP / HTTPSHypertext Transfer Protocol (Secure)The web, on ports 80 and 443443 is where almost everything now hides, which is why port-based filtering has stopped telling you anything.
SSHSecure ShellEncrypted remote administration, on port 22Key-based authentication is the point. An orphaned authorised key is an account nobody reviews and nobody disables.
FTP / FTPS / SFTPFile Transfer Protocol, over TLS, over SSHPorts 20 and 21, then 990, then 22FTPS is FTP wrapped in TLS; SFTP is a different protocol carried by SSH. They share three letters and nothing else.
SCPSecure Copy ProtocolFile copy over SSH, on port 22
TFTPTrivial File Transfer ProtocolMinimal UDP file transfer, on port 69No authentication at all. Present on network gear for config and firmware, and worth finding before somebody else does.
SMTPSimple Mail Transfer ProtocolMail delivery, on port 25, submission on 587The envelope sender is asserted by whoever connects, which is the whole reason SPF, DKIM and DMARC exist.
IMAP / POP3Internet Message Access Protocol / Post Office Protocol 3Mail retrieval, on 143 and 110, or 993 and 995 over TLSLegacy mail protocols cannot carry a second factor, so leaving them enabled leaves a way past MFA.
SMBServer Message BlockWindows file and printer sharing, on port 445The path lateral movement uses most, and a port that should never be reachable from outside.
RDPRemote Desktop ProtocolWindows graphical remote access, on port 3389Exposed to the internet it is a standing invitation, and the way a great many ransomware incidents began.
VNCVirtual Network ComputingCross-platform graphical remote access, on port 5900
L2TPLayer 2 Tunneling ProtocolTunnelling with no encryption of its ownAlways paired with IPsec, because on its own it protects nothing.
BGPBorder Gateway ProtocolRouting between autonomous systems on the internetBuilt on trust between operators. A hijacked prefix redirects traffic for entire networks with nothing broken anywhere.
OSIOpen Systems InterconnectionThe seven-layer reference modelIts use here is to say what a control can see. A layer 3 rule cannot read a URL, and a layer 7 proxy can.
TTLTime To LiveA hop limit on a packet, and a cache lifetime on a DNS recordA very short record TTL is normal for failover and is also how fast-flux hosting keeps moving.

Appliances and inspection

AcronymExpands toWhat it isWorth knowing
IDS / NIDS(Network) Intrusion Detection SystemObserves a copy of the traffic and alertsCannot block. The packets it examined have already been delivered.
IPSIntrusion Prevention SystemSits inline and can drop trafficA false positive is an outage rather than a wasted alert, which is why blocking is usually enabled only for high-confidence signatures.
WAFWeb Application FirewallInspects the HTTP conversation itselfLayer 7. A traditional firewall sees HTTPS to port 443 and permits the injection along with it.
NGFWNext-Generation FirewallA firewall with deep packet inspection and application awarenessIdentifies the application regardless of port, which matters because everything now tunnels over 443.
UTMUnified Threat ManagementSeveral security functions in one applianceConvenient for a small site and a single point of failure for the same reason.
CASBCloud Access Security BrokerPolicy enforcement between users and cloud servicesWhere sanctioned and unsanctioned cloud use becomes visible, which is the first step against shadow IT.
NACNetwork Access ControlDeciding what a device may do when it connectsPosture checking happens here: patch level and agent presence decide the segment, not just the credential.
SASESecure Access Service EdgeNetwork and security functions delivered from the cloudThe answer when the users and the applications are both outside the office, and backhauling to an appliance no longer makes sense.
SD-WANSoftware-Defined Wide Area NetworkPolicy-driven routing across several links
ZTNAZero Trust Network AccessAccess to one application rather than to a networkReplaces the VPN model. The application is never exposed, so there is no listening service to find and no lateral movement from a foothold.
SDPSoftware-Defined PerimeterThe same architecture as ZTNA under another nameRecognising them as the same thing is more useful than separating them.

Tunnels and transport

AcronymExpands toWhat it isWorth knowing
VPNVirtual Private NetworkA protected connection over shared infrastructureProtects traffic in transit and says nothing about the security of either endpoint. Split tunnelling is the configuration decision the exam returns to.
IPsecInternet Protocol SecurityProtection applied at layer 3Covers everything above it without applications knowing, which is why it suits site-to-site links.
AHAuthentication HeaderIPsec integrity and authentication, with no encryptionLargely historical, partly because it breaks with address translation.
ESPEncapsulating Security PayloadIPsec with encryptionWhat is actually deployed.
IKEInternet Key ExchangeNegotiates the IPsec keys and parameters
SNIServer Name IndicationThe hostname sent in clear text so one address can serve many sitesEncrypted traffic still says where it is going. Useful for filtering without decryption, and a privacy leak for the same reason.

Wireless

AcronymExpands toWhat it isWorth knowing
SSIDService Set IdentifierThe name of a wireless networkNot a security control. Disabling the broadcast hides nothing, because the name travels in the frames clients send anyway.
WAP / AP(Wireless) Access PointThe radio clients associate withOne SSID is usually served by many of them, so the rogue is identified by its BSSID rather than by the network name.
WPA2 / WPA3Wi-Fi Protected Access 2 / 3The current wireless security standardsWPA2 uses AES-CCMP, not RC4 - RC4 belongs to WEP and to the original WPA. WPA3 replaces the handshake rather than the cipher.
SAESimultaneous Authentication of EqualsThe WPA3 handshakeResists the offline attack that made a captured WPA2 handshake worth having.
EAPExtensible Authentication ProtocolThe framework enterprise wireless authenticates through
RADIUSRemote Authentication Dial-In User ServiceThe AAA server enterprise wireless authenticates againstWhat gives each user their own identity, so access can be granted, logged and withdrawn one person at a time.
TACACS+Terminal Access Controller Access-Control System PlusAAA for administrative access to network devicesSeparates the three A functions more completely than RADIUS does, and can authorise individual commands.
WEPWired Equivalent PrivacyThe original wireless encryption, broken beyond repairThe flaw is in how it uses RC4's initialisation vector, so the key falls out of enough captured traffic. Finding it in use is a finding on its own.
WPAWi-Fi Protected AccessThe stopgap between WEP and WPA2Kept RC4 and added TKIP, so it ran on WEP-era hardware. Also obsolete.
TKIPTemporal Key Integrity ProtocolPer-packet keying bolted onto WEP-era hardware
CCMPCounter Mode with CBC-MAC ProtocolThe AES-based protocol WPA2 actually encrypts withWhat people mean when they say WPA2 uses AES.
OWEOpportunistic Wireless EncryptionEncryption on an open network with no passwordSolves the guest and coffee-shop case, where the alternative is every association in clear text.
PMFProtected Management FramesAuthentication of management framesStops the deauthentication attack, which works because those frames were never authenticated. Mandatory in WPA3.
PEAPProtected Extensible Authentication ProtocolEAP inside a TLS tunnelThe tunnel only helps if the client validates the server certificate. Without that check it authenticates to whichever radio answers.
BSSIDBasic Service Set IdentifierThe MAC address of the individual radioSeveral access points share one SSID, so the BSSID is what identifies the rogue among them.
MABMAC Authentication BypassAdmitting a device by its hardware address when it cannot do 802.1XFor printers and cameras. The address is trivially spoofed, so it is a concession rather than a control.

Specialised platforms and resilience

AcronymExpands toWhat it isWorth knowing
ICSIndustrial Control SystemSystems controlling a physical processAvailability and safety come before confidentiality, which inverts the usual priority order.
SCADASupervisory Control and Data AcquisitionThe supervisory layer above industrial controllersProtocols with no authentication, designed for isolated networks that are no longer isolated.
RTOSReal-Time Operating SystemAn operating system that guarantees when something happensDeterminism, not speed. Anything that adds variable delay - an agent, inline inspection - is unacceptable.
IoTInternet of ThingsConnected devices built to a priceDefault credentials, no update mechanism and no inventory. What the largest botnets were assembled from.
TEETrusted Execution EnvironmentA processor region nothing outside it can read, such as Intel SGXHow data in use is protected - not by the operating system, the hypervisor or an administrator.
HAHigh AvailabilityDesign that survives a component failure without an outageAvailability, not recovery. Clustering and load balancing serve it; backups do not.
RAIDRedundant Array of Independent DisksRedundancy across disksNot a backup. It holds one version of the data, so deletion, corruption and encryption all pass straight through it.
UEFIUnified Extensible Firmware InterfaceThe firmware layer that replaced the BIOSWhere Secure Boot lives, and where a bootkit sits below anything the operating system can inspect.
UPSUninterruptible Power SupplyBattery cover for a short outageBuys minutes, for a clean shutdown or until the generator starts. A generator covers the long outage; neither covers both.
HVACHeating, Ventilation and Air ConditioningEnvironmental control for the facilityAn availability control, and repeatedly the way into a network it had no business being connected to.
WORMWrite Once, Read ManyStorage that cannot be altered after writingWhat makes a backup or a log survive an administrator - and therefore ransomware, which uses administrator rights to destroy the copies first.
TEMPESTA US programme name, not an expansionShielding against information leaking as electromagnetic emanationThe countermeasure to reading a screen or a cable from outside the room. Belongs with air gaps and Faraday cages at the top of the sensitivity scale.
PreviousData Protection

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