
グラフベースのOSINT調査プラットフォーム。タイムライン分析、エンティティ管理、AIを活用した変換機能により、メール、ユーザー名、画像、位置情報にわたる隠れた接続を明らかにします。

PANO は、グラフ可視化、タイムライン分析、AI 駆動のツールを組み合わせ、データ内の隠れたつながりやパターンを明らかにする強力な OSINT 調査プラットフォームです。
https://github.com/user-attachments/assets/6b95e97a-ffdd-4056-b12b-f268d8e5d565
https://github.com/user-attachments/assets/af0c0f65-7b79-417c-a678-a789d42a6003
https://github.com/user-attachments/assets/568b4c28-be78-4559-a607-899fca2f9613
https://github.com/user-attachments/assets/6aa191eb-09de-41d5-b96f-4a2e32d6a0c2
https://github.com/user-attachments/assets/96377b80-e137-4eb4-9387-a0db4e49c2c1
https://github.com/user-attachments/assets/4228bda0-6c13-4ea9-bc07-d87abe367e10
リポジトリをクローン:
git clone https://github.com/ALW1EZ/PANO.git
cd PANO
アプリケーションを実行:
./start_pano.shstart_pano.bat起動スクリプトは自動的に:
Email Lookup transform を使用するには、まず GHunt でログインする必要があります。 スタータースクリプトで pano を起動した後;
source venv/bin/activatecall venv\Scripts\activateインタラクティブなグラフ可視化
タイムライン分析
マップ統合
メール分析
ユーザー名分析
画像分析
エンティティは PANO の基本的な構成要素です。接続と分析が可能な個別の情報を表します。
組み込みタイプ
プロパティシステム
トランスフォームは、エンティティを処理して新しい情報や関係を発見する自動操作です。
操作タイプ
機能
ヘルパーは、特定の調査タスクに特化した専用 UI を備えたツールです。
利用可能なヘルパー
ヘルパーの機能
貢献を歓迎します!PANO に貢献するには:
注意: 開発には単一の
mainブランチを使用しています。すべてのプルリクエストは直接mainに行ってください。
エンティティは PANO のコアデータ構造です。各エンティティは、特定のプロパティと動作を持つ情報を表します。カスタムエンティティを作成するには:
entities フォルダに新しいファイルを作成 (例: entities/phone_number.py)from dataclasses import dataclass
from typing import ClassVar, Dict, Any
from .base import Entity
@dataclass
class PhoneNumber(Entity):
name: ClassVar[str] = "Phone Number"
description: ClassVar[str] = "A phone number entity with country code and validation"
def init_properties(self):
"""Initialize phone number properties"""
self.setup_properties({
"number": str,
"country_code": str,
"carrier": str,
"type": str, # mobile, landline, etc.
"verified": bool
})
def update_label(self):
"""Update the display label"""
self.label = self.format_label(["country_code", "number"])
このプロジェクトは Creative Commons Attribution-NonCommercial (CC BY-NC) ライセンスの下で提供されています。
あなたは自由に:
以下の条件に従って:
このプロジェクトを可能にしてくれたすべてのライブラリ作成者と貢献者に感謝します。
ALW1EZ が AI ❤️ とともに作成
トランスフォームは、エンティティを処理して新しい洞察や関係を生成する操作です。カスタムトランスフォームを作成するには:
transforms フォルダに新しいファイルを作成 (例: transforms/phone_lookup.py)from dataclasses import dataclass
from typing import ClassVar, List
from .base import Transform
from entities.base import Entity
from entities.phone_number import PhoneNumber
from entities.location import Location
from ui.managers.status_manager import StatusManager
@dataclass
class PhoneLookup(Transform):
name: ClassVar[str] = "Phone Number Lookup"
description: ClassVar[str] = "Lookup phone number details and location"
input_types: ClassVar[List[str]] = ["PhoneNumber"]
output_types: ClassVar[List[str]] = ["Location"]
async def run(self, entity: PhoneNumber, graph) -> List[Entity]:
if not isinstance(entity, PhoneNumber):
return []
status = StatusManager.get()
operation_id = status.start_loading("Phone Lookup")
try:
# Your phone number lookup logic here
# Example: query an API for phone number details
location = Location(properties={
"country": "Example Country",
"region": "Example Region",
"carrier": "Example Carrier",
"source": "PhoneLookup transform"
})
return [location]
except Exception as e:
status.set_text(f"Error during phone lookup: {str(e)}")
return []
finally:
status.stop_loading(operation_id)
ヘルパーは、専用の UI インターフェースを通じて追加の調査機能を提供する特殊なツールです。カスタムヘルパーを作成するには:
helpers フォルダに新しいファイルを作成 (例: helpers/data_analyzer.py)from PySide6.QtWidgets import (
QWidget, QVBoxLayout, QHBoxLayout, QPushButton,
QTextEdit, QLabel, QComboBox
)
from .base import BaseHelper
from qasync import asyncSlot
class DummyHelper(BaseHelper):
"""A dummy helper for testing"""
name = "Dummy Helper"
description = "A dummy helper for testing"
def setup_ui(self):
"""Initialize the helper's user interface"""
# Create input text area
self.input_label = QLabel("Input:")
self.input_text = QTextEdit()
self.input_text.setPlaceholderText("Enter text to process...")
self.input_text.setMinimumHeight(100)
# Create operation selector
operation_layout = QHBoxLayout()
self.operation_label = QLabel("Operation:")
self.operation_combo = QComboBox()
self.operation_combo.addItems(["Uppercase", "Lowercase", "Title Case"])
operation_layout.addWidget(self.operation_label)
operation_layout.addWidget(self.operation_combo)
# Create process button
self.process_btn = QPushButton("Process")
self.process_btn.clicked.connect(self.process_text)
# Create output text area
self.output_label = QLabel("Output:")
self.output_text = QTextEdit()
self.output_text.setReadOnly(True)
self.output_text.setMinimumHeight(100)
# Add widgets to main layout
self.main_layout.addWidget(self.input_label)
self.main_layout.addWidget(self.input_text)
self.main_layout.addLayout(operation_layout)
self.main_layout.addWidget(self.process_btn)
self.main_layout.addWidget(self.output_label)
self.main_layout.addWidget(self.output_text)
# Set dialog size
self.resize(400, 500)
@asyncSlot()
async def process_text(self):
"""Process the input text based on selected operation"""
text = self.input_text.toPlainText()
operation = self.operation_combo.currentText()
if operation == "Uppercase":
result = text.upper()
elif operation == "Lowercase":
result = text.lower()
else: # Title Case
result = text.title()
self.output_text.setPlainText(result)