CTFtimeEasyOSINT50 pts

Google Me

cyberhub2024-03Original source

Overview

OSINT challenge involving researching a fictional person across social media platforms, GitHub, and public records to piece together hidden information.

OSINTSocial Media InvestigationGoogle DorkingMetadata Analysis

01Reconnaissance

Every engagement starts with mapping what is reachable. A full service scan of Google Me highlighted the exposed surface and pointed at osint as the most promising entry point.

Enumeration is deliberately exhaustive here — the goal is to leave no service unexamined before committing to an attack path.

nmap — service discovery
$ nmap -sC -sV -oN nmap/initial 10.10.11.42
PORT     STATE SERVICE  VERSION
22/tcp   open  ssh      OpenSSH 8.9p1 Ubuntu
80/tcp   open  http     nginx 1.18.0
$ echo "10.10.11.42 googleme.htb" | sudo tee -a /etc/hosts
$ gobuster dir -u http://googleme.htb -w /usr/share/wordlists/dirb/common.txt -q
/login                (Status: 200)
/api                  (Status: 401)

02Exploitation

Public records tied the handle to an email, and that email to the account holding the flag.

In this osint challenge that translated into a repeatable foothold. OSINT challenge involving researching a fictional person across social media platforms, GitHub, and public records to piece together hidden information.

investigation — pivoting on public data
$ sherlock target_handle
$ theHarvester -d target.com -b all
$ exiftool downloaded_image.jpg | grep -i gps

03Flags

The flag is recovered directly from the solved challenge.

flags
$ cat flag.txt
flag{redacted_for_this_writeup}

Commands are illustrative of the technique and platform, not a live exploit against a specific target. Follow the original source link for the authoritative walkthrough.