Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-22007-NTP-monlist-Amplification-over-IPv6 — Python PoC for CVE-2026-22007: NTP monlist amplification over IPv6, including a simulated vulnerable server and spoofed UDP reflection attack. | Kitploit
Tools/GitHubGitHub/george0papasotiriou/cve-2026-22007-ntp-monlist-amplification-over-ipv6
Vulnerability AnalysisExploitationNetwork SecurityPenetration TestingMisconfigurationAdversarial Attack
GitHubgeorge0papasotiriou/cve-2026-22007-ntp-monlist-amplification-over-ipv6

CVE-2026-22007-NTP-monlist-Amplification-over-IPv6

Python PoC for CVE-2026-22007: NTP monlist amplification over IPv6, including a simulated vulnerable server and spoofed UDP reflection attack.

View Repository
51 month agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-22007 – NTP monlist Amplification over IPv6

Program Code (Python)

root@kitploit:~
# ntp_amplify_sim.py - NTP server responding to monlist without authentication
import socket, struct

def ntp_monlist_response():
    # Simplified NTP reply with many entries
    return b'\x00' * 1200  # large response

server = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
server.bind(('::', 123))
while True:
    data, addr = server.recvfrom(1024)
    # Vulnerability: no authentication, monlist enabled
    resp = ntp_monlist_response()
    server.sendto(resp, addr)

CVE-2026-22007 – NTP monlist Amplification over IPv6

Severity: High

Overview

An NTP server supports the monlist command over IPv6 without access control. An attacker can send a small spoofed request, and the server reflects a much larger response to the victim, enabling DDoS amplification.

Vulnerability Details

  • Type: Amplification Attack
  • Impact: Denial of Service.
  • Root Cause: The monlist feature returns a list of recent clients, generating a response up to 100 times larger than the request, and it requires no authentication.

Exploit Demonstration

Start the simulated NTP server:

root@kitploit:~
python ntp_amplify_sim.py

From attacker, send a spoofed UDP packet; the server bombards the victim.

Download Tool