Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
CVE-1999-0524-POC — POC von CVE-1999-0524 | Kitploit
Tools/GitHubGitHub/biontdv/cve-1999-0524-poc
AufklärungSchwachstellenanalyseExploitationInformationsbeschaffungNetzwerksicherheitPenetrationstests
GitHubbiontdv/cve-1999-0524-poc

CVE-1999-0524-POC

POC von CVE-1999-0524

Repository anzeigen
1vor 1 MonatNoch nicht geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

ICMP Timestamp Scanner — CVE-1999-0524

root@kitploit:~
╔══════════════════════════════════════════════════════════════════╗
║  ██╗ ██████╗███╗   ███╗██████╗     ████████╗███████╗           ║
║  ██║██╔════╝████╗ ████║██╔══██╗       ██╔══╝██╔════╝           ║
║  ██║██║     ██╔████╔██║██████╔╝       ██║   ███████╗           ║
║  ██║██║     ██║╚██╔╝██║██╔═══╝        ██║   ╚════██║           ║
║  ██║╚██████╗██║ ╚═╝ ██║██║            ██║   ███████║           ║
║  ╚═╝ ╚═════╝╚═╝     ╚═╝╚═╝            ╚═╝   ╚══════╝           ║
╠══════════════════════════════════════════════════════════════════╣
║   CVE-1999-0524 · ICMP Timestamp Request/Reply Scanner          ║
║   Author  : Muhamad Bion Tadavi — VPSI                          ║
║   Org     : Vantage Point Security — Authorized Use Only        ║
╚══════════════════════════════════════════════════════════════════╝

Python License Root Required Platform Authorized Use

Schneller, multithreaded ICMP-Timestamp-Scanner mit farbcodierten Hex-Ausgaben und detaillierter Zeitstempelanalyse.


Übersicht

Erkennt Hosts, die für CVE-1999-0524 (ICMP-Timestamp-Informationsoffenlegung) anfällig sind, indem ICMP Typ 13 (Timestamp-Anfrage)-Pakete gesendet werden. Hosts, die mit ICMP Typ 14 (Timestamp-Antwort) antworten, werden als anfällig markiert – sie geben ihre interne Systemzeit preis, was die Geräteidentifikation und die zeitbasierte Angriffsverkettung unterstützt.

Erstellt ohne externe Abhängigkeiten – reine Python-Standardbibliothek.


Details zur Sicherheitslücke

Funktionsweise

root@kitploit:~
Angreifer                                  Ziel
   │                                         │
   │──── ICMP Typ 13 (Timestamp-Anfrage) ───▶│
   │                                         │  [Host verarbeitet Anfrage]
   │◀─── ICMP Typ 14 (Timestamp-Antwort) ────│
   │                                         │
   Die Antwort enthält drei 32-Bit-Zeitstempelfelder (ms seit Mitternacht UTC):
      ├── Ursprungs-Zeitstempel  (vom Anfrager gesetzt – oft 0)
      ├── Empfangs-Zeitstempel    ◀── Serveruhr hier preisgegeben
      └── Sende-Zeitstempel      ◀── Serveruhr hier preisgegeben

Auswirkungen

  • Systemzeit-Offenlegung – gibt die interne Uhr preis (ms seit Mitternacht UTC)
  • Geräteidentifikation – TTL + Antwortverhalten verrät den Hersteller (Cisco ASA, IOS usw.)
  • Angriffsverkettung – genaue Serverzeit hilft beim Fälschen zeitbasierter Token, TOTP-Analyse oder Log-Korrelation

Funktionen


Voraussetzungen

  • Python 3.8+
  • Root-/sudo-Rechte (erforderlich für rohe ICMP-Sockets)
  • Keine externen Bibliotheken
root@kitploit:~
python3 --version   # muss 3.8+ sein

Installation

root@kitploit:~
git clone https://github.com/<your-username>/CVE-1999-0524-ICMP-Timestamp-Scanner.git
cd CVE-1999-0524-ICMP-Timestamp-Scanner
chmod +x icmp_timestamp_scan.py

Verwendung

root@kitploit:~
sudo python3 icmp_timestamp_scan.py [OPTIONEN]

Optionen:
  -t, --target    IP, kommagetrennte IPs oder CIDR  (Terminaleingabe)
  -f, --file      Pfad zu Datei mit einer IP/CIDR pro Zeile
  --timeout SEKS  Sekunden pro Host warten  (Standard: 2.0)
  --threads N     Gleichzeitige Threads        (Standard: 30)
  -v, --verbose   Fortschrittsbalken + vollständigen Hex-Dump pro Host anzeigen
  -h, --help      Hilfe anzeigen

Anzeigemodi

