Home

Awesome

Anubis-DB

Sister project to Anubis

About

This project came about due to a lack of free and open APIs for subdomain enumeration.

Usage

There is only one endpoint - https://jonlu.ca/anubis/subdomains/:domain, where :domain is the domain.

MethodEndpointParameters
GEThttps://jonlu.ca/anubis/subdomains/ + domaindomain: Valid domain (e.g. google.com, reddit.com, etc)
POSThttps://jonlu.ca/anubis/subdomains/ + domainsubdomains: Array of submitted subdomains

A sample AJAX POST request looks like:

$.ajax({
    method: 'POST',
    url: "https://jonlu.ca/anubis/subdomains/reddit.com",
    type: 'json',
    data: {
        "subdomains": ["reddit.com","www.reddit.com","blog.reddit.com"]
    }
    success: function(data, textStatus, jqXHR) {
        //Handle data and status code here
    }
});

Status Codes

StatusEndpoint
200Success
300Domain did/does not exist in database
403Invalid domain or subdomains
500Server error saving or retrieving new subdomains

Limits

You're limited to 100 requests per 15 minute period.

There is also a 10,000 subdomain limit per domain.

Contributing

The most straightforward way of contributing is just to use Anubis and have it sends its results to AnubisDB.

Contributions to AnubisDB are always appreciated, as well. Currently parsing and over-use protections are lacking. Take a look at the issues and see if there is anything that you'd like to contribute to.