Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/pcastagnaro/dns_amplification_scanner
ReconnaissanceVulnerability ScannersInformation GatheringNetwork SecurityPenetration TestingDNS Analysis
GitHubpcastagnaro/dns_amplification_scanner

dns_amplification_scanner

This script checks if each domain from a given domain list is vulnerable to CVE-2006-0987

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
11 year agoNot yet reviewed

DNS Amplification DDoS Detection and Verification Tool

This script is designed to identify and verify potential DNS servers vulnerable to exploitation in DNS amplification distributed denial-of-service (DDoS) attacks. It addresses the limitations of automated vulnerability scanners like Nessus, which may generate false positives when detecting this issue using plugin 35450.

Background

DNS amplification attacks are a type of reflection-based DDoS attack that exploits misconfigured or open DNS resolvers. Attackers send small DNS queries with spoofed source IP addresses, causing the DNS server to send large responses to the victim's IP address. This amplifies the attack traffic, potentially overwhelming the target's network resources.

Functionality

The script performs the following key functions:

  1. Bulk domain processing: Analyzes multiple domains efficiently to identify potential vulnerabilities.
  2. DNS query simulation: Sends specially crafted DNS queries to test for amplification behavior.
  3. Response analysis: Examines DNS responses to determine if the server exhibits characteristics conducive to amplification attacks.
  4. False positive reduction: Implements additional checks to minimize false positives compared to basic vulnerability scans.

Use Case

This tool is particularly useful for:

  • Security professionals conducting large-scale DNS infrastructure audits
  • Network administrators verifying the security posture of their DNS servers
  • Researchers studying DNS amplification attack vectors

By providing a more accurate assessment of DNS amplification vulnerabilities, this script enables organizations to prioritize mitigation efforts and enhance their DDoS resilience.


Usage

Clone the repository

root@kitploit:~
git clone https://github.com/pcastagnaro/dns_amplification_scanner/
cd dns_amplification_scanner

Create a Virtual Environment

root@kitploit:~
python3 -m venv myenv; source myenv/bin/activate

Install Dependancies

root@kitploit:~
pip install colorama

Run the Script

root@kitploit:~
python dns_amplification_scanner.py <DNS> --domains <DOMAIN_LIST> --type ANY 

Example

root@kitploit:~
python dns_amplification_scanner.py 8.8.8.8 --domains domains.txt --type ANY 

Amplification

Download Tool