diff --git a/modules/auxiliary/scanner/ntp/ntp_nak_to_the_future.rb b/modules/auxiliary/scanner/ntp/ntp_nak_to_the_future.rb index f0df624eb3..b3b1f33454 100644 --- a/modules/auxiliary/scanner/ntp/ntp_nak_to_the_future.rb +++ b/modules/auxiliary/scanner/ntp/ntp_nak_to_the_future.rb @@ -37,13 +37,7 @@ class Metasploit3 < Msf::Auxiliary [ 'URL', 'http://www.cisco.com/c/en/us/support/docs/availability/high-availability/19643-ntpm.html' ], [ 'URL', 'http://support.ntp.org/bin/view/Main/NtpBug2941' ], [ 'CVE', '2015-7871' ] - ], - 'Actions' => - [ - ['CHECK', { 'Description' => 'Check for NTP NAK to the future' }], - ['SET', { 'Description' => 'Set the time' }] - ], - 'DefaultAction' => 'CHECK' + ] ) ) @@ -110,4 +104,8 @@ class Metasploit3 < Msf::Auxiliary return Exploit::CheckCode::Unknown end + + def run_host(ip) + fail_with(Failure::Unknown, 'Not yet implemented') + end end