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
fierce — A DNS reconnaissance tool for locating non-contiguous IP space. | Kitploit
Tools/GitHubGitHub/mschwager/fierce
ReconnaissanceNetwork MappingDNS & Subdomain EnumerationInformation GatheringDNS Analysis
GitHubmschwager/fierce

fierce

A DNS reconnaissance tool for locating non-contiguous IP space.

View Repository
1.8k2161 year agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Fierce

CI Python Versions PyPI Version

Fierce is a DNS reconnaissance tool for locating non-contiguous IP space.

Useful links:

  • Domain Name System (DNS)
    • Domain Names - Concepts and Facilities
    • Domain Names - Implementation and Specification
    • Threat Analysis of the Domain Name System (DNS)
  • Name Servers (NS)
  • State of Authority Record (SOA)
  • Zone Transfer
    • DNS Zone Transfer Protocol (AXFR)
    • Incremental Zone Transfer in DNS (IXFR)
  • Wildcard DNS Record

Overview

First, credit where credit is due, fierce was originally written by RSnake along with others at http://ha.ckers.org/. This is simply a conversion to Python 3 to simplify and modernize the codebase.

The original description was very apt, so I'll include it here:

Fierce is a semi-lightweight scanner that helps locate non-contiguous IP space and hostnames against specified domains. It's really meant as a pre-cursor to nmap, unicornscan, nessus, nikto, etc, since all of those require that you already know what IP space you are looking for. This does not perform exploitation and does not scan the whole internet indiscriminately. It is meant specifically to locate likely targets both inside and outside a corporate network. Because it uses DNS primarily you will often find mis-configured networks that leak internal address space. That's especially useful in targeted malware.

Installing

root@kitploit:~
$ python -m pip install fierce
$ fierce -h

OR

root@kitploit:~
$ git clone https://github.com/mschwager/fierce.git
$ cd fierce
$ python -m pip install dnspython==1.16.0
$ python fierce/fierce.py -h

Using

Let's start with something basic:

root@kitploit:~
$ fierce --domain google.com --subdomains accounts admin ads

Traverse IPs near discovered domains to search for contiguous blocks with the --traverse flag:

root@kitploit:~
$ fierce --domain facebook.com --subdomains admin --traverse 10

Limit nearby IP traversal to certain domains with the --search flag:

root@kitploit:~
$ fierce --domain facebook.com --subdomains admin --search fb.com fb.net

Attempt an HTTP connection on domains discovered with the --connect flag:

root@kitploit:~
$ fierce --domain stackoverflow.com --subdomains mail --connect

Exchange speed for breadth with the --wide flag, which looks for nearby domains on all IPs of the /24 of a discovered domain:

root@kitploit:~
$ fierce --domain facebook.com --wide

Zone transfers are rare these days, but they give us the keys to the DNS castle. zonetransfer.me is a very useful service for testing for and learning about zone transfers:

root@kitploit:~
$ fierce --domain zonetransfer.me

To save the results to a file for later use we can simply redirect output:

root@kitploit:~
$ fierce --domain zonetransfer.me > output.txt

Internal networks will often have large blocks of contiguous IP space assigned. We can scan those as well:

root@kitploit:~
$ fierce --dns-servers 10.0.0.1 --range 10.0.0.0/24

Check out --help for further information:

root@kitploit:~
$ fierce --help

Developing

First, install poetry and development packages:

root@kitploit:~
$ poetry install --with dev

Testing

root@kitploit:~
$ poetry run pytest

Linting

root@kitploit:~
$ poetry run flake8

Coverage

root@kitploit:~
$ poetry run pytest --cov
Download Tool