Saintgram is a Python tool that allows you to fetch Instagram user information, including obfuscated emails and phone numbers, as well as follower and following lists.
- Retrieve basic account information, such as username, ID, follower count, and more.
- Fetch obfuscated email addresses and phone numbers.
- List followers and following accounts with contact information.
- Supports command-line interface.
The tool requires the user to be friends with the victim account or public target account in order to fetch any private or sensitive data, including followers, following lists, obfuscated emails, and phone numbers.
- Clone the repository:
:git clone https://github.com/joe444-pnj/saintgram.git :cd saintgram
- Install the required packages:
pip install -r requirements.txt
- Retrieving User Information: To retrieve basic user information like username, ID, followers, following count, and obfuscated contact details (if available), use the -i option:
python saintgram.py -s <sessionID> -u <username> -o i
Example:
python saintgram.py -s 1234567890%3aABCDEF%3a1234567890 -u johndoe -o i
This command retrieves and displays user information for the Instagram account with the username johndoe.
- Listing Followers: To list followers of a specific user:
python saintgram.py -s <sessionID> -u <username> -o f
Example:
python saintgram.py -s 1234567890%3aABCDEF%3a1234567890 -u johndoe -o f
This command retrieves the followers of johndoe and displays their information, including any public contact details.
- Listing Following Accounts: To list the accounts that a user is following:
python saintgram.py -s <sessionID> -u <username> -o w
Example:
python saintgram.py -s 1234567890%3aABCDEF%3a1234567890 -u johndoe -o w
This command retrieves the first 50 accounts that johndoe is following.