The Instagram OSINT Tool gets a range of information from an Instagram account that you normally wouldn't be able to get from just looking at their profile. This repository has been archived.
The information includes:
- Username
- Profile Name
- URL
- Followers
- Following
- Number of Posts
- Bio
- Profile Picture URL
- Is Business Account?
- Connected to a FB account?
- External URL
- Joined Recently?
- Business Category Name
- Is private?
- Is Verified?
- Downloads Public Photos
Note: You must use python3.6 or greater due to the use of "f" strings
pip3 install -r requirements.txt
python3 main.py --username USERNAME
Please note that InstagramOSINT.py is for importing as python module, this is for use in custom applications and not to be run from the command line
The output format is a dict/json inside of a txt file in the directory created for the profile that you scanned
This is useful when trying to apply this codebase to any projects. The API is really simple to use and uses python features to make it easier to use such as indexing
Examples:
from InstagramOSINT import *
instagram = InstagramOSINT(username='USERNAMEHERE')
print(instagram.profile_data)
print(instagram['Username'])
instagram.print_profile_data()
instagram.save_data()
instagram.scrape_posts()
I am not responsible for anything you do with this tool that could be considered illegal. Do not break the law!