root@thehacksparrow:~/writeups$ SYSTEM ONLINE
root@sparrow:~/writeups$ cat operation-slither.md
// Blue Team & SOC

Operation Slither

25 Nov 2024 · 8 min read · user access
OverviewOperation Slither is an Easy TryHackMe room of the OSINT / SOCMINT kind: starting from a single handle leaked on a forum, we rebuild the social graph of a fictional threat group (Sneaky Viper) and attribute its three operators by pivoting across platforms (Threads, Instagram, SoundCloud, GitHub). Each pivot ends in a hidden flag — usually a Base64 string — and shows how open-source intelligence and OPSEC slips let you deanonymise an actor.
PlatformTryHackMe
CategoryBlue Team & SOC (OSINT / SOCMINT)
DifficultyEasy
RoomOperation Slither
Methodology: the whole investigation relies on open-source intelligence. The recurring technique is handle reuse: the attackers use the same alias across several platforms, which lets us correlate accounts and, by following conversations and links, pivot from one to the next until we find the leaked datum.

Task 1 — The Leader

The starting point is a hacker-forum post advertising leaked company data. The only actionable item is a username:

@v3n0mbyt3_

Handle enumeration. We search the alias across search engines and username lookup engines, aiming to find where the user is active, not merely where an account exists. Attackers tend to reuse the same handle across platforms.

v3n0mbyt3_ social media
"v3n0mbyt3_" profile
Why: tools like sherlock or whatsmyname, or simple Google dorks, cross-reference an alias against dozens of platforms. What matters is not the account's mere existence but its recent activity (posts, replies, conversations).
Beyond the room: Sherlock and WhatsMyName are real, actively maintained open-source projects, not room fiction. Sherlock checks a handle against several hundred sites in one pass; WhatsMyName relies on a community-curated database of per-site fingerprints (the exact "exists" vs. "not found" response for each platform). Neither tool confirms identity on its own — they only shortlist where to look, a human still has to verify the hits actually belong to the same person.

The alias shows up on several platforms, but one stands out for recent activity and casual posting: Threads (alongside Twitter/X).

Q: Aside from Twitter / X, what other platform is used by v3n0mbyt3_?
A: threads

Profile analysis. On Threads we review posts, replies and, above all, the comment threads: sensitive data usually leaks in replies, not in the main post. Inside a thread with another user we spot a long, high-entropy string that looks like Base64:

VEhNe3...

We decode it with a Base64 decoder (CyberChef or the command line):

echo 'VEhNe3...' | base64 -d

The output is a valid TryHackMe-format flag.

Q: What is the value of the flag?
A: THM{sl1th3ry_tw33tz_4nd_l34ky_<REDACTED>}

🔒 Free account required

This is USER ACCESS content — free to unlock, no payment. The rest of the write-up (and everything else at this level) opens up once you're signed in.

Create a free account