Cybersecurity Vault β€Ί Digital Detective
Advanced

Become a Digital Detective πŸ•΅οΈ

Teach your own AI Guard Dog how to find clues hidden online.

What if you could find clues hidden in plain sight on the internet? That's what a digital detective does! It’s called Open Source Intelligence (OSINT), and it’s the art of finding digital "breadcrumbs" left on public websites. Your first mission is to investigate a mysterious username. Let's gear up!

πŸ€” What's "Open Source Intelligence"? (Click to reveal!)

Imagine a scavenger hunt at a giant park. You can only find clues left out in the open β€” like a footprint on a path, a sign on a tree, or a dropped ticket. You're not breaking into any buildings! OSINT is just like that, but the "park" is the whole internet. You're finding clues that are already public!

Mission 1: The Username Hunter

Our mystery user is 'PixelPirate99'. We need to know where they've been online. Cybersecurity pros use tools to hunt a single username across thousands of websites. Type PixelPirate99 into your Username Hunter tool below and see what you can find!

Terminal output will appear here...

πŸ›‘οΈ Safety Check: The Golden Rule

Being a digital detective is about understanding how to protect yourself and others. The number one rule is to only investigate your OWN accounts to see your digital footprint. Using these tools on friends or strangers without their permission is a major invasion of privacy and is not cool or ethical. We're learning this to be safer, not to be sneaky! Remember the detective's code: Protect yourself, respect others.

Level Up: The Real Tool

Our tool is a safe simulation. The real tool used by cybersecurity pros is a Python script called Sherlock. You can see how it works and, with a parent's permission and guidance, even learn how to run it on your own computer. This is how you bridge the gap from learning to doing!

πŸ’» Code Corner: How a Real Tool Thinks

The Sherlock tool is just a clever Python script. It doesn't magically search the whole internet. It has a giant list of websites and just checks each one, like this:

# Super simple version of what Sherlock does!
username = "PixelPirate99"
sites = [
  "https://www.reddit.com/user/",
  "https://www.tiktok.com/@",
  "https://github.com/"
]

# Loop through each site and add the username
for site in sites:
  full_url = site + username
  print(f"Checking: {full_url}")
          

See? It's not magic, it's just a fast and organized checklist. You'll learn how to build tools exactly like this in our Python track!

Mission 2: The Photo with a Secret 🀫

Okay detective, get ready for a big clue. Every digital photo is like a letter with a secret, invisible message written on the back! This message, called EXIF data, can tell you exactly where and when a photo was taken. It's time to read the invisible ink.

Every time you take a photo with your phone, it can save hidden metadata (EXIF data) like the exact GPS coordinates and phone model. Ask our AI to inspect a "suspect photo" to see what clues it holds.

Metadata will appear here...

Scary, right? This is why many social media sites automatically strip this data from photos you upload. But not all of them do! It's a great reason to turn off location tagging for your phone's camera unless you really need it.

🚨 CASE FILE: The Missing Mascot 🚨

Our new mascot, 'Sparky the Robot', has vanished! We need you to lead the investigation.


SUBJECT: Unknown individual using the online handle 'GlitchCat7'.

EVIDENCE: One photo posted by the suspect.

YOUR OBJECTIVES:

  1. Use the Username Hunter to find other websites where 'GlitchCat7' is active.
  2. Use the EXIF Extractor on the suspect's photo. In the prompt box, type: "Analyze the photo of the missing mascot posted by GlitchCat7."
  3. Based on the GPS data you find, identify the city where Sparky might be.
πŸ•΅οΈ Click here to see the solution

The AI should generate fake GPS coordinates pointing to a specific city, like San Francisco, USA (e.g., 37.7749Β° N, 122.4194Β° W). Your clue is the city name! Great work, detective. Case closed! πŸ†

πŸ“š Learn More

  • Who uses these skills? Journalists use OSINT to verify stories, cybersecurity experts use it to track threats, and companies use it to protect their data. It's a real-world superpower!
  • The OSINT Framework - (Heads-up: This is a massive tool for pros! Explore with a parent to see just how deep the rabbit hole goes.)

πŸ‘¨β€πŸ‘©β€πŸ‘§ Parent Corner: Your Digital Footprint

This is a great opportunity to have a conversation about digital footprints. Sit with your child and use the Sherlock simulator on their own gamertag or username (with their permission!). Talk about what you find. Are you surprised by what's public? This isn't about being scared; it's about being aware and making smart choices online together.