Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanthegeek/domainaware
A dnstwist wrapper for monitoring for possible typo sqatting/spear phishing domains
https://github.com/seanthegeek/domainaware
Last synced: 3 months ago
JSON representation
A dnstwist wrapper for monitoring for possible typo sqatting/spear phishing domains
- Host: GitHub
- URL: https://github.com/seanthegeek/domainaware
- Owner: seanthegeek
- License: apache-2.0
- Created: 2015-10-02T22:21:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-09T19:38:52.000Z (about 1 year ago)
- Last Synced: 2024-06-28T08:38:50.757Z (5 months ago)
- Language: Python
- Homepage:
- Size: 61.5 KB
- Stars: 118
- Watchers: 8
- Forks: 23
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DomainAware
*Remain aware with DomainAware*A [dnstwist](https://github.com/elceef/dnstwist) and/or [URLCrazy](http://www.morningstarsecurity.com/research/urlcrazy)
wrapper for emailing security staff when possible typo sqatting/spear phishing domains have been registered## How it works
dnstwist and URLCrazy are domain name fuzzers. They generate lookalike and typo domains for a given domain, and then
look for A(AAA) and MX records for those domains to see if they are live. DomainAware keeps track of the results of
these scripts, so that new domains can be quickly identified.## Dependencies
- [Requests](https://pypi.python.org/pypi/requests/)
- [URLCrazy](http://www.morningstarsecurity.com/research/urlcrazy)
- Ruby
- [dnstwist](https://github.com/elceef/dnstwist)
- Python 2
- [DNS toolkit for Python](https://pypi.python.org/pypi/dnspython)
- [Python GeoIP](https://pypi.python.org/pypi/GeoIP/)
- [MaxMind Legacy Country GeoIP Database](https://dev.maxmind.com/geoip/legacy/install/country/)
To install the dependencies on Debian/Ubuntu systems, run:sudo apt-get install -y python-pip python-dev ruby libgeoip-dev \
geoip-database python-ssdeep
sudo -H pip2 install requests dnspython GeoIP whois
## Use
After installing the above dependencies, edit the `settings.cfg` file:
- Set the path to dnstwist and URLCrazy
- Configure the email settingsIf you have a subscription to the
[DomainTools WHOIS APIs](https://www.domaintools.com/products/api-integration/pricing/), you can add your credentials to
include the registrar name, registrant name, creation date, updated date, and expiration date in the domainaware
results. Both the plain WHOIS APIs and the parsed WHOIS APIs provide this same basic information, but you might have
access to one and not the other, with different URLs, so specify the flavor using the `parsed` setting.Determine the critical domains that you would like to monitor; for example, key brands.
Add those domains to `mydomains.csv`, one per line. Include any and all legitimate TLD variants, even if they are not
actually used at all, except typo variations.Add any other domains you or your organisation may own under the `Domain` header in `knowndomains.csv`, including any
owned typo domains. Add a reason like `Valid` for each domain. The `Notes` field is for the use of humans, and is not
used by the script. The file is simply used by the analyst to keep track of all domains that have been reviewed.Run the script for the first time:
$ ./domainaware --email
Open `output.csv`. Add all of the domains to `knowndomains.csv`, then review each domain to see if it's valid, or
if it's something you should add alerts and/or blocks for with your security controls. The domains are not automatically
added so that that human review is required. If the script detects that that there are domains from its last run that
are not in `knowndomains.csv`, it will send an email notice of this and exit, so that analysts have a chance to review
all domains before alerts for new ones are issued.It is recommended to run the script once a day, either manually, or via cron.
For recording and tracking threat information, check out the [CRITs](https://github.com/crits/crits) project.
If you need reliable external SMTP service, [Elastic Email](https://elasticemail.com/)
provides low-cost service.Check for and download new versions of dnstwist regularly.
## Background
DomainAware was inspired is inspired by Mike Saunders' [CrazyParser](https://github.com/hardwaterhacker/CrazyParser).
It started as a fork, but by the time I made all the changes I wanted, I realized that I had almost completely different
code, with a similar concept. The main differences are:- Python coding standards are followed
- Configuration in a file, rather than within the code
- Email notification if `knowndomains.csv` has not been updated since the last run
- NS, MX, A, and AAAA DNS records, and country and fuzzer information are included in the results
- Domain information is stored in memory rather than temporary files
- Integration with the DomainTools WHOIS APIs