Skip to main content

Instagram OSINT

 OSINT stands for Open Source INTelligence. it means any information that can legally gathered from free , open source software or tool. if you want simple Example of OSINT then any search engine is OSINT. Today's Topic is Instagram OSINT then let's get started......





There is Tool for Instagram OSINT named Osintgram. So You can download that tool with below line(For Linux)
git clone https://github.com/Datalux/Osintgram

Now change directory,
cd Osintgram/

Download requirements
pip install -m requirements.txt

Now you need to give your instagram account credentials for login to instagram (Also you can create F@ke account) so goto config/ and add those details as below

Now we're ready to do OSINT;
python3 main.py <target name>

write username of person you want to know details
Below photo shows list of operation you can perform or just type list after running main.py

You can download all images uploaded by Target, you can get list of captions used by Target, you can get list of hashtags used by user and lots of other things. Just Explore it

Thank You 😊😊

Comments

Popular posts from this blog

Makefile

 You may have seen file named Makefile or you may have type command like make, make install. so what is this file Makefile and what are this command. let's discuss about it.

Products Which I like

Induction Buy now Induction Buy now

Pascal's Triangle

 Pascal's Triangle Introduction In mathematics, Pascal’s triangle is triangular array of binomial coefficient. below you can see how it looks like… 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 How to Build it? First of all start with “1” and second rows as “1 1” then we can clearly see every element in next rows(except 1) if sum of two elements from above row. (i.e, 1+1=2, 1+2=3, 1+3=4) and with this rules we can create pascal’s triangle of n rows. Below is visual of how it will look like, Formula let’s take 0th row as first row and 0th column as first column, so we can get each value using formula where n is row number and k is column number. so for finding 1st(0 indexed) element in 2nd row we can write 2C1 which will give 2. There is one another technique, in which we need to solve (x + y)^n for nth row, if we solve (x +y)² then we will get 2nd row as coefficient of x and y in this solved formula which is x² + 2xy + y² . coefficients are (...