Last updated: April 26, 2026
Discord has become a significant platform for cybercriminal activity — particularly by younger threat actors, gaming-adjacent fraud, and Lapsus$-style social engineering. While Telegram dominates Russian-speaking cybercrime, Discord dominates English-speaking and gamer-adjacent threat actors. This article covers Discord OSINT for security investigations.
The platform
Discord uses servers (organisations), each containing channels. Servers are accessible by invite link or via Discord’s public server discovery. Most cybercrime activity happens in private servers with vetted membership.
Discovery
- disboard.org — public Discord server directory
- Search engines —
site:discord.comorsite:disboard.org+ keywords - Telegram and forum cross-references — Discord invite links shared on Telegram and forums
What you find on Discord
- Cracked / Hax communities — gaming-cheat distribution, account-stealer malware, RaaS promotion
- Carding communities — younger demographic; less sophisticated than Telegram counterparts
- Lapsus$-style social engineering — recruitment of insiders (“$50K for VPN credentials at <company>”)
- Stresser / DDoS-for-hire services — booter promotion
- Stolen-content trading — leaked databases, OnlyFans / Patreon scrapes
- OSINT communities — legitimate research communities investigating threat actors
Investigation workflow
- Locate the relevant server via disboard or referral
- Join with sock-puppet Discord account
- Read-only observation; document conversations of interest
- If user-of-interest identified, build profile from username, Discord ID, profile metadata
- Cross-reference Discord username with other platforms (often reused across services)
Discord ID
Every Discord user has a unique numeric ID. The ID encodes a creation timestamp:
# Convert Discord snowflake ID to creation timestamp:
# (id >> 22) + DISCORD_EPOCH (1420070400000)
python3 -c "
import datetime
discord_id = 123456789012345678
ts = ((discord_id >> 22) + 1420070400000) / 1000
print(datetime.datetime.fromtimestamp(ts))
"
Useful for confirming an account is freshly created (sock puppet) vs aged.
Discord username reuse
Many users reuse handles across platforms. Once you have a Discord username, check:
- GitHub for same username
- Twitter / X
- Reddit (often direct username match)
- Steam
- Twitch
- Forums (HackForums, BreachForums, etc.)
Sherlock and similar tools automate cross-platform username search.
Bots and automation
Discord allows bot integrations. Investigators can write bots that:
- Log all messages in a channel to local database
- Alert on keyword matches (your company name, product name, mentioned)
- Track member join/leave
- Identify when a user changes username
Note: Discord ToS allows passive bot observation in servers you’ve joined; active scraping of users you don’t share a server with is restricted.
Lapsus$ lessons
Lapsus$ (2022) recruited insiders via Telegram and Discord — paying $20K+ for VPN access to specific companies. Threat-intel teams should monitor Discord for:
- Mentions of their company name in cybercrime contexts
- Insider-recruitment posts targeting specific employees
- Stolen-credential dumps with employee email patterns
OPSEC
- Sock-puppet account with no personal info
- Discord requires phone verification for many servers; use burner number
- VPN / Tor where investigator anonymity matters
- Don’t initiate conversations; observe
- Don’t link sock-puppet accounts across platforms
The takeaway
Discord OSINT complements Telegram OSINT for English-speaking and younger-demographic cybercrime. The investigative workflow is similar — discovery, sock-puppet, read-only observation, cross-platform attribution. For threat-intel teams covering Indian organisations facing English-speaking actors (Lapsus$-style social engineering, stresser-led DDoS), Discord monitoring is high-value.
Get a free attack-surface review
We check what an attacker would see about your business — leaked credentials, exposed services, dark-web mentions. 30 minutes, no obligation.