File Types, Hidden Files, Search, and Your First Encryption

🔑Scope check: this activity is mostly Windows file-management skill-building, and carries exactly one AP concept — unencrypted files as a vulnerability. It does not cover access control models, file permissions, or chmod/chown — that vocabulary is reserved for Unit 3. If you're studying for the AP exam, the one thing worth locking in here is the encryption section below.
PLTW SkillSkill

Reading File Types and Extensions

A file's extension — the letters after the last dot in its name — tells you (and your operating system) what kind of file it is and what program should open it. Extensions can be faked or hidden, which is exactly why security professionals learn to look past the extension and actually inspect a file's contents when something seems off.

🗂️ File Type Explorer — click each group
.docx / .pdf / .txt
Text and formatted content — most are human-readable if opened in the right program, or even a plain text editor for .txt.
⚠️An adversary can rename a malicious executable to look like a harmless document — for example, disguising an .exe as something that appears to be a .pdf. Windows can also be configured to hide known file extensions by default, which makes this trick more convincing than it should be. Always check what a file actually is, not just what its name claims.
PLTW SkillSkill

Zip Extraction and Finding Hidden Files

Archives like .zip files bundle multiple files into one compressed container — useful for sharing, but also a common place for adversaries to bury something they'd rather you not notice right away. Extracting an archive unpacks it back into its original files so you can actually inspect what's inside.

1
Locate the archive
Find the .zip or .rar file in the file system.
2
Extract it
Unpack the archive into its own folder.
3
Show hidden items
Toggle the file system's hidden-files setting on.
4
Inspect everything
Open each extracted file and confirm what it actually is.
💡Windows can hide files and folders by simply flagging them as "hidden" — no encryption, no real protection, just an attribute that keeps them out of the default view. That's why "show hidden items" is one of the first things worth checking when a file seems to be missing rather than actually deleted.
5.1.A.1Concept

The One AP Concept: Unencrypted Files Are Readable

Here's the entire idea in one sentence: an adversary can read any unencrypted file if they have access to the device or drive storing it. No password cracking, no exploit, no cleverness required — if the file itself isn't protected, reaching the device is the same as reaching the data.

Unencrypted
Plaintext, human-readable the moment it's opened. Device access = data access.
Encrypted
Scrambled without the key. Device access alone isn't enough anymore.
🔑This is why encrypting a sensitive file is worth doing even on a device you trust: trust in a device today doesn't guarantee that device is never lost, stolen, or compromised later. Encryption is the safeguard that still holds even when that assumption fails.
← Back to Activity 1.2.2Next: Activity 1.2.3 →Process Management.