offensive-tools/osint/maigret/SKILL.md
Build a dossier on a person from a single username: searches 2800+ sites, extracts profile data (name, bio, location, linked accounts), and generates HTML/PDF/CSV reports. Use for deep-dive personal OSINT when you need more than a URL list — extracts actual profile content, detects linked usernames, and correlates identity across platforms.
npx skillsauth add aeondave/malskill maigretInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Username dossier builder — 2800+ sites, profile data extraction, identity correlation.
pip install maigret
# Basic search
maigret username
# Search with HTML report
maigret username --html
# Limit to top N sites (faster)
maigret username --top-sites 500
# Search multiple usernames
maigret username1 username2
| Flag | Purpose |
|------|---------|
| --top-sites <n> | Search only top N sites by Alexa rank |
| --html | Generate HTML report |
| --pdf | Generate PDF report |
| --csv | CSV output |
| --json | JSON output |
| --timeout <n> | Per-site timeout (default: 30s) |
| --retries <n> | Retries per site |
| --proxy <url> | Use proxy |
| --tor | Route via Tor |
| -a | All sites (no limit) |
| --parse-url <url> | Extract username from profile URL |
| --self-check | Test site database integrity |
| --tags <tags> | Filter by site tags (e.g. social, dating, gaming) |
Deep profile investigation:
maigret johndoe --html --pdf --top-sites 1000
# Opens report in browser; PDF for reporting
Fast sweep (quick wins):
maigret johndoe --top-sites 200 --timeout 10
Tagged category search:
# Social media only
maigret johndoe --tags social
# Dating sites (for social engineering intel)
maigret johndoe --tags dating
# Gaming platforms
maigret johndoe --tags gaming
Extract username from a known profile URL:
maigret --parse-url https://twitter.com/johndoe
# Auto-extracts "johndoe", runs full search
Via Tor (opsec):
# Start tor first
sudo service tor start
maigret johndoe --tor --top-sites 500
Multiple username variants (pipeline):
for user in johndoe john.doe john_doe jdoe83; do
maigret "$user" --csv --top-sites 300 2>/dev/null
done
| | maigret | sherlock | |--|---------|---------| | Sites | 2800+ | 400 | | Profile data | Extracts name/bio/location | URL only | | Linked accounts | Detects aliases | No | | Reports | HTML/PDF/CSV | TXT/JSON/CSV | | Speed | Slower | Fast | | Best for | Deep investigation | Fast initial sweep |
Recommended workflow: sherlock for fast sweep → maigret on confirmed usernames.
# Accounts found (from JSON report)
cat maigret_johndoe.json | jq '.sites | to_entries[] | select(.value.status == "Claimed") | {site: .key, url: .value.url}'
# Extracted personal data
cat maigret_johndoe.json | jq '.sites | to_entries[] | select(.value.extracted_data != null) | {site: .key, data: .value.extracted_data}'
| File | When to load |
|------|--------------|
| references/dossier.md | Report interpretation, linked account correlation, data extraction patterns |
data-ai
Scoped routing: Linux operator; hosts, sessions, users, services, packages, logs, containers, SSH, network paths, privilege evidence.
development
Offensive methodology for ICS/OT/SCADA environments in authorized industrial penetration testing and red team operations. Use when assessing PLCs, RTUs, HMIs, engineering workstations, historians, or field devices running Modbus, DNP3, EtherNet/IP, S7comm/S7+, Profinet, IEC 60870-5-104, BACnet, or OPC-UA. Covers passive OT network enumeration, protocol-level device interrogation, PLC coil/register read-write attacks, HMI session exploitation, historian and engineering workstation compromise, and safe escalation rules for critical infrastructure scope. Does not cover: general IT network exploitation (network-technique), physical hardware interfaces UART/JTAG/SPI (hardware-technique), wireless sensor network attacks (wireless-technique), RF/SDR signal analysis (hardware-ctf or wireless-technique), or CTF-framed ICS lab tasks (ics-ctf).
tools
Offensive methodology for authorized game security assessments, game client security research, and game-adjacent penetration testing in real-world engagements. Use when assessing game clients for cheating vulnerabilities, testing anti-cheat effectiveness, auditing game server protocols for score manipulation or economic fraud, reverse engineering game DRM or license validation, analyzing game save file protection, or assessing game mod/plugin security. Covers: process memory scanning and manipulation (Cheat Engine methodology), game binary reversing for license and DRM bypass, game network protocol analysis and packet replay, anti-cheat mechanism analysis, save file format reversing and tampering, speed hack and value injection techniques. Does NOT cover: CTF game challenges (game-ctf), game engine source code auditing (web-exploit-technique or vuln-search-technique for the backend), or general binary exploitation (pwn-ctf or reversing-technique).
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.