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タイプ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シェル
  • 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

npingの代わりにhping3を使用

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.
ツールをダウンロード