Remove actions; check and run_* will suffice

bug/bundler_fix
Jon Hart 2015-11-02 13:54:42 -08:00
parent 1c3e4d2cbf
commit de959ed62b
No known key found for this signature in database
GPG Key ID: 2FA9F0A3AFA8E9D3
1 changed files with 5 additions and 7 deletions

View File

@ -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