Maigret collects a dossier (basically, a report) for a specified username, checking for accounts on a huge number of sites and gathering all the available information from web pages.
You'll see information for each individual website for which there is a match and a short summary at the end.
Individual Website Report 👇
Short Summary👇
You'll see the same information as in the terminal, but displayed in document form. Below is an example of a .pdf generated by maigret.
Many of the code examples below included either '!'or '&&shell'. They are included purely for use in Jupyter Notebooks and are not required if you are running these commands on your computer at home.
You can install maigret using 'pip', a package installer for Python
Run the following code snippet to install maigret:
!pip install maigret
!maigret trump123
You will enter your command in the following format:
maigret <username_1> <username_2> ... <username_3>
Run the following command to see how to query multiple usernames:
!maigret trump123 trumpfan makeamericagreatagain
maigret <username> --<output_type_1> --<output_type_2> ... --<output_type_8>
Possible output type flags: --pdf
, --html
, --xmind
, --csv
, --txt
, --json
, --ndjson
--ndjson
is the only unique option and tells maigret to generate an individual JSON report for each of the multiple usernames that are simulataneously queried.
If using Google Colab, a folder called "reports" will automatically be created and the reports will be available in this folder.
To see how to generate reports, run the following code which will generate a .pdf, .html, and .csv version of your username dossier.
!maigret trump123 --pdf --html --csv
By default, any file-based reports that you generate will be stored in a "reports" folder. This folder will be created even if it doesn't already exist.
To output your file at a specific location in your folder, enter your command in the following format:
maigret <username_1> --<output_type> --folderoutput <file_path>
Here is an example:
!maigret trump123 --pdf --folderoutput cool_files/pdfs
Generally, your command will take one of the following formats:
maigret <username> --tags <tag>
maigret <username> --tags <tag_1>,<tag_2>,...,<tag_n>
tags
🏁¶You can use tags to focus your search on sites in a specific language or with a userbase in a specific country.
Here's an example of how to query sites either written in Japanese or related to Japan for information on a username:
!maigret trump123 --tags jp
Optionally, you could also query multiple country codes. The following is an example of how to query both Japan- and US-linked sites.
!maigret trump123 --tags jp,us
Scroll down to the "Current Codes" section on this page for all the possible country codes.
tags
¶These are mostly tags for online community forums (they mainly correspond to sites either in Russia or with a largely Russian-speaking userbase).
!maigret trump123 --tags uCoz
Some common site engines include: uCoz, vBulletin, phpBB, XenForo, and Discourse.
tags
¶You can use tags to focus your search on sites that correspond to a specific topic, genre, or interest.
Here's an example of how to query sites related to dating and politics:
!maigret trump123 --tags dating,politics
Other possible subject tags include: forum, gaming, dating, politics, porn, photo, sharing, blog, tech, freelance, video, news, art, music, finance, discussion, coding, messaging, writing, geosocial, networking, freelance, maps, documents
Below an example of how we can query dating sites in Japan for our username. The format is the same as previous examples of using tags, but in this example we are mixing different types of tags:
!maigret trump123 --tags dating,jp
!maigret trump2016 -a
Using the command below, you can use maigret to gather information on a username from one website. This website should be from one of the 3000 websites in the list linked in the 2 sections above.
!maigret trump2016 --site Facebook
With this functionally, you can paste the URL of a user profile and execute a search based on the information in the profile.
Enter your command in the following format:
maigret --parse <profile_url>
Maigret will parse this profile to find a username and then use that username to query 500 of the top sites in the list referenced above.
Below is an example where maigret analyzes and executes a search based on a Steam profile:
!maigret --parse https://steamcommunity.com/profiles/76561199113454789
If using maigret on your own computer:
If using maigret in a Jupyter Notebook, it really depends on the machine hosting your Jupyter Notebook and whether that machine can make a request using a VPN. If not, you may simply have to wait for a time period determined by the website that's rate limiting you.
You can combine tags and any related parameters in any order you want. The usernames come first and then all the other --parameters should follow.
Here's an example of running a query on multiple usernames against websites in Japan, and exporting the results to a .csv file.
!maigret trump123 trump_lover --tags jp --csv
Here's an example of running a query on all possible sites (3000) for a username and outputting the result to both a pdf and csv.
!maigret trump123 -a --csv --pdf