fbpx
Join WhatsApp
Join Now
Join Telegram
Join Now

How to Install OSINTgram in Kali Linux

By Noman Mohammad

Published on:

How to Install OSINTgram in Kali Linux
5/5 - (1 vote) ๐Ÿ’– THANKS

hey everyone Today we will see how to Install OSINTgram in Kali Linux. Not only that also we will see how to install, set up, use, and uninstall OSINTgram as well.

OSINTgram is an OSINT tool that extracts information from Instagram. It’s a must-have tool for ethical hackers. However, make sure that this content is only for educational purposes. Use this tool only for ethical purposes.

What is OSINTgram? ๐Ÿค”

OSINTgram is a tool designed for social media reconnaissance. It lets you extract data like:

  • User posts
  • Followers
  • Following lists
  • Profile details

The tool is used for ethical hacking, penetration testing, and for information gathering. ????

Also read: Kali Linux Nethunter Install Command

But here’s the catchโ€”it’s not pre-installed on Kali Linux. Don’t worry, though! I’ll guide you through the process step by step.

OSINTgram requirements for Kali Linux ๐Ÿ“‹

Pre-requisites

  • Kali Linux installed and updated.
  • Python 3 installed (comes by default on most Kali versions).
  • Basic knowledge of Linux terminal commands.

Letโ€™s get started! ๐ŸŽ‰

OSINTgram in kali Linux Step-by-step guide 2025

So after completing all the requirements required for OSINTgram tool lets see a full detailed step-by-step tutorial.

Step 1: Update Kali Linux System ๐Ÿš€

First, let’s update our system to make sure we have the latest packages and dependencies. run the below command:

sudo apt update && sudo apt upgrade -y

This will update all our system files and prepare Kali Linux for the installation. ๐Ÿ›ก๏ธ

Step 2: Clone OSINTgram Repository ๐ŸŒ

We need Git to download OSINTgram from GitHub. If Git isnโ€™t already installed, run the below command:

sudo apt install git -y

Now, clone the OSINTgram repository using the below command:

git clone https://github.com/Datalux/OSINTgram.git  

Once the download is complete, Go to the OSINTgram folded by running the below command:

cd OSINTgram

Step 3: Set Up the Python Environment ๐Ÿ

OSINTgram requires some Python modules to work correctly. First, create a virtual environment by running the below command:

python3 -m venv osintgram-env  
source osintgram-env/bin/activate  

Now, install the required Python packages by running:

pip install -r requirements.txt

This will install all the requirements for OSINTgram. โœ…

Step 4: Configure OSINTgram ๐Ÿ”ง

To use OSINTgram, youโ€™ll need to configure it with your Instagram credentials. Open the file config.py in your favourite text editor by running the below command:

nano config.py

Add your Instagram username and password in the specified fields. Make sure to save the file and exit.

how to use OSINTgram in Kali Linux

Finally, we’re ready to run OSINTgram! Run the following command given below:

python3 main.py

Youโ€™ll see a command-line interface where you can type commands to gather Instagram data.

Some useful commands include:

  • userinfo <username> : Get details of a userโ€™s profile.
  • followers <username> : Fetch the list of followers.
  • posts <username> : List the userโ€™s posts.

how to uninstall OSINTgram in Kali Linux

To uninstall OSINTgram in Kali Linux, Go to its directory and delete by running the below command:

rm -rf OSINTgram

Additionally, remove its virtual environment by deleting the osintgram-env folder by running the below command:

rm -rf osintgram-env

Finally, clear any unnecessary Python dependencies by following command below:

pip uninstall -r requirements.txt

Done! ๐Ÿ—‘๏ธ

Conclusion For OSINTgram

OSINTgram is a powerful Information-gathering tool and the must-have tool for our ethical hackers. If you enjoy the post make share to share this post and comment down below I will try my best to answer you. Thanks For reading my post.

Noman Mohammad is a tech enthusiast who began mastering Linux at just 16 years old. With a certification in cybersecurity from a renowned organization, he specializes in ethical hacking, network defense, and secure IT practices. Nomanโ€™s hands-on experience and dedication make him a trusted authority in Linux systems and cybersecurity. Connect with him for expert insights and solutions in todayโ€™s digital world.

Leave a Comment