Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mschwager/fierce
A DNS reconnaissance tool for locating non-contiguous IP space.
https://github.com/mschwager/fierce
discovered-domains dns domain fierce name-server reconnaissance subdomain zone-transfers
Last synced: 15 days ago
JSON representation
A DNS reconnaissance tool for locating non-contiguous IP space.
- Host: GitHub
- URL: https://github.com/mschwager/fierce
- Owner: mschwager
- License: gpl-3.0
- Created: 2016-04-26T23:34:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T14:35:58.000Z (3 months ago)
- Last Synced: 2024-10-15T01:41:06.248Z (30 days ago)
- Topics: discovered-domains, dns, domain, fierce, name-server, reconnaissance, subdomain, zone-transfers
- Language: Python
- Size: 257 KB
- Stars: 1,596
- Watchers: 55
- Forks: 198
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-recon-tools - Fierce - DNS reconnaissance tool for locating non-contiguous IP space. (Domain and Network Recon / Linux CLI // Kali)
- awesome-termux-hacking - fierce - A DNS reconnaissance tool for locating non-contiguous IP space..[![->](https://img.shields.io/github/stars/mschwager/fierce.svg?style=social&label=Star&maxAge=2592000)](https://github.com/mschwager/fierce/stargazers/) (Uncategorized / Uncategorized)
README
# Fierce
[![CI](https://github.com/mschwager/fierce/actions/workflows/ci.yml/badge.svg)](https://github.com/mschwager/fierce/actions/workflows/ci.yml)
[![Python Versions](https://img.shields.io/pypi/pyversions/fierce.svg)](https://img.shields.io/pypi/pyversions/fierce.svg)
[![PyPI Version](https://img.shields.io/pypi/v/fierce.svg)](https://img.shields.io/pypi/v/fierce.svg)Fierce is a `DNS` reconnaissance tool for locating non-contiguous IP space.
Useful links:
* [Domain Name System (DNS)](https://en.wikipedia.org/wiki/Domain_Name_System)
* [Domain Names - Concepts and Facilities](https://tools.ietf.org/html/rfc1034)
* [Domain Names - Implementation and Specification](https://tools.ietf.org/html/rfc1035)
* [Threat Analysis of the Domain Name System (DNS)](https://tools.ietf.org/html/rfc3833)
* [Name Servers (NS)](https://en.wikipedia.org/wiki/Domain_Name_System#Name_servers)
* [State of Authority Record (SOA)](https://en.wikipedia.org/wiki/List_of_DNS_record_types#SOA)
* [Zone Transfer](https://en.wikipedia.org/wiki/DNS_zone_transfer)
* [DNS Zone Transfer Protocol (AXFR)](https://tools.ietf.org/html/rfc5936)
* [Incremental Zone Transfer in DNS (IXFR)](https://tools.ietf.org/html/rfc1995)
* [Wildcard DNS Record](https://en.wikipedia.org/wiki/Wildcard_DNS_record)# Overview
First, credit where credit is due, `fierce` was
[originally written](https://github.com/mschwager/fierce/blob/master/scripts/fierce.pl)
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
```
$ python -m pip install fierce
$ fierce -h
```OR
```
$ 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:
```
$ fierce --domain google.com --subdomains accounts admin ads
```Traverse IPs near discovered domains to search for contiguous blocks with the
`--traverse` flag:```
$ fierce --domain facebook.com --subdomains admin --traverse 10
```Limit nearby IP traversal to certain domains with the `--search` flag:
```
$ fierce --domain facebook.com --subdomains admin --search fb.com fb.net
```Attempt an `HTTP` connection on domains discovered with the `--connect` flag:
```
$ 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](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#IPv4_CIDR_blocks)
of a discovered domain:```
$ fierce --domain facebook.com --wide
```Zone transfers are rare these days, but they give us the keys to the DNS castle.
[zonetransfer.me](https://digi.ninja/projects/zonetransferme.php) is a very
useful service for testing for and learning about zone transfers:```
$ fierce --domain zonetransfer.me
```To save the results to a file for later use we can simply redirect output:
```
$ fierce --domain zonetransfer.me > output.txt
```Internal networks will often have large blocks of contiguous IP space assigned.
We can scan those as well:```
$ fierce --dns-servers 10.0.0.1 --range 10.0.0.0/24
```Check out `--help` for further information:
```
$ fierce --help
```# Developing
First, install [`poetry`](https://python-poetry.org/docs/#installation) and development packages:
```
$ poetry install --with dev
```## Testing
```
$ poetry run pytest
```## Linting
```
$ poetry run flake8
```## Coverage
```
$ poetry run pytest --cov
```