FinalRecon:一款多功能网络侦查OSINT工具

今天给大家介绍的是一款名叫FinalRecon的开源情报收集工具,这是一款多合一的多功能网络侦查工具。该工具采用Python开发,遵循模块化架构,可为广大研究人员的网络侦查活动提供帮助。

功能介绍

FinalRecon可提供如下所示的详细信息:

Header信息

WHOIS查询

SSL证书细节

网络爬虫

注:该工具支持的模块功能仍在添加中…

支持平台

1、 Kali Linux v2019.1

2、 BlackArch Linux

工具安装

git clone https://github.com/thewhiteh4t/FinalRecon.git

cd FinalRecon

pip3 install -r requirements.txt

工具使用

python3 finalrecon.py -h
usage:finalrecon.py [-h] [--headers] [--sslinfo] [--whois] [--crawl] [--full]
                     url
FinalRecon- OSINT Tool for All-In-One Web Recon | v1.0.0
positional arguments:
  url        Target URL
optional arguments:
  -h, --help show this help message and exit
  --headers  Get Header Information
  --sslinfo  Get SSL Certificate Information
  --whois    Get Whois Lookup
  --crawl    Crawl Target Website
  --full     Get Full Analysis, Test All Available Options

检测Header:

python3 finalrecon.py --headers 

检测SSL证书:

python3 finalrecon.py --sslinfo 

检测WHOIS信息:

python3 finalrecon.py --whois 

爬取对象:

python3 finalrecon.py --crawl 

完整扫描:

python3 finalrecon.py --full 

工具截图