PANO: A Graphical OSINT Tool for Linux and Windows

Listen to this Post

PANO is a powerful OSINT (Open-Source Intelligence) tool with a user-friendly graphical interface, available for both Linux and Windows. It simplifies investigations by providing interactive visualizations, entity management, and timeline analysis.

Key Features of PANO:

  • Interactive Graph Visualization
  • Drag-and-Drop Entity Creation
  • Multiple Layout Algorithms (Circular, Hierarchical, Radial, Force-Directed)
  • Dynamic Relationship Mapping
  • Timeline Analysis
  • Geographical Data Integration
  • Custom Entity Types

🔗 Tool Link: https://lnkd.in/davM2Fky

You Should Know: Essential OSINT Commands & Techniques

Linux OSINT Commands

1. Extract Emails from a Website

curl -s https://example.com | grep -E -o "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+.[A-Z|a-z]{2,}\b"

2. Find Usernames Across Platforms (Using Sherlock)

git clone https://github.com/sherlock-project/sherlock.git 
cd sherlock 
python3 sherlock.py username

3. Metadata Extraction (ExifTool)

exiftool image.jpg

4. Whois Lookup

whois example.com

5. DNS Enumeration

dnsenum example.com

Windows OSINT Tools & Commands

1. Harvest Emails with PowerShell

(Invoke-WebRequest -Uri "https://example.com").Content | Select-String -Pattern "\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+.[A-Z|a-z]{2,}\b"

2. Network Scanning (Nmap for Windows)

nmap -sn 192.168.1.0/24

3. Extract Social Media Links

(Invoke-WebRequest -Uri "https://example.com").Links | Where-Object { $_.href -match "twitter|facebook|linkedin" }

Automating PANO Data Collection

To feed PANO with structured data, use:

 Extract domains from a file and format for PANO 
cat domains.txt | while read domain; do echo "{\"type\":\"website\",\"value\":\"$domain\"}"; done > pano_entities.json 

What Undercode Say

PANO is a valuable addition to any OSINT investigator’s toolkit, offering an intuitive way to visualize complex data relationships. Combining it with command-line tools like grep, whois, and `Sherlock` enhances efficiency. For Windows users, PowerShell provides flexible data extraction, while Linux remains the go-to for deep OSINT automation.

Expected Output:

A structured JSON file (pano_entities.json) containing extracted entities for PANO analysis.

🔗 Additional Resources:

References:

Reported By: Joan Moya – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

💬 Whatsapp | 💬 TelegramFeatured Image