Skip to content
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

Domain generator indexing off by one #18

Open
chriselgee opened this issue Aug 29, 2023 · 0 comments
Open

Domain generator indexing off by one #18

chriselgee opened this issue Aug 29, 2023 · 0 comments

Comments

@chriselgee
Copy link

word1_idx = random.randint(1,len(words))

word2_idx = random.randint(1,len(words))

Problem: In a 100-line wordlist, this indexes lines 1 though 100. It should index 0 through 99. As written, when 100 is chosen, the function fails.
Recommended fix:

word1_idx = random.randint(0,len(words)-1)
word2_idx = random.randint(0,len(words)-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant