NeFuture/LinkScope
GitHub: NeFuture/LinkScope
LinkScope 是一款用于钓鱼调查的 URL 与重定向链分析工具,帮助安全人员快速解析可疑链接的完整网络行为轨迹。
Stars: 0 | Forks: 0
# LinkScope
使用 Python 和 curl 构建的简单钓鱼 URL 分析工具。
## 功能
- URL 规范化(`google.com` → `https://google.com`)
- 重定向链分析
- 最终 URL 检测
- HTTP 状态检查
- 安全标头分析
- 远程 IP 检测
- DNS / TLS / TTFB 计时信息
- 支持 SOCKS5 和 HTTP 代理
## 环境要求
- Python 3.10+
- curl
## 安装说明
克隆仓库:
```
git clone https://github.com/NeFuture/LinkScope.git
```
本地安装:
```
pip install -e .
```
## 使用说明
基本检查:
```
lcheck google.com
```
你也可以使用:
```
python -m linkscope check google.com
```
JSON 输出:
```
lcheck google.com --json
```
## 示例
```
=== LinkScope ===
Input: google.com
Normalized: https://google.com
Final status: 200
Server: gws
IP: 142.251.152.119
DNS lookup: 0.010s
Connect: 0.034s
TLS: 0.103s
TTFB: 0.184s
Total time: 0.207s
Redirect chain:
01. 301 https://google.com
-> Location: https://www.google.com/
02. 200 https://google.com
Headers:
Content-Type: text/html
Set-Cookie: 2
HSTS: yes
X-Frame-Options: SAMEORIGIN
Risk summary:
- 1 redirect(s)
- Cookies set by server
```
## 安全提示
LinkScope 使用 curl 连接到目标 URL。
除非使用代理,否则目标服务器可能会看到你的 IP 地址。
标签:Python, URL分析, 动态分析, 无后门, 系统分析, 网络分析, 逆向工具, 钓鱼调查