Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Email Osint

ASecurity

Pivot an email or username to identity and accounts.

2 stars
0 votes
0 copies
0 views
Added 9/19/2026
content-marketingrustgobashgitapi

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add harezadmm/hermes-brutal-mod --skill email-osint --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Email Osint?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Email Osint
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/harezadmm-email-osint/badge)](https://www.skillsdirectory.com/skills/harezadmm-email-osint)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: email-osint
description: Pivot an email or username to identity and accounts.
version: 1.0.0
tags: [osint, email, gravatar, username-enumeration, reconnaissance]
---

# Email & Username OSINT

Pivot from a single email address (or username) to real-world identity: full name, avatar photo, linked accounts across platforms. All checks are curl-based, no API keys required for the core workflow.

## When to use
- User gives an email and wants to know what identity/accounts are attached to it
- User gives a username and wants a platform sweep
- Verifying whether an account exists on a specific platform

## Procedure

### 1. Gravatar first — highest-yield pivot
Most people don't know WordPress/Gravatar auto-creates a public profile from their email. One email → name + username + photo:

```bash
HASH=$(echo -n "target@example.com" | md5sum | cut -d' ' -f1)
# Profile JSON (404 = no account, 200 = account exists)
curl -s "https://www.gravatar.com/$HASH.json"
# Full vCard (name, URLs, timezone, base64 photo)
curl -s "https://www.gravatar.com/$HASH.vcf"
# Avatar image
curl -s "https://www.gravatar.com/avatar/$HASH?s=200" -o avatar.jpg
```

Run this BEFORE anything else. If it hits, you get the target's name and probable username for free — that username drives every later step. Also try the SHA256 hash of the email (newer Gravatar accounts).

### 2. Derive the username, then sweep platforms
The local part of the email is usually the username everywhere. Check each platform with curl, but see the verification pitfall below before trusting any result:

```bash
UA="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
for url in \
  "https://api.github.com/users/USER" \
  "https://gitlab.com/api/v4/users?username=USER" \
  "https://www.pinterest.com/USER" \
  "https://steamcommunity.com/id/USER" \
  "https://www.youtube.com/@USER" \
  "https://dev.to/USER" "https://replit.com/@USER" \
  "https://huggingface.co/USER" "https://www.chess.com/member/USER"; do
  code=$(curl -sL -A "$UA" -o /tmp/page.html -w '%{http_code}' "$url")
  echo "$code $url"
done
```

Platform-specific notes, decision table, and verification grep patterns: see `references/platform-verification.md`.

### 3. Pivot on partial names
Gravatar/display names often carry a middle name fragment the username doesn't (e.g. full name "Hariz Fauzil Adhim" → username "harizadhim760" → middle fragment "adhim"). Use name fragments as alternate search keys for platforms where the primary username missed.

### 4. Cross-confirm hits
A hit is only confirmed when two independent signals agree. GitLab is the strongest cross-check: its API returns `avatar_url` pointing at `secure.gravatar.com/avatar/<sha256-of-email>` — if that hash matches the original email's hash, the account is provably tied to that email.

### 5. Report format
Present results in three buckets — CONFIRMED (verified page content), NOT FOUND (verified absent), INCONCLUSIVE (login wall / bot-blocked — say so honestly, don't guess). For the user's own footprint, include the remediation pointer (gravatar.com profile deletion/privacy, platform privacy settings).

## Pitfalls

- **HTTP status codes lie.** Instagram, Twitch, Pinterest and others return 200 for nonexistent profiles. Never conclude "exists" from a status code alone — grep the page content for the profile name/title tag. See `references/platform-verification.md`.
- **Follow redirects** (`curl -L`). Platforms commonly 301 to www or regional hosts; judging the bare 301 as "gone" produces false negatives.
- **HIBP breach checks require a paid API key** — plain curl gets 401. Don't burn turns retrying; state it needs a key.
- **Reddit blocks scripted /about.json fetches.** Mark Reddit inconclusive rather than retrying without a browser session.
- Prefer no-auth JSON APIs (GitHub `api.github.com/users/X`, GitLab `gitlab.com/api/v4/users?username=X`) over HTML scraping — cleaner signal, no login wall.

Attribution

harezadmmharezadmm
View sourceMore from harezadmm →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Postiz

Postiz is a tool to schedule social media and chat posts to 28+ channels X, LinkedIn, LinkedIn Page, Reddit, Instagram, Facebook Page, Threads, YouTube, Google My Business, TikTok, Pinterest, Dribbble, Discord, Slack, Kick, Twitch, Mastodon, Bluesky, Lemmy, Farcaster, Telegram, Nostr, VK, Medium, Dev.to, Hashnode, WordPress, ListMonk

21281 votes

Serp Analysis

SERP analysis techniques for intent classification, feature identification, and competitive intelligence. Use when analyzing search results for content strategy.

2831 votes

On Page Seo Auditor

This skill performs detailed on-page SEO audits to identify issues and optimization opportunities. It analyzes all on-page elements that affect search rankings and provides actionable recommendations.

1821 votes

Brand

Brand voice, visual identity, messaging frameworks, asset management, brand consistency. Activate for branded content, tone of voice, marketing assets, brand compliance, style guides.

1240080 votes

Release Announcement

Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.

798220 votes
View all in content-marketing →