Home General Security Concepts: Complete Security+ SY0-701 Domain 1 Study Guide

General Security Concepts: Complete Security+ SY0-701 Domain 1 Study Guide

An Infographic Illustrating Six Types Of Cybersecurity Controls, Centered Around A Glowing Blue Shield With Circuit Board Patterns On A Dark Blue Background Scattered With Binary Code.six Colorful Circular Icons Branch Out From The Shield, Each With A Text Label Underneath:preventive: A Green Circle With A Shield And Checkmark Icon.detective: A Yellow Circle With An Eye And Magnifying Glass Icon.dorrective (Misspelled In Image): A White Circle With A Document Icon.corrective: A Red Circle With A Wrench And Rotating Arrows Icon.deterrent: An Orange Circle With An Exclamation Mark Icon.compensating: A Purple Circle With An Overlapping Geometric Icon.the Main Title &Quot;Security Controls&Quot; Is Centered At The Bottom, With The Exam Code &Quot;Sy0-701&Quot; Displayed In The Bottom-Right Corner.

Exam Domain: Domain 1.0 — General Security Concepts | Exam Weight: 12% | Read Time: ~25 min


What you’ll learn: The CIA triad and why it underpins every security decision. All six security control types and four control categories. The AAA framework, zero trust architecture, non-repudiation, and cryptography basics. By the end you’ll instantly classify any security control and map any attack to the correct CIA component.


Why Domain 1 Is the Most Important Domain

Domain 1 is only 12% of the exam — yet failing to master it makes the other 88% significantly harder. Every threat in Domain 2, every architecture in Domain 3, every operation in Domain 4, and every governance framework in Domain 5 reference the language you learn here.

Think of Domain 1 as learning the grammar of a language. The exam’s scenario questions across all five domains assume you already speak this grammar fluently.

Exam Tip: Domain 1 rewards vocabulary precision. Ransomware primarily threatens availability — not confidentiality. A man-in-the-middle attack primarily threatens confidentiality — not integrity. These distinctions appear on every Security+ exam.


Section 1: The CIA Triad

Cia Triad Diagram 1 General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide
General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide 8

The CIA triad is a decision-making framework applied to every control, policy, and incident response action.

Confidentiality

Ensures information is accessible only to authorized parties.

  • Controls: Encryption (AES-256, TLS), access control lists, MFA, data classification, RBAC/ABAC, physical security
  • Attacks: Eavesdropping, man-in-the-middle, shoulder surfing, dumpster diving, SQL injection (exfil), phishing
  • Real example: Healthcare stores patient records in an encrypted database with role-based permissions. Without the key, data is unreadable even if copied. That is confidentiality.

Integrity

Ensures data is accurate, complete, and unaltered by unauthorized parties.

  • Controls: Hashing (SHA-256, SHA-3), digital signatures, MACs, file integrity monitoring, version control, input validation
  • Attacks: Data tampering, SQL injection (modify/delete), MitM alteration, replay attacks, malware modifying system files
# Verify file integrity with SHA-256
sha256sum downloaded_file.iso
# Compare output to publisher's posted hash
# If different — file was altered in transit
  • Real example: A software publisher posts the SHA-256 hash alongside the download. You run sha256sum installer.exe and compare. Match = untampered. That is integrity verification.

Availability

Ensures systems and data are accessible to authorized users when needed.

Controls: Redundancy/RAID, load balancing, backups + DR plans, failover systems, UPS, DDoS mitigation

Attacks: DoS/DDoS, ransomware (data locked), physical destruction, power outages

Common Exam Trap: Ransomware primarily attacks availability — it locks you out of your own data. Some ransomware also exfiltrates data (confidentiality), but the defining characteristic is inaccessibility. The exam tests this distinction frequently.

CIA Attack Mapping Table

AttackPrimary CIA ImpactWhy
RansomwareAvailabilityData encrypted, inaccessible
MitM attackConfidentialityData intercepted/disclosed
Data tamperingIntegrityData modified without auth
DDoS attackAvailabilityService disrupted
SQL injection (exfil)ConfidentialityUnauthorized disclosure
SQL injection (delete)Integrity + AvailabilityData destroyed
Phishing (cred theft)ConfidentialityCredentials exposed
Replay attackIntegrityLegitimate data re-sent maliciously

Section 2: Security Controls

Diagram 2 Security Controls General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide
General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide 9

Two dimensions to every control:

  • Category = HOW it is implemented
  • Type = WHAT it does

Control Categories

CategoryHow ImplementedExamples
TechnicalHardware, software, firmwareFirewall, encryption, AV, IDS, MFA, ACLs
ManagerialPolicies, procedures, standardsAUP, risk assessments, background checks
OperationalPeople and day-to-day proceduresSecurity guards, training, backup procedures
PhysicalTangible, physical mechanismsLocks, bollards, CCTV, badge readers, mantraps

Control Types

Preventive — Stops an incident before it happens.

  • Technical: Firewall | Managerial: AUP | Operational: ID check | Physical: Door lock

Detective — Identifies incidents in progress or after the fact.

  • Technical: IDS | Managerial: Security audit | Operational: Guard reviewing CCTV | Physical: Motion sensor

Corrective — Minimizes impact and restores to normal operation.

  • Technical: Backup restore | Managerial: IR plan | Operational: Patch after breach | Physical: Fire extinguisher

Deterrent — Discourages attackers psychologically (does not stop them).

  • Technical: Login banner | Managerial: AUP with consequences | Physical: “Under surveillance” sign

Deterrent vs Preventive: A “No Trespassing” sign is deterrent. The fence it stands next to is preventive. The camera is detective. The alarm is corrective (triggers response).

Compensating — Alternative control when primary control cannot be implemented.

  • Example: Legacy app can’t support MFA → implement network segmentation + enhanced monitoring instead

Directive — Mandates or instructs specific behavior.

  • Technical: Compliance enforcement | Managerial: Mandatory training | Physical: “Exit only” sign

Quick-Reference Classification Table

ControlCategoryType
FirewallTechnicalPreventive
Security auditManagerialDetective
CCTV cameraPhysicalDetective
Backup restorationTechnicalCorrective
Security guardOperationalPreventive / Deterrent
Login warning bannerTechnicalDeterrent
Bollards outside buildingPhysicalPreventive
IDS alertTechnicalDetective
Patching after breachTechnicalCorrective
Security awareness trainingOperationalPreventive
Biometric scannerTechnicalPreventive
MantrapPhysicalPreventive
Risk assessmentManagerialPreventive

Section 3: The AAA Framework

Aaa Framework General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide
General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide 10

AAA controls who gets in, what they can do, and what they did.

Authentication — Who Are You?

Three factor categories:

FactorWhatExamples
Something you knowKnowledgePassword, PIN, passphrase, security question
Something you havePossessionSmart card, YubiKey, TOTP authenticator app
Something you areBiometricFingerprint, iris scan, facial recognition

MFA requires two or more factors from different categories. Password + PIN is NOT MFA — both are “something you know.”

Authorization — What Can You Do?

RBAC (Role-Based): User → Role → Permissions. Most common enterprise model.

Alice → HR Manager role → [read_payroll, edit_payroll, view_reports]
Bob   → Accountant role  → [read_payroll, view_reports]

ABAC (Attribute-Based): Permissions based on user + resource + environment attributes.

IF user.dept = "Finance"
AND resource.type = "Financial"
AND time = "business_hours"
THEN PERMIT

Least Privilege: Users get minimum permissions needed. Limits breach blast radius.

Accounting — What Did You Do?

# Real Linux auth log entries
Sep 04 14:23:11 server01 sshd: Accepted publickey for alice from 192.168.1.50
Sep 04 14:23:45 server01 sudo: alice → USER=root → COMMAND=/bin/systemctl restart nginx
Sep 04 14:28:30 server01 sshd: Failed password for bob from 10.0.0.25

Accounting logs feed SIEM systems, audit reports, incident investigations, and compliance (PCI-DSS, HIPAA, SOX).


Section 4: Non-Repudiation

Non-repudiation ensures an action cannot be denied by the party that performed it. Proof that a specific person performed a specific action at a specific time.

How it’s achieved:

  • Digital signatures — cryptographically tied to a specific private key only the signer possesses
  • Timestamped audit logs with hash verification
  • Certificate-based authentication — each user has a unique certificate

Real example: A digital contract signed with Alice’s private key cannot be repudiated — only her key produces that signature. Mathematical proof of authorship.


Section 5: Zero Trust Architecture

Zero Trust Diagram General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide
General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide 11

Core principle: “Never trust, always verify.”

Traditional security assumed everything inside the perimeter was trustworthy. Zero trust assumes breach — verify nothing by default, whether inside or outside the network.

Three Core Principles

1. Verify Explicitly Authenticate and authorize based on all available data: identity, location, device health, workload, data classification, behavior.

2. Use Least Privilege Just-in-time (JIT) and just-enough-access (JEA). Risk-based adaptive policies.

3. Assume Breach Minimize blast radius. Micro-segment. Encrypt end-to-end. Use analytics for threat detection.

Zero Trust Components

ComponentDescription
Micro-segmentationDivides network into small isolated zones — no lateral movement
Continuous validationVerify trust continuously, not just at login
Device health checksVerify device compliance before granting access
PAM (Privileged Access Mgmt)Control and monitor all admin accounts
MFA everywhereRequired for all access, including internal resources

Real example: Google’s BeyondCorp initiative — after the 2009 Operation Aurora breach, Google rebuilt access assuming their perimeter was already compromised. Employees access resources through identity and device health checks, not network location.


Section 6: Change Management as a Security Control

Unauthorized changes are a major source of vulnerabilities and outages. Change management is classified as a Managerial / Preventive control.

Why it matters:

  • Unauthorized changes introduce vulnerabilities
  • Untracked changes complicate incident investigation
  • Untested changes cause outages (availability impact)

Change Advisory Board (CAB): Reviews and approves significant changes before implementation.

Key concepts:

  • Every change needs a documented rollback plan
  • Change freeze periods: no changes during high-risk times (e.g. holiday season for retail)
  • Emergency change process: Expedited approval for critical security patches

Section 7: Cryptography Fundamentals

Cryptography Fundamentals Diagram General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide
General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide 12

Symmetric Encryption

One key encrypts and decrypts. Fast — used for bulk data.

Plaintext → [Same Key] → Ciphertext → [Same Key] → Plaintext
AlgorithmKey SizeStatus
AES-128128-bitSecure — standard
AES-256256-bitSecure — government grade
ChaCha20256-bitSecure — mobile optimized
3DES168-bit effectiveLegacy, being phased out
DES56-bitBroken — never use
RC4VariableBroken — never use

Use for: Disk encryption, file encryption, VPN bulk data transfer.

Asymmetric Encryption

Two linked keys — public and private. What one encrypts, only the other can decrypt. Solves the key distribution problem.

Alice encrypts with Bob's PUBLIC key → Ciphertext
Bob decrypts with his PRIVATE key   → Plaintext
AlgorithmKey SizeUse Case
RSA2048-4096 bitKey exchange, digital signatures
ECC256-384 bitMobile, TLS, smaller key = same security
Diffie-HellmanVariableKey exchange only
DSA2048-bitDigital signatures only

Use for: TLS handshake, key exchange, digital signatures.

Hybrid Encryption — How TLS Works

Asymmetric to exchange a symmetric key, then symmetric for bulk transfer.

1. Browser connects to bank.com
2. Server sends PUBLIC key (RSA/ECC certificate)
3. Browser generates random SESSION key (AES-256)
4. Browser encrypts session key with server's PUBLIC key
5. Server decrypts session key with its PRIVATE key
6. All data transferred using fast AES-256

Hashing

One-way — converts any data to a fixed-length output. Cannot be reversed.

# SHA-256 hash examples
"password"  → 5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8
"Password"  → 0be1bfb7f3c98e1e1ea10dfe7a54abe2ef9f98f5c24a44e93c0e1cc6a3ffbef6
# One character change = completely different hash (Avalanche Effect)
AlgorithmOutputStatus
SHA-256256-bitSecure — use this
SHA-3224-512 bitSecure — newest standard
bcryptVariableSecure — for password storage
MD5128-bitBroken — collision attacks
SHA-1160-bitDeprecated — avoid

Salting

Adding a random value to data before hashing. Defeats rainbow table attacks.

Without salt: "password" → always same hash → rainbow table can crack
With salt:    "password" + "xK9#mQ" → unique hash every time

Digital Signatures

Provide Integrity + Non-repudiation + Authentication.

Signing:
1. Hash the document: SHA-256(document) = [hash]
2. Encrypt hash with PRIVATE key = Digital Signature
3. Send document + signature

Verifying:
1. Decrypt signature with PUBLIC key = [hash]
2. Hash received document = [new hash]
3. If equal → document unaltered + sender verified

Key difference: Digital signatures use PRIVATE key to sign, PUBLIC key to verify — opposite of encryption.

PKI — Public Key Infrastructure

Pki Diagram General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide
General Security Concepts: Complete Security+ Sy0-701 Domain 1 Study Guide 13
ComponentFunction
Root CASelf-signed, offline, trust anchor
Intermediate CAOnline, issues end-entity certificates
Digital CertificateBinds public key to identity
CRLPeriodic list of revoked certificates
OCSPReal-time certificate revocation check

Trust chain: Root CA signs Intermediate CA → Intermediate CA signs server/user certs → Browser trusts chain back to Root CA.


Section 8: Practice Questions

10 scenario-based questions — click to reveal each answer and explanation.

Section 9: Exam Quiz

Article 01.1 — Security Controls Exam Simulation  ·  15 questions  ·  10 minutes

🎯

Security Controls — Exam Simulation

15 MCQ questions focused entirely on security control categories and types
Mirrors the style and difficulty of real Security+ SY0-701 scenario questions

📋

15 Questions

Article 01.1 scope only

⏱️

10 Minutes

~40 sec per question

💡

Instant Feedback

Explanation after each answer

📊

Full Review

Score + all answers at end

Lesson 01.1 — Summary

Security Controls Explained: Preventive, Detective, Corrective, Deterrent & Compensating
Module 01: General Security Concepts  ·  Domain 1.0  ·  12% of Security+ SY0-701

Module 01 · Lesson 01.1 Domain 1.0 — General Security Concepts 12% of SY0-701 Exam

📌 Key Takeaways from Lesson 01.1

Control Categories (HOW)
Technical — HW, SW, firmware
Managerial — policies, admin
Operational — people, procedures
Physical — tangible mechanisms
Control Types (WHAT)
Preventive — stops incidents
Detective — identifies incidents
Corrective — restores normal state
Deterrent — discourages attackers
Special Types
Compensating — alternative when primary is unavailable
Directive — mandates specific behavior
Key Distinction
Every control has both a category (how) and a type (what). A firewall is Technical-Preventive. A CCTV camera is Physical-Detective.
Control Example Category Type Why
FirewallTechnicalPreventiveTechnology that blocks unauthorized traffic before it enters
IDS / IPS alertTechnicalDetectiveSoftware that detects threats and raises alerts
Backup restorationTechnicalCorrectiveSoftware that restores data after an incident
Login warning bannerTechnicalDeterrentDiscourages unauthorized access — does not block it
Security policy (AUP)ManagerialDirectiveAdministrative document mandating user behavior
Risk assessmentManagerialPreventiveIdentifies and addresses risks before incidents occur
Security auditManagerialDetectiveReviews logs and policy compliance — identifies gaps
Security guard (at door)OperationalPrev / DeterPerson physically stops OR discourages — context decides
Security awareness trainingOperationalPreventiveReduces human error — people-based prevention
Door lockPhysicalPreventivePhysical mechanism that stops unauthorized physical access
CCTV cameraPhysicalDetectiveRecords activity — detects but does not prevent
BollardsPhysicalPreventivePhysically blocks vehicles — tangible prevention
“Under surveillance” signPhysicalDeterrentPsychological discouragement — no physical blocking
Network segmentation (for legacy app)TechnicalCompensatingAlternative when primary control (MFA) cannot be used

