Installation

# create folder
mkdir dnstwist

# create virtual env
python3 -m venv dnstwist

# enter virtualenv
source dnstwist/source/active

# install dnstwist
pip install dnstwist[full]

# optional: leave environment
deactivate

start searching

# searching for domain typos
dnstwist domain.de

# show only connected domains
dnstwist -r domain.de

# change output format
dnstwist domain.de -f csv

# export the result to csv
dnstwist -r domain.de --format csv --output dnstwist_domain-de.csv

source