Maigret
Collect a dossier on a person by searching usernames across thousands of sites
Recon & OSINT10 commands
#osint#username#social#recon#investigation
Installation
1Install using pip
2Clone from GitHub
3Verify installation
# Using pip
pip install maigret
# From source
git clone https://github.com/soxoj/maigret.git
cd maigret
pip install -r requirements.txt
# Verify
maigret --helpBasic Usage
Search for a username across thousands of websites
# Search single username
maigret username
# Save HTML report
maigret username --html report.html
# Search with all sites
maigret username --all
# Input from file
maigret --usernames-file users.txt
# With timeout and retries
maigret username --timeout 10 --retries 2Command Reference
10 commands
1Save results as HTML report
--html2Use all available sites
--all3Request timeout in seconds
--timeout4Number of retries on failure
--retries5Input file with usernames
--usernames-file6Export results as PDF
--pdf7Export results as CSV
--csv8Use only top N sites
--top-sites9Disable recursive search
--no-recursion10JSON output format
--jsonWhen to Use
1
OSINT investigations and reconnaissance2
Social media account discovery3
Finding all profiles of a target username4
Digital footprint analysis5
Threat intelligence gatheringNotes & Tips
1
Checks 2500+ websites for username presence2
Generates detailed HTML reports with screenshots3
Supports recursive search for related usernames4
Can be used offline with a local site list5
Regularly updated with new site supportCommon Errors & Solutions
Too many requests / rate limiting
Reduce concurrency or add delays between requests
No results found
Try with --all flag to include all sites, or check username spelling
Connection timeout
Increase timeout with --timeout and check your internet connection