Visit Website

How to Install and Use OSI.IG for Instagram Reconnaissance on Kali Linux

The Instagram OSINT Tool helps gather detailed data from Instagram profiles, ideal for researchers and analysts. Learn how to install and use it.

Ever wondered how to uncover hidden details about an Instagram account effortlessly? Meet OSI.IG, a powerful, free tool designed for ethical hackers and cybersecurity enthusiasts to gather in-depth information about Instagram profiles—all from the command line!

In this blog post, we’ll dive into OSI.IG, a free and open-source OSINT tool designed for Instagram account reconnaissance. You’ll learn how to:

  • Install OSI.IG on Kali Linux – Step-by-step instructions to get the tool up and running on your system.
  • Use OSI.IG for Instagram Reconnaissance – A practical guide to exploring its features, including retrieving user details, analyzing hashtags, finding email addresses, and more.

By the end of this guide, you’ll have a solid understanding of how to use OSI.IG effectively in your ethical hacking or cybersecurity workflow.

Futuristic-themed Instagram Reconnaissance banner featuring a dark background with neon red and blue lighting, the Instagram logo, and text that reads 'Instagram Reconnaissance' and 'Kali Linux.' The TerminalTools branding is located in the bottom-right corner.

How to Install OSI.IG on Kali Linux

Follow these steps to install the OSI.IG tool on your Kali Linux system:

  1. Create a directory: Open a terminal and navigate to your desktop:
    cd ~/Desktop
    Then create a directory named Osi.ig:
    mkdir Osi.ig
  2. Clone the tool: Move into the newly created directory:
    cd Osi.ig
    Clone the OSI.IG repository using Git:
    git clone https://github.com/th3unkn0n/osi.ig.git
  3. Install dependencies: Install the required Python packages:
    sudo apt install python python3 python3-pip
  4. Install tool-specific requirements: Navigate into the tool’s directory:
    cd osi.ig
    Then use pip to install the required Python libraries:
    python3 -m pip install -r requirements.txt
  5. Grant permissions: Make the main script executable:
    chmod +x main.py
  6. Verify the installation: Test if the tool is installed correctly by running:
    ./main.py -h
    This should display the help section of OSI.IG, confirming that the tool is ready to use.

How to Use OSI.IG for Instagram Reconnaissance

Once OSI.IG is installed, you can start gathering information about Instagram accounts. Below are the primary ways to use the tool effectively:

1. Gather Basic Information

To retrieve basic details about an Instagram account, use the following command:

python3 main.py -u <username>
Info! Replace <username> with the target Instagram username.

Example Output:

  • User ID
  • Profile picture URL
  • Number of posts
  • Bio and external URL

2. Retrieve In-Depth Details

For additional information, such as descriptions of photos and videos uploaded by the user, use the -p flag:

python3 main.py -u <username> -p

Example Output:

  • Accessibility captions
  • Timestamps of posts
  • Locations tagged in posts
  • Detailed descriptions of photos and videos
If you're interested in a detailed post on OSI.IG, check it out on GeeksforGeeks here.

Conclusion

OSI.IG is a simple yet powerful tool for gathering public information from Instagram accounts. With easy installation and straightforward commands, it’s perfect for ethical hackers and OSINT enthusiasts. Use it responsibly and enhance your reconnaissance skills!

Post a Comment

Visit Website
Visit Website