推荐一个实用的开源工具——Osintgram。项目由Datalux开发维护,GitHub上获得了 14305 个Star。简单来说,它是一款Osintgram是Instagram上的OSINT工具。它提供了一个交互式外壳,可以通过其昵称对任何用户的Instagram帐户进行分析,对于站长和开发者来说是个不错的工具。
工具功能介绍
Osintgram is an OSINT tool on Instagram to collect, analyze, and run reconnaissance.
Disclaimer: FOR EDUCATIONAL PURPOSE ONLY! The contributors do not assume any responsibility for the use of this tool.$${\color{red}Warning:}$$ It is advisable to not use your own/primary account when using this tool.$${\color{red}Warning:}$$ If you fork the project and add your instagram credentials to you home repository do not upload them to github.
You can disable uploading a certain file by adding it to ignore list.
Tools and Commands 🧰Osintgram offers an interactive shell to perform analysis on Instagram account of any users by its nickname. You can get:
text
- 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_requirederror? Thechallenge_requirederror 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 ⚙️1. Fork/Clone/Download this repogit clone https://github.com/Datalux/Osintgram.git2. Navigate to the directorycd Osintgram3. Create a virtual environment for this projectpython3 -m venv venv4. 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.txt6. Open thecredentials.inifile in theconfigfolder and write your Instagram account username and password in the corresponding fields. Or usehikerapi_tokenfrom https://hikerapi.com/tokens (first 100 requests are free after registration and confirmation of your tg)Alternatively, you can run themake setupcommand to populate this file for you.7. Run the main.py script in one of three ways* As an interactive promptpython3 main.py - Or execute your command straight away
python3 main.py --command Or execute using HikerAPI token via env
HIKERAPI_TOKEN= python3 main.py -c
Use Osintgram v2 (beta)
You can use Osintgram2 beta just switching to v2 branch.
The v2 has some improvements and is 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.
Prerequisites
Before you can use either Docker or Docker-compose, please ensure you do have the following prerequisites met.1. Docker installed - link
- Docker-composed installed (if using Docker-compose) - link
- Credentials configured - This can be done manually or by running the
make setupcommand from the root of this repoImportant: Your container will fail if you do not do step #3 and configure your credentials
Docker
If docker is installed you can build an image and run this as a container.Build:
bash
docker build -t osintgram .
Run:
bash
docker run --rm -it -v "$PWD/output:/home/osintgram/output" osintgram
- The `` is the Instagram account you wish to use as your target for recon.
- The required
-iflag enables an interactive terminal to use commands within the container. docs - The required
-vflag mounts a volume between your local filesystem and the container to save to the./output/folder. docs - The optional
--rmflag removes the container filesystem on completion to prevent cruft build-up. docs - The optional
-tflag allocates a pseudo-TTY which allows colored output. docs
Using docker-composeYou can use the docker-compose.yml file this single command:
bash
docker-compose run osintgram
Where target is the Instagram target for recon.Alternatively, you may run docker-compose with the Makefile:make run - Builds and Runs with compose. Prompts for a target before running.
Makefile (easy mode)For ease of use with Docker-compose, a Makefile has been provided.Here is a sample work flow to spin up a container and run osintgram with just two commands!1. make setup - Sets up your Instagram credentials
make run- Builds and Runs a osintgram container and prompts for a targetSample workflow for development:1.make setup- Sets up your Instagram credentialsmake build-run-testing- Builds an Runs a container without invoking themain.pyscript. Useful for anitDocker session for developmentmake cleanup-testing- Cleans up the testing container created frombuild-run-testing
Development version 💻To use the development version with the latest feature and fixes just switch to development branch using Git:git checkout developmentand update to last version using:git pull origin development
Updating ⬇️To update Osintgram with the stable release just pull the latest commit using Git.1. Make sure you are in the master branch running: git checkout master
- Download the latest version:
git pull origin master
Contributing 💡You can propose a feature request opening an issue or a pull request.Here is a list of Osintgram's contributors:
External library 🔗Instagram API
总的来说,Osintgram是一个功能比较实用的开源工具,适合日常工作和学习使用。如果你正在寻找一款相关工具,不妨下载试试。使用前建议仔细阅读项目文档。