Skip to content

Commit

Permalink
seeds should be ordered
Browse files Browse the repository at this point in the history
  • Loading branch information
Benji York committed Aug 3, 2017
1 parent f3218d8 commit 164e6d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qadars/dga.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def dga(date, seed):
print(domain)

if __name__ == "__main__":
seeds = {"89f5", "4449", "E1F1", "E1F2", "E08A", "E1F5"}
seeds = ["89f5", "4449", "E1F1", "E1F2", "E08A", "E1F5"]
parser = argparse.ArgumentParser()
parser.add_argument("-d", "--date",
help="date for which to generate domains")
Expand Down

0 comments on commit 164e6d0

Please sign in to comment.