⚡ Exam Tips — Lesson 01.1 Specific

  • Every scenario question about controls asks for both category AND type — know both dimensions.
  • A security guard is Operational category — always. The type depends on context: “stops entry” = Preventive, “discourages” = Deterrent.
  • Compensating controls only appear when the question states a primary control cannot be implemented — usually due to legacy systems or cost.
  • Directive controls are the most commonly confused — they mandate behavior (SOPs, signs, policies) but don’t fit neatly into prevent/detect/correct.
  • Read the verb carefully: “stops” = Preventive, “identifies” = Detective, “restores” = Corrective, “discourages” = Deterrent.

⚠️ Common Pitfalls — Lesson 01.1

Deterrent = Preventive — Wrong. A “No Trespassing” sign deters. The fence prevents. The camera detects. These are three different types applied to the same scenario.
Security guard = Technical control — Wrong. Security guards are always Operational — they are people performing procedures, not technology.
Compensating = Corrective — Wrong. Compensating replaces a control that cannot be used. Corrective restores normal state after an incident has occurred.
Only one type per control — Wrong. A control can serve multiple types. A security guard can be both Preventive (stops entry) and Deterrent (discourages) — the scenario context determines which the exam is asking about.

📚 What’s Next in Module 01: General Security Concepts

Continue your Domain 1 study — 10 more Lessons to complete the module

01.2
The CIA Triad: Confidentiality, Integrity, and Availability in Real-World Security
The three pillars every security decision maps to — with attack examples and real-world scenarios
01.3
Authentication, Authorization, and Accounting (AAA): How Identity Works in Security
MFA factors, RBAC vs ABAC, least privilege, and how accounting creates non-repudiation
01.4
Non-Repudiation, Digital Signatures, and Why They Matter for Security
How digital signatures prove who did what — and why it cannot be denied
01.5
Change Management and Security: Why Every System Update is a Security Event
CAB, rollback plans, change freezes — why unauthorized changes are a major attack vector
01.6
Cryptography Basics: Encryption, Hashing, and How They Protect Data
Symmetric vs asymmetric, hashing algorithms, salting, and when to use each
01.7
Symmetric vs Asymmetric Encryption: AES, RSA, and When to Use Each
Deep dive into AES-256, RSA, ECC — key sizes, use cases, and TLS hybrid model
01.8
Public Key Infrastructure (PKI): Certificates, CAs, and Trust Chains
Root CA, intermediate CA, OCSP vs CRL, certificate lifecycle
01.9
Zero Trust Architecture: Never Trust, Always Verify
Micro-segmentation, continuous validation, assume breach — replacing perimeter security
01.10
Physical Security Controls: Locks, Cameras, Badges, and Access Restrictions
Mantraps, bollards, badge readers, lighting — physical layer of defense in depth
01.11
Security Frameworks Overview: NIST, ISO 27001, CIS Controls Compared
When to use which framework — practical comparison for the Security+ exam

📋 Complete Security+ SY0-701 Series — 5 Modules · 58 Lessons

01 General Security Concepts (Current Module) 12% 11 Lessons
02 Threats, Vulnerabilities & Mitigations 22% 13 Lessons
03 Security Architecture 18% 11 Lessons
04 Security Operations 28% 13 Lessons
05 Security Program Management & Oversight 20% 10 Lessons
Avatar Of Mudassir K
Mudassir K

Editor & Founder

Holds a BS in Computer Science with 6+ years of experience writing about technology. Covers AI, cloud computing, web development, and SEO, drawing on hands-on project experience to make advanced topics accessible.