https://github.com/anotherhadi/gravatar-recon
Retrieve and aggregate public OSINT data from Gravatar. Given an email address, the tool queries the Gravatar API and extracts useful information such as profile metadata, avatar, social accounts, and contact info.
https://github.com/anotherhadi/gravatar-recon
gravatar osint osint-tool recon
Last synced: 17 days ago
JSON representation
Retrieve and aggregate public OSINT data from Gravatar. Given an email address, the tool queries the Gravatar API and extracts useful information such as profile metadata, avatar, social accounts, and contact info.
- Host: GitHub
- URL: https://github.com/anotherhadi/gravatar-recon
- Owner: anotherhadi
- License: mit
- Created: 2025-09-24T15:01:23.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2025-09-25T17:15:25.000Z (22 days ago)
- Last Synced: 2025-09-25T19:29:35.421Z (22 days ago)
- Topics: gravatar, osint, osint-tool, recon
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Gravatar-Recon ๐ค
- [๐งพ Project Overview](#-project-overview)
- [๐ Features](#-features)
- [โ ๏ธ Disclaimer](#%EF%B8%8F-disclaimer)
- [๐ฆ Installation](#-installation)
- [๐งช Usage](#-usage)
- [๐ก Examples](#-examples)
- [๐ค Contributing](#-contributing)## ๐งพ Project Overview
Retrieve and aggregate public **OSINT data from Gravatar**. Given an **email
address**, the tool queries the Gravatar API and extracts useful information
such as profile metadata, avatar, social accounts, and contact info.## ๐ Features
- Export results to JSON
- Fetch avatar directly
- Extract profile metadata:
- Display name, bio, location, job, company
- Public emails
- Phone numbers
- Contact forms, calendars
- Enumerate linked accounts (Twitter, GitHub, Mastodon, etc.)
- Parse profile background colors and styles## โ ๏ธ Disclaimer
This tool is intended for **educational purposes only**. Use responsibly and
ensure you have permission to access the data you are querying.## ๐ฆ Installation
### With Go
```bash
go install github.com/anotherhadi/gravatar-recon@latest
```### With Nix/NixOS
Click to expand
**From anywhere (using the repo URL):**
```bash
nix run github:anotherhadi/gravatar-recon -- [--flags value] target_email
```**Permanent Installation:**
```bash
# add the flake to your flake.nix
{
inputs = {
gravatar-recon.url = "github:anotherhadi/gravatar-recon";
};
}# then add it to your packages
environment.systemPackages = with pkgs; [ # or home.packages
inputs.gravatar-recon.defaultPackage.${pkgs.system}
];
```## ๐งช Usage
```bash
gravatar-recon [--flags value] target_email@example.com
```### Flags
```txt
-j, --json string Write results to specified JSON file
-s, --silent Suppress all non-essential output
-a, --print-avatar Show the avatar in the output
```## ๐ก Examples
```bash
gravatar-recon myemail@gmail.com
gravatar-recon myemail@gmail.com --json output.json
```## ๐ค Contributing
Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for details.