オシントグラムは、偵察を収集、分析、実行するためのInstagramのOSINTツールです。
免責事項:教育目的のみ!投稿者は、このツールの使用について一切の責任を負いません。
警告:このツールを使用するときは、自分の/プライマリアカウントを使用しないことをお勧めします。
Osintgramは、ニックネームでユーザーのInstagramアカウントで分析を実行するためのインタラクティブなシェルを提供します。あなたは得ることができます:
- addrs Get all registered addressed by target photos
- captions Get user's photos captions
- comments Get total comments of target's posts
- followers Get target followers
- followings Get users followed by target
- fwersemail Get email of target followers
- fwingsemail Get email of users followed by target
- fwersnumber Get phone number of target followers
- fwingsnumber Get phone number of users followed by target
- hashtags Get hashtags used by target
- info Get target info
- likes Get total likes of target's posts
- mediatype Get user's posts type (photo or video)
- photodes Get description of target's photos
- photos Download user's photos in output folder
- propic Download user's profile picture
- stories Download user's stories
- tagged Get list of users tagged by target
- wcommented Get a list of user who commented target's photos
- wtagged Get a list of user who tagged target
You can find detailed commands usage here.
Latest version |
Commands |
CHANGELOG
FAQ
-
Can I access the contents of a private profile? No, you cannot get information on private profiles. You can only get information from a public profile or a profile you follow. The tools that claim to be successful are scams!
-
What is and how I can bypass the
challenge_required
error? The challenge_required
error means that Instagram notice a suspicious behavior on your profile, so needs to check if you are a real person or a bot. To avoid this you should follow the suggested link and complete the required operation (insert a code, confirm email, etc)
⚙️
Installation
-
Fork/Clone/Download this repo
git clone https://github.com/Datalux/Osintgram.git
-
Navigate to the directory
cd Osintgram
-
Create a virtual environment for this project
python3 -m venv venv
-
Load the virtual environment
- On Windows Powershell:
.\venv\Scripts\activate.ps1
- On Linux and Git Bash:
source venv/bin/activate
-
Run
pip install -r requirements.txt
-
Open the
credentials.ini
file in the config
folder and write your Instagram account username and password in the corresponding fields
Alternatively, you can run the
make setup
command to populate this file for you.
-
Run the main.py script in one of two ways
- As an interactive prompt
python3 main.py <target username>
- Or execute your command straight away
python3 main.py <target username> --command <command>
Use Osintgram v2 (beta)You can use Osintgram2 beta just switching to
v2
branch.
The v2 has some improvements and faster with a new command execution interface. Try it just running git checkout v2
.
🐳
Docker Quick Start This section will explain how you can quickly use this image with
Docker
or Docker-compose
.
PrerequisitesBefore you can use either
Docker
or Docker-compose
, please ensure you do have the following prerequisites met.
-
Docker installed - link
-
Docker-composed installed (if using Docker-compose) - link
-
Credentials configured - This can be done manually or by running the
make setup
command from the root of this repo
Important: Your container will fail if you do not do step #3 and configure your credentials
DockerIf docker is installed you can build an image and run this as a container.
Build:
docker build -t osintgram .
Run:
docker run --rm -it -v "$PWD/output:/home/osintgram/output" osintgram <target>
<target>is the Instagram account you wish to use as your target for recon.
-iflag enables an interactive terminal to use commands within the container. docs
-vflag mounts a volume between your local filesystem and the container to save to the
./output/folder. docs
--rmflag removes the container filesystem on completion to prevent cruft build-up. docs
-tflag allocates a pseudo-TTY which allows colored output. docs
docker-compose
You can use the
docker-compose.ymlfile this single command:
docker-compose run osintgram <target>
Where
targetis the Instagram target for recon.
Alternatively you may run
docker-composewith the
Makefile:
make run- Builds and Runs with compose. Prompts for a
targetbefore running.
For ease of use with Docker-compose, a
Makefilehas been provided.
Here is a sample work flow to spin up a container and run
osintgramwith just two commands!
make setup- Sets up your Instagram credentials
make run- Builds and Runs a osintgram container and prompts for a target
Sample workflow for development:
make setup- Sets up your Instagram credentials
make build-run-testing- Builds an Runs a container without invoking the
main.pyscript. Useful for an
itDocker session for development
make cleanup-testing- Cleans up the testing container created from
build-run-testing
To use the development version with the latest feature and fixes just switch to
developmentbranch using Git:
git checkout development
and update to last version using:
git pull origin development
To update Osintgram with the stable release just pull the latest commit using Git.
git checkout master
git pull origin master
You can propose a feature request opening an issue or a pull request.
Here is a list of Osintgram's contributors: