NTP (Network Time Protocol) Pentesting
NTP is a networking protocol for clock synchronization between computer systems over packet-switched. Default port is 123. It uses UDP.
Enumeration
nmap -sU --script ntp-info -p 123 <target-ip>
nmap -sU --script ntp-monlist -p 123 <target-ip>
nmap -sU --script ntp* -p 123 <target-ip>
nmap -sU --script "ntp* and (discovery or vuln) and not (dos or brute)" -p 123 <target-ip>