You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 24, 2025. It is now read-only.
描述 (Description)
目前发现 URL 提取模块在处理十六进制 IP 地址时存在识别盲区:
对于 http://0xDCB52696/ 这样的十六进制 IP 地址链接,系统能够正确提取;
但对于裸形式的跳转,例如 0xDCB52696/ 或 0xDCB52696/index.html 这类 URL(无协议前缀),提取器未能识别为有效 URL。
示例 (Example)
点击以下链接继续验证:
0xDCB52696/
预期提取结果:
["http://0xDCB52696/"]
实际提取结果:
[]
建议 (Suggestion)
建议在 URL 提取模块中增加对以下形式的支持:
裸十六进制IP(如 0xDCB52696/)
裸十进制IP(如 3232235777/)
分段十六进制(如 0xC0.0xA8.0x01.0x01/)
并在缺失协议头时可默认补全为 http://,或提供配置项支持。