Skip to content

austimkelly/rekon

Repository files navigation

License Python Version Contributions Welcome Last Commit

rekon

rekon is a passive domain scanning tool that helps to collect public internet resrouce information though DNS enumeration and a variety of passive scanning probes. This tool is meant to be able to build an asset inventory from a top-level domain (e.g. acme.com) using free and open source solutions. This kind of inventory is also known as an attack surface management tool. For an example of the output please see the example_output folder in this repository.

rekon is not a vulnerabity scanning tool nor does it rely on any active scanning techniques. Active scanning typicaly involves acessing web content simulating user interaction for more comprehensive vulnerabity analysis. rekon does not require any API keys or accounts and is built to be fast.

rekon is tested against Pyton 3.11.5 on OS X, but is should run anywhere.

Table of Contents

Installation

  1. Clone or download this repo:

    git clone https://github.com/austimkelly/rekon.git

  2. Navigate to the root of the repo:

    cd rekon

  3. Install Dependencies

    pip3 install -r requirements.txt

Configuration

Rekon uses a configuration file (rekon-config.json) to specify the scanning parameters and options. You can customize this configuration to meet your needs. Here's how you can configure it:

  1. Open rekon-config.json
  2. Modify the configuraiton parameters. Explanations are provided in the the sample config file:
{
    "root_urls": [      -- Add in a list of domains you want to build a DNS enumeration for.
        "example.com",
        "sample.com"
    ],
    "max_dns_records": 10,  -- This is the max number or records to fetch and scan for each root url. Some sites can have hundreds of records, so start small
    "run_firewall_scan": true, -- Runs the wafw00f tool to figure out what firewall is running
    "run_ip_scan": true, -- Provide a list of associated IP addresses
    "http_status_scan": true, -- Return the HTTP status of the domain
    "sec_headers_scan": true, -- Look for specific missing security headers
    "take_screenshot": true, -- use selenium to snag a screeshot of a valid domain
}

Running rekon

Running the script over VPN is recommended.

  1. Open a terminal to the root of the /rekon repository.

    cd path/to/rekon

  2. Run rekon

    python3 rekon.py

Viewing the results

Once Rekon has completed scanning, it will generate a CSV file containing the scan results. The CSV file will be named scan_results_.csv, where is the current date in the "YYYYMMDD" format.

You can open the CSV file with a spreadsheet application or text editor to view the scan results.

For quicker human readable viewing, an HTML table outputs the same results. The HTML contains an embed of the site image for quick viewing.

Other reconnaissance references

Here are some other references that may be helpful to see how other approach this kind of attack surface reconnisance.

How to blogs

Useful free browser-based reconnaissance tools

  • crt.sh - Certification search, providing DNS enumeration.
  • DNS dumpster - Domain research tool with very robust data sets.
  • Shodan.io - Global search engine for internet connected devices.

Commercial ASM Tools

Open source tools

Here's a good blog article by Siz2dez that provides a more comprehensive list of subdomain enumeration tools.

About

A simple python-based subdomain enumeration tool to build an attack surface inventory.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published