Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
ICMP-Timestamp-POC — 一个侦察工具,用于检测CVE-1999-0524(ICMP时间戳泄露),通过自动化使用nping或hping3提取时间戳。将原始ICMP时间戳转换为人类可读的远程系统时间,用于漏洞验证。 | Kitploit
工具/GitHubGitHub/ransc0rp1on/icmp-timestamp-poc
侦察漏洞扫描器漏洞利用信息收集网络安全渗透测试
GitHubransc0rp1on/icmp-timestamp-poc

ICMP-Timestamp-POC

一个侦察工具,用于检测CVE-1999-0524(ICMP时间戳泄露),通过自动化使用nping或hping3提取时间戳。将原始ICMP时间戳转换为人类可读的远程系统时间,用于漏洞验证。

查看仓库
111个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

ICMP时间戳信息泄露扫描器 (CVE-1999-0524)

一组用于检测和演示ICMP时间戳信息泄露漏洞(CVE-1999-0524)的脚本。
这些工具发送精心构造的ICMP Type 13(时间戳请求)数据包,并分析响应以提取远程系统时间信息。


⚙️ 功能特点

  • 多目标扫描(单个目标、逗号分隔列表或文件输入)
  • 支持 nping(推荐)和 hping3(Bash)
  • 在扫描前可选连接性(ping)检查
  • 彩色编码、人类可读的输出,包含时间戳分解
  • 支持手动时间戳输入/分析
  • 跨平台:PowerShell(Windows)和 Bash(Linux)

🧾 文件列表

  • ICMP-Timestamp.ps1 — PowerShell(Windows)
  • icmp_timestamp_scanner.sh — Bash(Linux)

✅ 系统要求

Windows(PowerShell)

  • PowerShell 4.0+
  • nping(来自Nmap)在 PATH 中
  • 管理员权限(发送原始ICMP所需)

扫描单个目标

root@kitploit:~
.\ICMP-Timestamp.ps1 -Targets "example.com"

扫描多个目标(逗号分隔)

root@kitploit:~
.\ICMP-Timestamp.ps1 -Targets "example.com","192.168.1.1","target.domain.com"

从文件读取目标进行扫描

root@kitploit:~
.\ICMP-Timestamp.ps1 -TargetFile "targets.txt"

跳过ping测试以加速扫描

root@kitploit:~
.\ICMP-Timestamp.ps1 -TargetFile "targets.txt" -SkipPingTest

自定义超时时间(毫秒)

root@kitploit:~
.\ICMP-Timestamp.ps1 -TargetFile "targets.txt" -TimeoutMs 5000

Linux(Bash)

  • Bash shell
  • nping 或 hping3
  • sudo 权限(发送ICMP所需)

赋予执行权限

chmod +x icmp_timestamp_scanner.sh

扫描单个目标 sudo ./icmp_timestamp_scanner.sh -i example.com

扫描多个目标(逗号分隔) sudo ./icmp_timestamp_scanner.sh -l "example.com,192.168.1.1,target.domain.com"

sudo ./icmp_timestamp_scanner.sh -f targets.txt sudo ./icmp_timestamp_scanner.sh -f targets.txt

跳过ping测试(更快)

sudo ./icmp_timestamp_scanner.sh -f targets.txt -p

使用hping3替代nping

sudo ./icmp_timestamp_scanner.sh -f targets.txt -t hping3

自定义超时时间(秒)

sudo ./icmp_timestamp_scanner.sh -f targets.txt -w 5

##🖨️ 示例输出

root@kitploit:~
#################################################
#     CVE-1999-0524 - Remote Date Disclosure    #
#          Multi-Target Enhanced Version        #
#################################################

Starting scan of 3 targets...

Processing target: example.com
  Host is online
  [RESULT] VULNERABLE to CVE-1999-0524
  Disclosed remote time: 2023-10-15T07:28:28.065Z
  Timestamps - Originate: 0, Receive: 26908065, Transmit: 26908065

Processing target: 192.168.1.1
  Host is offline or not responding

Processing target: target.domain.com
  Host is online
  [RESULT] Not vulnerable to CVE-1999-0524
  The target is not disclosing system time via ICMP timestamps

Scan completed.
下载工具