Installation Guide
Installation ⚙️
Standard Installation
Fork/Clone/Download this repo
git clone https://github.com/Datalux/Osintgram.gitNavigate to the directory
cd OsintgramCreate a virtual environment for this project
python3 -m venv venvLoad the virtual environment
- On Windows Powershell:
.\venv\Scripts\activate.ps1 - On Linux and Git Bash:
source venv/bin/activate
- On Windows Powershell:
Install dependencies
pip install -r requirements.txtConfigure credentials
Open the
credentials.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 the
make setupcommand to populate this file for you.Run the main.py script
You can run it in one of three ways:
- As an interactive prompt:
python3 main.py <target username> - Execute your command straight away:
python3 main.py <target username> --command <command> - Execute using HikerAPI token via env:
HIKERAPI_TOKEN=<hikerapi token> python3 main.py <target username> -c <command>
- As an interactive prompt:
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 v2Docker Quick Start 🐳
Prerequisites
Before 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 setupcommand from the root of this repo
Important: 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:
docker build -t osintgram .Run:
docker run --rm -it -v "$PWD/output:/home/osintgram/output" osintgram <target>- The
<target>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. - The required
-vflag mounts a volume between your local filesystem and the container to save to the./output/folder. - The optional
--rmflag removes the container filesystem on completion to prevent cruft build-up. - The optional
-tflag allocates a pseudo-TTY which allows colored output.
Using docker-compose
You can use the docker-compose.yml file this single command:
docker-compose run osintgram <target>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:
make setup- Sets up your Instagram credentialsmake run- Builds and Runs a osintgram container and prompts for a target
Sample workflow for development:
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 developmentUpdating ⬇️
To update Osintgram with the stable release just pull the latest commit using Git:
- Make sure you are in the master branch:
git checkout master - Download the latest version:
git pull origin master