ModusVerhalten
Standard (kein -v)Ergebnisse werden sofort ausgegeben, sobald ein Host antwortet – farbiges Hex + Zeitstempel pro Host, dann Zusammenfassung
Ausführlich (-v)Live-Fortschrittsbalken während des Scans, dann vollständiger Hex-Dump pro Host, dann Zusammenfassung

Beispiele

root@kitploit:~
# Einzelner Host
sudo python3 icmp_timestamp_scan.py -t 192.168.1.1

# Mehrere Hosts
sudo python3 icmp_timestamp_scan.py -t 192.168.1.1,192.168.1.2,192.168.1.3

# CIDR-Subnetz-Sweep
sudo python3 icmp_timestamp_scan.py -t 192.168.1.0/24

# Aus Datei
sudo python3 icmp_timestamp_scan.py -f hosts.txt

# Ausführlich – Fortschrittsbalken + vollständiger Hex-Dump
sudo python3 icmp_timestamp_scan.py -f hosts.txt -v

# Schneller weiter Scan
sudo python3 icmp_timestamp_scan.py -t 10.0.0.0/16 --threads 100 --timeout 1

hosts.txt-Format

root@kitploit:~
# Eine IP oder CIDR pro Zeile. Zeilen, die mit # beginnen, werden ignoriert.
192.168.1.1
192.168.1.2
192.168.1.3
10.0.0.1
10.0.0.2
10.0.0.0/24

Beispielausgabe

Standardmodus (kein -v)

root@kitploit:~
  [*] Targets  : 4 hosts
  [*] Timeout  : 2.0s  |  Threads: 30
  [*] Started  : 2026-07-14 06:37:25 UTC
  [*] Probe    : ICMP Type 13 (Timestamp Request)
  [*] Expect   : ICMP Type 14 (Timestamp Reply) from vulnerable hosts

╔══ VULNERABLE ══════════════════════════════════════════╗
║  Host       : 192.168.1.1
║  ICMP Type  : 14 — Timestamp Reply  (sent Type 13)
║  TTL        : 59
║  RTT        : 1.84 ms
║  ── Timestamps (ms since midnight UTC) ──────────────
║  Originate  :            0 ms  →  00:00:00.000 (not set)
║  Receive    :   22,974,518 ms  →  06:22:54.518 UTC
║  Transmit   :   22,974,518 ms  →  06:22:54.518 UTC  ← server time
║  ── Raw Response (hex) ──────────────────────────────
║  45 48 00 28 14 76 00 00 3b 01 2d 93 c0 a8 01 01 c0 a8 01 64 0e 00 f9 15 ...
║  Legend: ██=IP header  ██=ICMP header  ██=ICMP type14  ██=timestamps
╚════════════════════════════════════════════════════════╝

  [-] 192.168.1.2        no response (filtered or not vulnerable)

╔══ VULNERABLE ══════════════════════════════════════════╗
║  Host       : 192.168.1.3
║  TTL        : 59  |  RTT : 2.11 ms
║  Transmit   :   22,977,926 ms  →  06:22:57.926 UTC  ← server time
╚════════════════════════════════════════════════════════╝

══════════════════════════════════════════════════════════════════
  SCAN SUMMARY
══════════════════════════════════════════════════════════════════
  Scanner time  : 2026-07-14 13:37:25 WIB  (06:37:25 UTC)
  Total probed  : 4
  Vulnerable    : 2
  No response   : 2
  Errors        : 0

  ┌─ VULNERABLE HOSTS ────────────────────────────────────────────┐
  │  Host               TTL      RTT      Server Time (UTC)   Transmit ms │
  ├───────────────────────────────────────────────────────────────┤
  │  192.168.1.1         59    1.8ms   06:22:54.518 UTC    22,974,518  │
  │  192.168.1.3         59    2.1ms   06:22:57.926 UTC    22,977,926  │
  └───────────────────────────────────────────────────────────────┘

  ── Hex Evidence ─────────────────────────────────────────────

  [192.168.1.1]  TTL=59  RTT=1.84ms  Server→ 06:22:54.518 UTC
  45 48 00 28 14 76 00 00 3b 01 2d 93 c0 a8 01 01 c0 a8 01 64 0e 00 f9 15 ...
  Legend: ██=IP header  ██=ICMP header  ██=ICMP type14  ██=timestamps

  [192.168.1.3]  TTL=59  RTT=2.11ms  Server→ 06:22:57.926 UTC
  45 48 00 28 1a c3 00 00 3b 01 27 46 c0 a8 01 03 c0 a8 01 64 0e 00 f3 7e ...
  Legend: ██=IP header  ██=ICMP header  ██=ICMP type14  ██=timestamps

  Impact   : Information Disclosure — server time exposed
  CWE      : CWE-200 Exposure of Sensitive Information
  CVSS v3  : 0.0 (Low) — network access required
  Fix      : Block ICMP type 13 at perimeter ACL/firewall
  Cisco    : access-list <ACL> deny icmp any any 13

Hex-Antwort-Anatomie

root@kitploit:~
Byte   Feld               Beispiel      Beschreibung
─────  ─────────────────  ───────────  ──────────────────────────────────────
 0     IP Version/IHL     45           IPv4, Header-Länge = 20 Bytes
 1     DSCP/ECN           48
 2-3   Gesamtlänge        0028         40 Bytes
 4-5   Identifikation     1476
 6-7   Flags/Fragment     0000
 8     TTL                3b           59 Hops
 9     Protokoll          01           ICMP
10-11  IP-Prüfsumme       2d93
12-15  Quell-IP           c0a80101     192.168.1.1  ← antwortender Host
16-19  Ziel-IP            c0a80164     192.168.1.100  ← Scanner
──── ICMP-Header beginnt bei Byte 20 ────────────────────────────────────────
20     ICMP-Typ           0e           14 = Timestamp-Antwort  ← ANFÄLLIG
21     ICMP-Code          00
22-23  ICMP-Prüfsumme     f915
24-25  Identifikator      d5bf
26-27  Sequenznummer      0001
28-31  Ursprungs-TS       00000000     0 ms (Anfragerfeld, nicht gefüllt)
32-35  Empfangs-TS         015e9036     22.974.518 ms = 06:22:54 UTC  ← preisgegeben
36-39  Sende-TS           015e9036     22.974.518 ms = 06:22:54 UTC  ← preisgegeben

Abhilfemaßnahmen

Cisco IOS / IOS XE

root@kitploit:~
ip access-list extended BLOCK-ICMP-TS
 deny icmp any any 13
 deny icmp any any 17
 permit ip any any
!
interface GigabitEthernet0/0
 ip access-group BLOCK-ICMP-TS in

Cisco ASA

root@kitploit:~
access-list OUTSIDE_IN deny icmp any any 13
access-list OUTSIDE_IN deny icmp any any 17
access-group OUTSIDE_IN in interface outside

Linux – iptables

root@kitploit:~
iptables -A INPUT  -p icmp --icmp-type timestamp-request -j DROP
iptables -A OUTPUT -p icmp --icmp-type timestamp-reply   -j DROP

Linux – nftables

root@kitploit:~
nft add rule inet filter input  icmp type timestamp-request drop
nft add rule inet filter output icmp type timestamp-reply   drop

Windows-Firewall

root@kitploit:~
netsh advfirewall firewall add rule `
  name="Block ICMP Timestamp Request" `
  protocol=icmpv4:13,any action=block dir=in

Referenzen

  • CVE-1999-0524 – NVD
  • RFC 792 – ICMP (Spezifikation Typ 13/14)
  • CWE-200 – Offenlegung sensibler Informationen
  • Nessus Plugin 10114 – ICMP Timestamp Request Remote Date Disclosure

Rechtlicher Hinweis

Dieses Tool ist ausschließlich für autorisierte Penetrationstests, Sicherheitsforschung und Bildungszwecke bestimmt.
Die Verwendung dieses Tools gegen ein System ohne ausdrückliche schriftliche Genehmigung des Systembesitzers ist illegal und kann gegen Computermissbrauchsgesetze in Ihrem Land verstoßen.
Der Autor und Vantage Point Security übernehmen keine Haftung für jeglichen Missbrauch dieses Tools.


Mit ♥ gemacht von Muhamad Bion Tadavi — Vantage Point Security (VPSI)

Tool herunterladen
FeldWert
CVE-IDCVE-1999-0524
CWECWE-200 – Offenlegung sensibler Informationen
CVSS v30.0 (Niedrig)
TypInformationsoffenlegung
ProtokollICMP Typ 13 / Typ 14
BetroffenCisco IOS, Cisco ASA, Linux, Windows (konfigurationsabhängig)
FunktionDetail
Multithreaded-ScanningKonfigurierbare parallele Sonden (Standard: 30 Threads)
Flexible EingabeEinzel-IP · Kommagetrennt · CIDR-Bereich · Datei (-t / -f)
Farbcodiertes HexIP-Header · ICMP-Header · Typ-Byte · Zeitstempel – jeweils eigene Farbe
Zeitstempel-DekodierungRohe Millisekunden in HH:MM:SS.mmm UTC umgewandelt
Hex-Beweis in ZusammenfassungFarbiges Hex + Legende pro anfälligem Host in der Endzusammenfassung
Vollständiger Hex-Dump (-v)Offset + Hex + ASCII-Spalten für jede Antwort
Fortschrittsbalken (-v)Live-Fortschrittsbalken nur im ausführlichen Modus
ZusammenfassungstabelleSortierte Tabelle anfälliger Hosts mit TTL, RTT und Serverzeit
Keine AbhängigkeitenReine Python-Standardbibliothek – kein pip install erforderlich