All Projects → thisismyrobot → Dnstwister

thisismyrobot / Dnstwister

Licence: unlicense
Domain name permutation as a service

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Dnstwister

Domainfuzz
Domain name permutation engine for detecting typo squatting, phishing and corporate espionage
Stars: ✭ 74 (+105.56%)
Mutual labels:  dns, phishing
dnstwister
Domain name permutation as a service
Stars: ✭ 46 (+27.78%)
Mutual labels:  dns, phishing
Dnsmorph
Domain name permutation engine written in Go
Stars: ✭ 148 (+311.11%)
Mutual labels:  dns, phishing
domfind
A Python DNS crawler to find identical domain names under different TLDs.
Stars: ✭ 22 (-38.89%)
Mutual labels:  dns, phishing
Sooty
The SOC Analysts all-in-one CLI tool to automate and speed up workflow.
Stars: ✭ 867 (+2308.33%)
Mutual labels:  dns, phishing
Dnstwist
Domain name permutation engine for detecting homograph phishing attacks, typo squatting, and brand impersonation
Stars: ✭ 3,124 (+8577.78%)
Mutual labels:  dns, phishing
Stinkyphish
Monitor Certificate Transparency Logs For Phishing Domains
Stars: ✭ 25 (-30.56%)
Mutual labels:  phishing
Learn dns
[ Domain Name to I/O ] Development DNS & Security Data Transportation & Pentesting with SCA and Steganography.
Stars: ✭ 29 (-19.44%)
Mutual labels:  dns
Dreamcatcher
DNS Monitoring Suite
Stars: ✭ 19 (-47.22%)
Mutual labels:  dns
Whour
Tool for information gathering, IPReverse, AdminFInder, DNS, WHOIS, SQLi Scanner with google.
Stars: ✭ 18 (-50%)
Mutual labels:  dns
Udpot
Simple UDP honeypot script
Stars: ✭ 35 (-2.78%)
Mutual labels:  dns
Fiercephish
FiercePhish is a full-fledged phishing framework to manage all phishing engagements. It allows you to track separate phishing campaigns, schedule sending of emails, and much more.
Stars: ✭ 960 (+2566.67%)
Mutual labels:  phishing
Bash Toolkit
Este proyecto esá destinado a ayudar a los sysadmin
Stars: ✭ 13 (-63.89%)
Mutual labels:  dns
Czds
simple golang API and programs to interact with czds.icann.org
Stars: ✭ 26 (-27.78%)
Mutual labels:  dns
Wait4x
Wait4X is a cli tool to wait for everything! It can be wait for a port to open or enter to rquested state.
Stars: ✭ 30 (-16.67%)
Mutual labels:  dns
Pihole config
My personal configuration for pihole
Stars: ✭ 23 (-36.11%)
Mutual labels:  dns
Hev Socks5 Server
A simple, lightweight socks5 server for Unix (Linux/BSD/macOS)
Stars: ✭ 33 (-8.33%)
Mutual labels:  dns
Floating Elephants
Docker containers for Hadoop.
Stars: ✭ 19 (-47.22%)
Mutual labels:  dns
Satellite
Satellite: Measuring The Internet's Stars
Stars: ✭ 30 (-16.67%)
Mutual labels:  dns
Fastdns
fastDNS is an authoritative only, high performance, simple and open source name server based on DPDK and NSD server
Stars: ✭ 12 (-66.67%)
Mutual labels:  dns

dnstwister

A Python 3 Heroku-hostable web-application wrapping the excellent dnstwist.

Build Status

Deploy

dnstwist

In the author's words, dnstwist helps you "...find similar-looking domains that adversaries can use to attack you..."

This project, dnstwister, gives you access to the power of dnstwist via a convenient Heroku-deployable Python flask-based web interface and offers csv/json reports and a fully featured RESTful API.

This project uses a modified version of dnstwist, in dnstwister/dnstwist.

I have kept the original dnstwist README and LICENCE but I have applied an "Unlicense" to dnstwister.

Though the licences are different (dnstwist uses an Apache licence), this is an acceptable use of dnstwist in my project.

dnstwister.report

The SaaS offering dnstwister.report grew out of this repository, but as of October 2019 the core code that runs dnstwister.report was forked from this dnstwister repository into a private repository. This was done to:

  • Clearly separate the code required to run a web-scale SaaS offering from that required to host your own dnstwister instance - for instance email gateways and FaaS endpoints.

  • Allow for the introduction of my own IP beyond that of the core dnstwist module authored by elceef.

To ensure I am respecting the dnstwist licence the dnstwist module embedded in this repository will always match that used in dnstwister.report.

The current version of dnstwist used in this repository and in dnstwister.report is available here, including the original Apache LICENCE.

Pull requests against this repository may or may not be merged into this repository and/or the private repository, as appropriate.

Contributors

Developing and running dnstwister

You need Python 3.7.6.

Once-off setup:

pip install pipenv
pipenv install --dev

Running:

pipenv run python local_server.py

And browse via http://localhost:5000

Running dnstwister using Docker

If you don't have Docker installed, you can click here for Docker CE, and follow the installation steps.

Building and Running locally

# Cloning latest source code
git clone https://github.com/thisismyrobot/dnstwister

# Changing directory
cd dnstwister

# Building dnstwister image using Dockerfile
docker build -t dnstwister .

# Running the application inside a container
docker run -td -p 5000:5000 --name myapp dnstwister

Now, go to http://localhost:5000 using any browser to use dnstwister.

Fetching pre-built image

Alternatively, you can pull the pre-built image from DockerHub, and run locally. This way, you wouldn't have to wait for the build time.

docker pull dnstwister/dnstwister:2.9.3
docker run -td -p 5000:5000 --name myapp dnstwister/dnstwister:2.9.3

Now, go to http://localhost:5000 using any browser to use dnstwister.

Tests

Running:

pipenv run py.test

Say hello

I'd love to hear your feedback so email me, fire off a tweet in my general direction! :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].