AI架构师提升人机协作效率的5大核心能力
2026/8/9 14:37:41
Flowsint 是一款开源 OSINT 图探索工具,旨在实现合乎道德的调查、透明化和验证。
Flowsint 目前仍处于早期开发阶段,非常需要社区的帮助!欢迎提出问题、建议功能等等。
不想看文字?明白了。以下是安装说明:
git clone https://github.com/reconurge/flowsint.gitcdflowsint make prod然后访问http://localhost:5173/register并创建一个帐户。默认情况下没有凭据或帐户。
✅ 开源情报调查需要高度保密。所有信息都存储在您的计算机上。
Flowsint 是一款基于图的调查工具,专注于侦察和开源情报 (OSINT)。它允许您通过可视化的图形界面和自动增强器来探索实体之间的关系。
域增强器
IP 增强器
ASN 增强器
CIDR 富集器
社交媒体增强器
组织增强器
加密货币增值器
网站增强器
电子邮件增强器
手机信息增强器
个人提升者
整合增强器
该项目由若干个独立模块组成:
<span style="background-color:#f6f8fa"><span style="color:#1f2328"><span style="color:#1f2328"><span style="background-color:#f6f8fa"><code>flowsint-app (frontend) ↓ flowsint-api (API server) ↓ flowsint-core (orchestrator, tasks, vault) ↓ flowsint-enrichers (enrichers & tools) ↓ flowsint-types (types) </code></span></span></span></span>请确保您已安装Make 工具。
make dev该应用程序可通过http://localhost:5173访问。
所有其他模块使用的核心实用程序和基类:
适用于所有数据类型的 Pydantic 模型:
用于处理数据的增强模块:
FastAPI 服务器提供:
前端应用程序。
flowsint-types模块flowsint-enrichers模块flowsint-api模块flowsint-core模块每个模块都有自己的(不完整的)测试套件:
#Test core modulecdflowsint-core poetry run pytest#Test types modulecd../flowsint-types poetry run pytest#Test enrichers modulecd../flowsint-enrichers poetry run pytest#Test API modulecd../flowsint-api poetry run pytest