So, I have been trying to generate a wordlist with birthday dates. I am trying to append each value to a newline in a file birdthday_wordlist.txt. The file and the format should be like this:
01/01/1998
02/01/1998
03/01/1998
dd/mm/yyyy
12/12/2000
I was capable of generating only the dd, mm or yyyy, with scripts like this:
with open('XXXXXX_wordlist.txt', 'w') as birdthday_wordlist:
for i in range(1980, 2000):
birdthday_wordlist.write('{}\n'.format(i))
I know there is a way, for now I couldn't figure it out.