OSINT Training Playground

SecretCorp - a fictitious company built to teach OSINT.

Welcome. SecretCorp is a deliberately leaky, made-up company created by Omar Santos to help you learn Open Source Intelligence (OSINT) and passive reconnaissance the way real analysts and ethical hackers do it - one breadcrumb at a time.

Your job: enumerate the subdomains, decode the clues, follow the trail, and discover what SecretCorp doesn't want public. Nothing here is real - but every technique you will use is.

The Challenge

Find the hidden lab guide.

The first clue is right here, in plain sight. Real OSINT often starts with something obvious that most people walk past.

Decode this string

Are you familiar with Base64? Use your favorite tool (or the one below) to decode the value and follow it.

aHR0cHM6Ly9zZWNyZXRjb3JwLm9yZy9oaW50cw==
(decoded value appears here)

Tip: in a terminal you can run echo "...string..." | base64 -d.

Hunt the subdomains

SecretCorp has several subdomains. Find them all using only public sources - no scanning, no brute force.

  • Certificate Transparency (crt.sh, censys.io) to surface issued certs.
  • DNS enumeration via public resolvers (dig, dnsx, amass).
  • Search operators like site:secretcorp.org in your favorite engine.
  • Wayback Machine and archive snapshots for forgotten content.

When you find the lab guide, you will get a checklist of what to look for next.

Techniques you'll practice

Passive recon, without ever touching the target.

Every card below maps to a real-world skill used by ethical hackers, threat intel analysts, and defenders.

Subdomain discovery

Use Certificate Transparency, DNS, and search engines to map an organization's public footprint.

crt.shamasssubfinder

Email harvesting

Find published email addresses, naming conventions, and points of contact for targeted phishing tests.

theHarvesterhunter.io

Google dorking

Craft search operators that surface configs, indexes, exposed docs, and information leaks.

site:filetype:intitle:

Metadata analysis

Inspect images, PDFs, and Office docs for authors, GPS coordinates, software, and editing history.

exiftoolFOCAmetagoofil

Internet-wide search

Query continuously-scanned datasets to find exposed services, banners, and weak configurations.

ShodanCensysZoomEye

People & social intel

Build org charts from public profiles, conference talks, and code commits without engaging the target.

LinkedInGitHubSpiderFoot
Mini examples

Try these commands as you hunt.

Real OSINT analysts live in the terminal. These short snippets are everything you need to begin.

List subdomains from Certificate Transparency

Every TLS certificate ever issued for a domain is publicly logged. crt.sh is a free, queryable mirror.

curl -s 'https://crt.sh/?q=%25.secretcorp.org&output=json' \
  | jq -r '.[].name_value' \
  | tr ',' '\n' | sort -u

Resolve and probe what you found

Take a list of names and see which are alive (without aggressive scanning).

cat subdomains.txt | dnsx -silent -a -resp-only
cat subdomains.txt | httpx -silent -title -status-code

Google dork the target

Look for exposed documents, login portals, and forgotten subdirectories.

site:secretcorp.org filetype:pdf
site:secretcorp.org inurl:admin
site:secretcorp.org intitle:"index of"
"@secretcorp.org" -site:secretcorp.org

Strip metadata from a downloaded file

A single PDF or image can leak the author, software version, and even GPS coordinates.

exiftool report.pdf
exiftool -a -G1 -s photo.jpg

Search Shodan for exposed services

Find banners and open ports without ever sending a packet to the target yourself.

shodan search 'hostname:secretcorp.org'
shodan search 'ssl:"secretcorp"'
shodan host <ip>

Decode a Base64 breadcrumb

You will see encoded strings everywhere - in HTML comments, tweets, paste sites, even URLs.

echo "aHR0cHM6Ly9zZWNyZXRjb3JwLm9yZy9oaW50cw==" | base64 -d
# → https://secretcorp.org/hints
Keep learning

More training from Omar Santos.

If you enjoy this challenge, here are the resources I maintain and update most often.

AI & Cybersecurity Training

My curated hub of live trainings, books, video courses, and labs covering AI security, ethical hacking, DFIR, and more.

ai-cyber-training.com

Omar's GitHub Repo

Thousands of resources on ethical hacking, bug bounty hunting, AI security, exploit dev, reverse engineering, and DFIR.

hackerrepo.org

WebSploit Labs

A hands-on learning environment with intentionally vulnerable apps, Kali/Parrot tooling, and 500+ exercises.

websploit.org

Hacking Scenarios

Cloud-based labs - nothing to install. Practice OSINT, web attacks, and incident response in a real browser.

hackingscenarios.com

Becoming a Hacker

My personal blog with deep-dives on offensive security, tooling, and applied AI for cyber defenders.

becomingahacker.org

CertSPY

A tool I built to extract useful information from Certificate Transparency records - perfect for subdomain enumeration.

Read the intro

Built by Omar Santos

I am a cybersecurity author, educator, and active researcher. I built SecretCorp so newcomers (and veterans) can practice OSINT in a safe, legal, and surprisingly fun way. If you enjoy this, check out ai-cyber-training.com and hackerrepo.org.

One rule

OSINT works on publicly available information. The techniques on this site must always be used ethically and within the law. Practice on SecretCorp, on bug bounty scopes, on your own assets - never on targets you don't have permission to test.