-
Notifications
You must be signed in to change notification settings - Fork 83
Try a WHOIS blacklist for domain generation #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
a good idea |
Any idea where to get such a list? |
@JonLaliberte I didn't actually find anything good -- it is easy enough to do dynamic lookups but it gets expensive since the code is designed with a master list in mind. Let me know if you find anything! |
ICANN publishes most zone files here: https://czds.icann.org/ — the .com zone has over 100 million domains in it. I'm not sure that training on domain names will get great results. There is a lot of junk in there. I generated some words doing something like: from title_maker_pro.word_generator import WordGenerator
word_generator = WordGenerator(
device="cpu",
forward_model_path="<somepath1>",
inverse_model_path="<somepath2>",
blacklist_path="<blacklist>",
quantize=False,
)
# a word from scratch:
for id in range(30):
print(word_generator.generate_word()) From this set, over half of the words generated were available to register:
Not bad! |
No description provided.
The text was updated successfully, but these errors were encountered: