Site link- https://nakrutka.com/my/freelikes.php?psc=CzRMSJ5srvM&p=
2nr Link -
https://nakrutka.com/my/freelikes.php?psc=CzRMSJ5srvM&p=
Le dernier contenu partagé par adityaa_oky sur Telegram
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)git clone https://github.com/Datalux/Osintgram.git
cd Osintgram
python3 -m venv venv
.\venv\Scripts\activate.ps1
source venv/bin/activate
pip install -r requirements.txt
credentials.ini
file in the config
folder and write your Instagram account username and password in the corresponding fieldsmake setup
command to populate this file for you.python3 main.py <target username>
python3 main.py <target username> --command <command>
v2
[branch](https://github.com/Datalux/Osintgram/tree/v2).git checkout v2
.Docker
or Docker-compose
.Docker
or Docker-compose
, please ensure you do have the following prerequisites met.Dockerer** installed - [link](https://docs.docker.com/get-docker/)Docker-composeded** installed (if using Docker-compose) - [link](https://docs.docker.com/compose/install/)Credentialsls** configured - This can be done manually or by running the make setup
command from the root of this rImportantnt**: Your container will fail if you do not do step #3 and configure your credentialsdocker build -t osintgram .
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.-i
flag enables an interactive terminal to use commands within the container. [docs](https://docs.docker.com/engine/reference/commandline/run/#assign-name-and-allocate-pseudo-tty---name--it)-v
flag mounts a volume between your local filesystem and the container to save to the ./output/
folder. [docs](https://docs.docker.com/engine/reference/commandline/run/#mount-volume--v---read-only)--rm
flag removes the container filesystem on completion to prevent cruft build-up. [docs](https://docs.docker.com/engine/reference/run/#clean-up---rm)-t
flag allocates a pseudo-TTY which allows colored output. [docs](https://docs.docker.com/engine/reference/run/#foreground)docker-compose
docker-compose.yml
file this single command:docker-compose run osintgram <target>
target
is the Instagram target for recon.docker-compose
with the Makefile
:make run
- Builds and Runs with compose. Prompts for a target
before running.Makefile
has been provided.osintgram
with just two commands!make setup
- Sets up your Instagram credentialsmake run
- Builds and Runs a osintgram container and prompts for a target