S+

CompTIA Security+ SY0-701

Lesson 1 of 12 — Security Fundamentals

Day 1 ← Course Home
Lesson 1 — General Security Concepts (12% of exam)

Security Fundamentals

The CIA Triad, Non-Repudiation, Security Control Categories, and Security Control Functional Types — the conceptual foundation every security professional builds from.

📖 3 Topics 🎯 2 Activities 📝 5-Question Quiz ⏱ ~60 min Domain: General Security Concepts

By the end of this lesson, you will be able to:

  • Define Confidentiality, Integrity, and Availability and explain how each pillar protects information assets.
  • Explain Non-Repudiation and describe how cryptographic mechanisms enforce it.
  • Distinguish among Managerial, Operational, Technical, and Physical security control categories.
  • Classify security controls by functional type: Preventive, Detective, Corrective, Deterrent, Directive, and Compensating.
  • Apply the control category and functional-type frameworks to real-world security scenarios.
  • Recognize how CIA triad violations map to specific breach events and remediation strategies.
CIA Triad
The three foundational security goals: Confidentiality, Integrity, and Availability. Every security decision maps back to at least one of these pillars.
Non-Repudiation
The assurance that a sender cannot deny having sent a message or performed an action; enforced via digital signatures and audit logs.
AAA (Authentication, Authorization, Accounting)
A framework for controlling access: verifying identity, granting permissions, and recording activity for audit purposes.
Managerial Control
Policy and procedure-based controls established by leadership to govern security behavior (e.g., risk assessments, acceptable use policies).
Operational Control
Day-to-day processes performed by people to maintain security posture (e.g., security awareness training, background checks).
Technical Control
Hardware or software mechanisms that enforce security automatically (e.g., firewalls, encryption, access control lists).
Physical Control
Tangible barriers and mechanisms that protect facilities and equipment (e.g., locks, fencing, badge readers, security cameras).
Preventive Control
A control designed to stop a security event from occurring in the first place (e.g., a firewall blocking unauthorized traffic).
Detective Control
A control that identifies and records security events after they occur (e.g., an IDS alerting on anomalous traffic).
Corrective Control
A control that reduces the impact of an incident or restores the system to normal operation (e.g., restoring from a backup).
Deterrent Control
A control that discourages a threat actor from attempting an attack (e.g., warning banners, security cameras, guards).
Compensating Control
An alternative safeguard used when the primary control cannot be implemented; must provide equivalent protection.

Every security decision a professional makes — whether selecting a firewall rule, writing an incident response procedure, or designing an access control model — ultimately traces back to a handful of foundational principles. The CIA Triad defines what we are protecting. The concept of Non-Repudiation tells us how accountability is enforced. Security Control Categories explain who or what implements a safeguard, and Functional Types tell us when and how that safeguard engages.

CompTIA Security+ SY0-701 tests your ability to recognize these frameworks in scenario-based questions — meaning you will not simply recall a definition but will apply these concepts to realistic situations like a working security analyst. This lesson builds the mental model you will use for every subsequent topic in the course. Master this vocabulary now, and the more advanced domains (threat analysis, architecture, operations) will click into place far more easily.

01

The CIA Triad & Non-Repudiation

The three core security properties every professional must understand — plus the cryptographic guarantee of accountability.

🔄 Click to flip

CIA Triad & Non-Repudiation

Confidentiality prevents unauthorized disclosure. Integrity prevents unauthorized modification. Availability ensures authorized users have timely access. Non-Repudiation ensures no party can deny their actions — enforced by digital signatures and audit trails.

02

Security Control Categories

Managerial, Operational, Technical, and Physical — four implementation perspectives that classify who or what enforces a control.

🔄 Click to flip

Control Categories

Managerial controls are policy-driven. Operational controls are human-executed day-to-day. Technical controls are automated hardware/software mechanisms. Physical controls are tangible barriers protecting facilities and hardware.

03

Security Control Functional Types

Preventive, Detective, Corrective, Deterrent, Directive, and Compensating — six roles a control can play in your defense strategy.

🔄 Click to flip

Functional Types

Controls don't just exist — they act. They can prevent events, detect them, correct damage, deter attackers, direct behavior, or compensate when preferred controls are unavailable. One physical device can serve multiple functional roles simultaneously.

1

The CIA Triad & Non-Repudiation

Foundational properties defining what security protects and why accountability matters

The CIA Triad is the bedrock of information security. Every control, policy, and technology exists to protect one or more of these three properties. Understanding them — and knowing how to recognize violations — is tested throughout the Security+ exam.

🔒 Confidentiality

Confidentiality ensures that information is accessible only to those authorized to view it. It prevents unauthorized disclosure — whether intentional (a hacker exfiltrating data) or unintentional (an employee leaving a sensitive report on a shared drive).

  • Mechanisms: Encryption (AES, TLS), access control lists, data masking, need-to-know policies
  • Threat Example: A ransomware actor stealing customer PII before encrypting files violates confidentiality
  • Exam Tip: Confidentiality violations often involve unauthorized access or data exposure events

Integrity

Integrity ensures that data remains accurate, consistent, and unaltered except through authorized processes. It protects information from unauthorized modification, corruption, or deletion — by attackers or by system failures.

  • Mechanisms: Cryptographic hashing (SHA-256), digital signatures, checksums, version control, input validation
  • Threat Example: A man-in-the-middle attacker modifying financial transaction amounts violates integrity
  • Exam Tip: Hashing proves integrity; it does NOT provide confidentiality or non-repudiation alone

Availability

Availability ensures that systems, data, and services are accessible to authorized users when needed. Even perfectly confidential and integral data is useless if a DoS attack or hardware failure takes it offline.

  • Mechanisms: Redundancy, failover clustering, load balancing, DDoS mitigation, UPS systems, regular backups
  • Threat Example: A Distributed Denial of Service (DDoS) attack exhausting server resources violates availability
  • Exam Tip: Availability is often the target of DoS/DDoS, ransomware, and physical disasters

📜 Non-Repudiation

Non-Repudiation guarantees that a party cannot deny having performed an action. It is the security property that makes legally and operationally binding digital transactions possible — from signing a contract to authorizing a wire transfer.

  • Mechanisms: Digital signatures (asymmetric cryptography), certificate-based authentication, tamper-evident audit logs, timestamping services
  • How it works: A sender encrypts a message hash with their private key; any recipient can verify the signature using the sender's public key — proving origin
  • Exam Tip: Non-Repudiation combines integrity (the message wasn't changed) with authentication (proving who sent it)
Security+ Exam Insight: Scenario questions often describe a breach event and ask which CIA property was violated. Practice identifying: data stolen = Confidentiality; data altered = Integrity; service down = Availability. Many real incidents violate multiple properties simultaneously — ransomware attacks typically violate all three.
2

Security Control Categories

Four implementation perspectives: who or what enforces the control

Security controls are grouped by how they are implemented — the people, processes, technology, or physical mechanisms that enforce them. Understanding categories helps security professionals build layered defenses by selecting controls from multiple implementation perspectives.

Category Implemented By Focus Examples
Managerial Leadership / Policy Risk management decisions, governance documentation, and organizational security policy Risk assessments, Acceptable Use Policy (AUP), security awareness program charters, gap analysis, vendor risk management policy
Operational People / Processes Day-to-day human actions and procedures that maintain the security posture Security awareness training, background checks, incident response drills, change management procedures, patch management workflows
Technical Hardware / Software Automated or technology-enforced mechanisms that protect systems and data Firewalls, encryption, intrusion detection systems (IDS), multi-factor authentication (MFA), access control lists (ACLs), antivirus, SIEM
Physical Environment / Barriers Tangible safeguards that protect facilities, hardware, and personnel from physical threats Badge readers, biometric door locks, security guards, fencing, bollards, CCTV cameras, cable locks, server room cages

📋 Managerial Controls — Deep Dive

Managerial controls exist at the governance layer. They establish what the organization's security program looks like and provide the authority for all other controls. Without strong managerial controls, operational and technical controls lack direction and accountability.

  • Risk assessments identify and prioritize threats
  • Security policies define required behaviors
  • Gap analysis compares current posture to desired baseline
  • Audit and compliance programs verify adherence

👥 Operational Controls — Deep Dive

Operational controls are the human side of security. They are only as effective as the people executing them — which is why training, awareness, and well-documented procedures are critical. Social engineering attacks frequently succeed because operational controls are weak or inconsistently applied.

  • Security awareness training counters phishing and pretexting
  • Background checks reduce insider threat risk
  • Separation of duties prevents fraud
  • Clean desk policies prevent physical data exposure
Common Exam Trap: Physical controls are often confused with Technical controls. A biometric fingerprint scanner at a door is Physical (it controls access to a space). A biometric authentication system that controls access to a software application is Technical. Ask yourself: is it controlling physical access to a space/device, or logical access to a system?
3

Security Control Functional Types

Six roles a control plays: the timing and manner in which it acts

While categories describe who implements a control, functional types describe what the control does when a threat arrives. A single control can serve multiple functional types simultaneously — a security camera is both deterrent (visible) and detective (records events).

🛡 Preventive

Stops a security event from occurring. This is the most proactive functional type — the goal is to block the threat before any damage occurs.

  • Firewall blocking unauthorized ports
  • Encryption preventing eavesdropping
  • Access control lists restricting file access
  • Locked server room door preventing physical access

🔍 Detective

Identifies and records a security event after it occurs or while it is occurring. Detective controls cannot stop an attack but provide the visibility needed to respond.

  • IDS/SIEM generating alerts on anomalous traffic
  • Security cameras recording access events
  • Audit logs capturing login attempts
  • Motion sensors triggering alarms

🔧 Corrective

Reduces the damage caused by an incident and restores the system to normal operation. Corrective controls engage after an attack has been detected.

  • Restoring data from a clean backup
  • Patching a vulnerability exploited in an attack
  • Isolating an infected endpoint
  • Re-imaging a compromised workstation

⚠️ Deterrent

Discourages a threat actor from attempting an attack by signaling that consequences exist. Deterrents target the attacker's decision-making before any action is taken.

  • Warning banners on login screens
  • Visible security cameras and guards
  • Barbed wire and security lighting
  • Published disciplinary policies

📌 Directive

Directs users toward secure behaviors through required actions, policies, and documented standards. These controls guide what people should do rather than enforcing it automatically.

  • Acceptable Use Policy (AUP)
  • Security awareness training mandates
  • Standard Operating Procedures (SOPs)
  • Data classification guidelines

⚖️ Compensating

Substitutes for a primary control when that control cannot be implemented. A compensating control must provide equivalent or better risk reduction and is documented in a Plan of Action & Milestones (POA&M).

  • Enhanced monitoring when MFA cannot be deployed
  • Network segmentation when a legacy system cannot be patched
  • Manual review processes replacing automated scanning
  • Physical isolation of a system missing software controls
Key Exam Insight — Multiple Types, One Control: CompTIA loves to test your ability to identify multiple functional types in a single control. A security guard is Preventive (physically blocks entry), Deterrent (visible presence discourages attack), and Detective (can observe and report incidents). Always consider all applicable functional types when analyzing a scenario.
Activity 1

Control Category Sort — Drag & Drop

Drag each scenario into the correct Security Control Category

Instructions: Drag each scenario chip from the pool below into the correct control category drop zone. Submit your answers to receive instant feedback. Click a chip's × button to return it to the pool.
Installing a Firewall
Biometric Door Lock
Writing an AUP
Security Awareness Training
Enabling MFA
Installing Security Cameras
Conducting a Risk Assessment
Running Background Checks
Technical
Physical
Managerial
Operational
Activity 2

CIA Triad Scenario Explorer

Select a breach scenario — identify the CIA violation and recommended control type

Instructions: Select a scenario below, then click the CIA property you believe was violated and the control type that best addresses the breach. The feedback panel will reveal the correct analysis.
🔴 Scenario 1: The Unsecured Database
A healthcare provider discovers that a cloud-hosted database containing 50,000 patient records — including names, SSNs, and medical histories — has been publicly accessible for six months due to a misconfigured S3 bucket. No encryption was applied to the data at rest.

Which CIA property was violated? What control type should be deployed?

✅ Analysis: This is a Confidentiality violation — patient data was disclosed to unauthorized parties. The root cause is a misconfiguration (a Managerial/Operational failure) combined with missing encryption (a Technical failure). The best immediate control is a Corrective control (restrict the bucket, apply encryption, notify affected individuals). Going forward, a Preventive Technical control (mandatory encryption, cloud security posture management) prevents recurrence.
🟣 Scenario 2: The Altered Invoice
An attacker intercepts electronic invoices between a manufacturer and its supplier, subtly altering bank routing numbers. Three wire transfers totaling $840,000 are sent to the attacker's account before the fraud is discovered. No digital signatures were used on the invoices.

Which CIA property was violated? What control type should be deployed?

✅ Analysis: This is an Integrity violation — the invoice data was modified without authorization, and Non-Repudiation was also absent (there was no way to prove the authentic invoices were genuine). The correct Preventive Technical controls are: digital signatures on all financial documents, TLS encryption for email/file transfer, and email security gateways. This also highlights the value of Non-Repudiation — had the sender digitally signed the invoices, any modification would have been detectable.
🟠 Scenario 3: DDoS on E-Commerce Platform
A major retail company's e-commerce platform is taken offline for 9 hours during its peak holiday shopping period by a coordinated Distributed Denial of Service (DDoS) attack generating 2.4 Tbps of traffic. Customer data was not accessed or modified.

Which CIA property was violated? What control type should be deployed?

✅ Analysis: This is an Availability violation — the service was rendered inaccessible to authorized users. Data was not disclosed or altered. The best controls are: Preventive — DDoS mitigation services (Cloudflare, AWS Shield), rate limiting, anycast network diffusion; Corrective — activating a backup CDN or failover environment during the attack. A robust Business Continuity Plan (BCP) is also a Managerial control that would minimize recovery time.
🔵 Scenario 4: The Disgruntled Employee
A database administrator with privileged access, upset about a denied promotion, spends two weeks downloading copies of the company's proprietary R&D datasets and intellectual property to a personal USB drive before resigning. The data transfers were not logged and went undetected for three months.

Which CIA property was violated? What control type should be deployed?

✅ Analysis: This is a Confidentiality violation through an insider threat. Multiple control failures occurred: absence of Detective controls (no DLP solution, no privileged user activity monitoring/UEBA), and insufficient Preventive controls (USB ports should have been blocked via Technical controls; separation of duties and least privilege are Managerial controls that limit damage). The corrective action includes revoking all access immediately, conducting forensic analysis, and notifying legal counsel.
Assessment

Knowledge Check: Security Fundamentals

Select the best answer for each question, then submit for graded feedback

Question 1 of 5
A security analyst discovers that an attacker intercepted and modified a financial report while it was being transmitted between two departments. Which element of the CIA Triad was PRIMARILY violated?
Question 2 of 5
An organization's security policy requires that all employees complete annual cybersecurity awareness training and pass a proficiency test. Which type of security control BEST describes this requirement?
Question 3 of 5
A hospital's legacy medication dispensing system cannot support modern encryption protocols and therefore cannot have multi-factor authentication deployed. The security team implements enhanced real-time monitoring of all access to the system as an alternative measure. What type of control is this?
Question 4 of 5
Which cryptographic mechanism provides Non-Repudiation by allowing a recipient to verify that a message was sent by a specific individual and has not been altered in transit?
Question 5 of 5
A company installs visible security cameras at all entrance points to its data center. A guard is stationed at the main entrance 24/7. Which TWO functional control types does the security camera BEST represent? (Choose the answer that identifies both types.)