This commit is contained in:
CoolHandSquid 2021-08-12 09:12:03 -04:00 committed by GitHub
parent e1cdfc3cdc
commit 2527553b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,3 +47,22 @@ ntpdc -n -c monlist <IP>
* `ntp` * `ntp`
## HackTricks Automatic Commands
```
Protocol_Name: NTP #Protocol Abbreviation if there is one.
Port_Number: 123 #Comma separated if there is more than one.
Protocol_Description: Network Time Protocol #Protocol Abbreviation Spelled out
Name: Notes
Description: Notes for NTP
Note: """
The Network Time Protocol (NTP) is a networking protocol for clock synchronization between computer systems over packet-switched, variable-latency data networks.
https://book.hacktricks.xyz/pentesting/pentesting-ntp
"""
Name: Nmap
Description: Enumerate NTP
Command: """nmap -sU -sV --script "ntp* and (discovery or vuln) and not (dos or brute)" -p 123 {IP}"""
```