subdns
subdns copied to clipboard
More elegent way to generate dict
The make4_num.py
, why not use the recursive like this
def generate_four_dict(storage, x="", count=4):
if count == 0:
storage.append(x)
return
count = count - 1
for t in alpha:
generate_alpha(storage, x+t, count)