Cybersecurity › Module 2 › Lesson 1
Confidentiality
Keeping secrets actually secret
Opening
A secret that anyone can read is not a secret
Module 1 gave you foundations: CIA as mechanisms, 2026-scale social engineering, threat actors, ethics, and human lures. Module 2 zooms into the CIA Triad one pillar at a time so you can name failures precisely when incidents are messy. Confidentiality asks: who is allowed to see this? If the wrong person reads payroll, health records, trade secrets, or a private chat export, trust and often the law are already broken — even if nothing was changed and the system stayed online. Viewing without permission is enough. Theft of a copy counts.
1. Confidentiality is unauthorized disclosure — not "data vibes"
Confidentiality ensures sensitive information is available only to authorized people, processes, or systems. Think sealed envelope versus postcard: the postcard's problem is not that it can be crumpled; it is that anyone along the route can read it. A breach that publishes patient records unchanged is still a confidentiality failure. A café stranger reading open email is a confidentiality failure. A cloud link set to "anyone with the link" that escapes the intended circle is a confidentiality failure. Integrity would require unauthorized modification; availability would require authorized people being unable to use the system.
Secrets have a lifecycle: created, stored (at rest), moved (in transit), displayed, shared, archived, deleted. Each stage needs a control. Encryption at rest helps a stolen laptop. Encryption in transit (HTTPS/TLS) helps on hostile networks. Access control decides who may open the door before encryption even matters. Minimization means you never collected the extra field that later leaked. Defenders who only encrypt and never think about sharing links still lose confidentiality to a mis-sent URL.
Screen lock is still a confidentiality control in physical space. An unlocked phone on a café table hands whoever sits down the same session cookies and mail the owner had open. Device encryption without a lock is weaker in practice because the OS may already have keys unlocked for the signed-in user. Module 1's "lock the door" habit belongs here: Confidentiality fails when unauthorized eyes can read, whether those eyes arrived through a network or through an empty chair. Credential stuffing is the remote cousin — reused passwords hand mail to strangers without them ever touching your laptop.
2. Encryption: ciphertext without the key is not readable content
Encryption transforms readable data (plaintext) into ciphertext so an interceptor without the key sees gibberish. It is a confidentiality mechanism for data at rest (full-disk / phone encryption) and in transit (HTTPS). It does not by itself prove who you are talking to — certificates and name checks matter — and it does not stop someone who already has your unlocked session. Encryption also does not equal integrity by itself; separate mechanisms (MACs, signatures, hashes) detect change. For this lesson: when the goal is "eavesdroppers cannot read the contract," encryption is the right pillar language.
Practical habit: prefer https:// destinations you navigate yourself for banking and mail. Click the padlock only on sites you intended to visit — never as an excuse to follow a phishing link. On devices you own, confirm screen lock and device encryption are on so a lost phone is not an open archive. You will deepen crypto later in the topic; today you need the mechanism: without authorization and without the key, the content should stay unreadable.
3. Access control, least privilege, and data minimization
Access controls — passwords, MFA, roles, biometrics — decide who may open the door before they see the file. MFA raises the cost of a stolen password. Roles bind permissions to job need. Biometrics unlock a device you possess; they are not a reason to share that device. Access control fails confidentiality when accounts are shared, when offboarding leaves ex-employee tokens alive, or when everyone is an admin "for convenience."
Need-to-know and least privilege shrink blast radius: marketing should not browse HR payroll by default; a support tool should not export every customer's full ID by default. Data minimization and masking reduce what exists to steal — receipts that print ****1234, logs that store hashes instead of raw secrets, forms that do not ask for data they never use. The fewer secrets in motion, the fewer confidentiality failures a single mistake can cause.
Sharing settings are where many personal confidentiality failures actually happen. "Anyone with the link" is convenient and invisible until the URL lands in a group chat or search index. Review cloud shares the way you would review who has a spare house key: named people, expiry when possible, no public links for tax PDFs or ID scans. Confirming a padlock on a bank site you typed yourself protects transit; tightening a share protects the copy at rest in someone else's browser history. Both are Confidentiality. Neither requires attacking a network.
4. Wrong vs right: sending a sensitive contract
Worked failure — partner contract PDF. Right is never empty and never "email unlocked to the wrong address and hope."
Wrong
Email an unlocked contract to the wrong address, or upload it to a public "anyone with the link" share, or submit it over clear HTTP on untrusted Wi-Fi. Anyone who intercepts or stumbles on the link can read every clause — confidentiality already failed.
Right
Use a secure channel: HTTPS portal, end-to-end encrypted share, or encrypted file with a password sent on a separate channel. Confirm recipient identity before sending. Prefer least-privilege sharing that expires. Confirm screen lock on the device that holds the PDF.
5. Practical: check the lock on paths you already trust
These checks are on your own sites and devices. They are not instructions to intercept other people's traffic or to "test" a company's encryption. Navigate yourself; observe padlocks; tighten sharing on one file you own.
Command guide
Safe browser / phone confidentiality checks (your gear only)
Browser (sites you already use — type URL yourself)
Command — copy this
1. Visit your bank or email in a NORMAL tab you navigated to 2. Look for the padlock / "Connection is secure" 3. Click the lock → confirm HTTPS and a sensible certificate owner name 4. Prefer https:// addresses you type yourself — not links from strangers
Phone / laptop (YOUR device)
Command — copy this
Settings → search "encryption" / "lock screen" - Screen lock ON - Device encryption ON (most modern phones enable this by default)
Optional: private notes folder (no live bank passwords)
Optional command
mkdir -p "$HOME/cyberlium-lab"
Review one sensitive file's sharing settings; remove "anyone with the link"
Optional identity reminder (your machine only)
Command — copy this
whoami
NEVER: sniff Wi-Fi, decrypt other people's traffic, or share secrets into this app
Command guide
Terminal practice (Linux / Kali / macOS — YOUR machine only)
Confidentiality probes — observation only, YOUR gear Linux / Kali / macOS
Command — copy this
whoami mkdir -p "$HOME/cyberlium-lab" cd "$HOME/cyberlium-lab"
Headers only (no body download) from a public demo host you may contact:
Command — copy this
curl -I https://example.com
Optional: note HTTPS status in a private file (no secrets)
Command — copy this
date > conf-notes.txt chmod 600 conf-notes.txt
Windows PowerShell
Command — copy this
whoami New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\cyberlium-lab" | Out-Null curl.exe -I https://example.com
Or: Invoke-WebRequest -Method Head -Uri https://example.com | Select-Object StatusCode, Headers
NEVER: sniff Wi-Fi, MITM others, or decrypt traffic that is not yours
Mission: one confidentiality win
Pick one sensitive item (tax PDF, ID scan, work contract). Confirm it is stored in a private folder or encrypted drive/cloud with restricted sharing — not in a public link or unlocked USB. Tighten sharing if needed. Confirm screen lock on the device that holds it.
Stuck? Ask Cyberlium AI Mentor
If encryption vs access control feels blurry, ask for a hint — not a full essay. Try: "Hint only: how do encryption and passwords/MFA protect confidentiality differently, and why does unauthorized viewing break Confidentiality even when no file was edited?"
Confidentiality keeps unauthorized eyes off the data through encryption, access control, least privilege, and minimization. Next — Integrity — we protect the data from silent tampering even when someone can already touch the system or when a download claims to be "the official installer."
Knowledge Check
APPLY: You encrypt a contract before emailing it so eavesdroppers cannot read the text. Primary goal?
Multiple choice
Knowledge Check
APPLY: A hospital breach publishes patient records online. Records were not edited. Which pillar failed?
Multiple choice
Knowledge Check
APPLY: True or False: Giving every employee full access to all folders improves confidentiality.
True or False