Cybersecurity is the practice of protecting systems, networks, data, and programs from digital attacks, unauthorized access, and damage. Built on core principles like the CIA triad (Confidentiality, Integrity, Availability), cybersecurity encompasses threat identification, vulnerability management, control implementation, and incident response to maintain organizational resilience. In 2026, with AI-powered attacks, zero-trust architectures, and increasingly sophisticated threats, understanding these fundamentals is no longer optional — it's the baseline for operating securely in a hyper-connected world. Keep in mind that cybersecurity is fundamentally about risk management, not absolute prevention; the goal is to reduce risk to acceptable levels while maintaining business functionality.
What This Cheat Sheet Covers
This topic spans 29 focused tables and 207 indexed concepts, 195 flashcards, 9 practice tests with 273 questions. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
A jump-to index of every table row in this cheat sheet.
An interactive map of every table and concept in this topic.
Table 1: CIA Triad — Core Security Principles
The CIA triad is the cornerstone of every security program, and every control you deploy ultimately protects one or more of these properties. Two more properties, non-repudiation and authenticity, get added whenever accountability and origin matter. Knowing which property a control actually protects, and where each one fails, is the starting point for reasoning about any security decision.
| Principle | Example | Description | |
|---|---|---|---|
Encrypt customer PII with AES-256Implement access controls (RBAC) | • Preserves authorized restrictions on information access and disclosure, including means for protecting personal privacy and proprietary information (NIST FIPS 200) • enforced through encryption, access control, and data classification. Encryption at rest does nothing against an already-authorized account, so access control carries equal weight. | ||
Use SHA-256 hash to verify file integrityDigital signatures for email | • Guards against improper information modification or destruction, and includes ensuring information non-repudiation and authenticity (NIST FIPS 200) • delivered by hashing, MACs, and digital signatures, not by encryption. Plain encryption hides data without proving it stayed unchanged. | ||
Deploy load balancers and failover systemsDDoS mitigation (rate limiting) | • Ensures timely and reliable access to and use of information (NIST FIPS 200) • maintained through redundancy, disaster recovery, and business continuity planning. A DDoS or ransomware outage is a security failure of this property, not just an ops problem. RTO caps how long a resource may stay unavailable, RPO caps how much data you may lose. | ||
Digital signatures on contractsAudit logs with timestamps | • Assurance that an actor cannot later credibly deny an action they performed • needs a signature verifiable as having originated from the specific entity holding the private key, plus logging. A shared secret cannot deliver it, since either party could have produced the evidence. Supports accountability and legal defensibility. | ||
PKI certificates verify server identityDNSSEC validates DNS responses | • The property of being genuine and able to be verified and trusted, including confidence in the validity of a message originator (NIST SP 800-53 Rev. 5) • delivered through certificates, digital signatures, and trusted channels. It answers "is this really from who it claims?", while non-repudiation adds that the actor cannot deny it afterwards. |