Skip to content

Chapter 1 of 7

Foundations of Cybersecurity

Cybersecurity is the practice of protecting systems, networks, and data from digital attacks, unauthorized access, and damage. At its heart sit three core principles often called the CIA triad. Confidentiality ensures that information is accessible only to authorized parties, integrity guarantees that data remains accurate and unaltered except by sanctioned changes, and availability ensures that systems and data are reachable when legitimate users need them. Together these properties define what defenders are trying to preserve, and they shape virtually every security decision made in an organization.

Complementing the CIA triad is the AAA framework of authentication, authorization, and accounting. Authentication verifies the identity of a user, device, or system, while authorization grants permission to access specific resources or perform specific actions. The familiar shorthand "authentication confirms who you are; authorization defines what you can do" captures the distinction. Accounting tracks and logs user actions to support audits and forensic investigations. Closely related is non-repudiation, the assurance that someone cannot later deny having performed an action, which is often achieved through cryptographic techniques such as digital signatures.

Security work also relies on a vocabulary of risk concepts. A threat is a potential cause of an unwanted incident that may harm a system, while a vulnerability is a weakness that a threat can exploit. Risk is the potential for loss when a threat successfully exploits a vulnerability, sometimes summarized by the equation risk equals threat times vulnerability times impact. An exploit is a piece of code or technique that takes advantage of a vulnerability. Around these concepts sit foundational principles: defense in depth layers multiple controls so that the failure of any one does not compromise the whole, the principle of least privilege grants users only the minimum permissions they need, and separation of duties splits critical functions across people to prevent fraud and abuse.

All chapters
  1. 1Foundations of Cybersecurity
  2. 2Threats and Attack Vectors
  3. 3Cryptography and Secure Communications
  4. 4Identity and Access Management
  5. 5Security Architecture and Network Defenses
  6. 6Application, Cloud, and Development Security
  7. 7Operations, Incident Response, and Governance

Drill it

Reading is not remembering. These come from the Cybersecurity Fundamentals deck:

Q

What is cybersecurity?

The practice of protecting systems, networks, and data from digital attacks, unauthorized access, and damage.

Q

What is the CIA triad?

Confidentiality, Integrity, and Availability — the three core security principles.

Q

What is confidentiality?

Ensuring information is accessible only to authorized parties.

Q

What is integrity (security)?

Ensuring data is accurate and unaltered except by authorized changes.