Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/mouna23/osint-with-llm
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringThreat IntelligenceEmail HarvestingLearning & Education
GitHubmouna23/osint-with-llm

OSINT-with-LLM

It’s an OSINT reconnaissance poc powered by Local LLMs (Ollama). You can feed it an email, domain, or IP, and it automatically performs multiple types of reconnaissance, then generates a clean human-readable report using a local LLM.

View Repository
85129 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

POC : OSINT with LLM

This repository demonstrates domain, IP, and email reconnaissance with LLM-powered security reporting..


Overview

The project is divided into two main components:

  1. Recon Modules
  2. LLM Analysis and reporting

Recon Modules

Purpose

Gathering information about an ip, domain or email

Approach

  • Domain OSINT:

    • WHOIS Lookup

    • Shodan Info Gathering

    • SSL Certificate Validation

    • VirusTotal "malicious/clean" status

  • IP Recon:

    • AbuseIPDB score & classification
  • Email Recon:

    • Breach/exposure lookup

LLM Analysis and reporting

  • Converts technical OSINT into human-readable summaries

  • Extracts key findings & risk insights

  • Generates reports

Required API keys for OSINT modules

  • VT_API_KEY=your_virustotal_api_key
  • ABUSEIPDB_KEY=your_abuseipdb_api_key
  • SHODAN_KEY=your_shodan_api_key

Usage

Install dependencies

root@kitploit:~
pip3 install -r requirements.txt

Demo

root@kitploit:~
python3 main.py

When finished:

  • OSINT recon runs

  • LLM analyzes results

  • A report is saved in /reports/

Demo with domain

Project Logo

Project Logo

Demo with ip

Project Logo

Project Logo

Demo with email

Project Logo

Project Logo

Notes

  • The scripts are designed to be run locally, in a Python 3.13+ environment with the listed dependencies.
  • Install Ollama on your machine and add the MISTRAL model.
  • This poc is only for education purpose.
Download Tool