Program tarafımdan yazılmıştır.
Programın içinden nasıl kullanılacağını öğrenebilrsiniz veya isterseniz geliştirip kullanabilirsiniz. Program biraz karışık olabilir ingilizce yazdığımdan dolayı kurcalayıp öğrenebilirsiniz.
Link =
Wordlist Program
program =
passlister.py =
wordlister.py =
Programın içinden nasıl kullanılacağını öğrenebilrsiniz veya isterseniz geliştirip kullanabilirsiniz. Program biraz karışık olabilir ingilizce yazdığımdan dolayı kurcalayıp öğrenebilirsiniz.
Link =
Wordlist Program
program =
passlister.py =
Kod:
# This little program is coded by Fenomachine. You can do anything you want with the code.
my_file = open("passlist.txt", "r+")
my_names = open("passlister-files/names.txt","r+")
my_years = open("passlister-files/years.txt","r+")
usage = open("passlister-files/readme-passlister.txt","r+")
help = raw_input("If you want to know how the program works, write help. If not, Press anything. \n >>")
if help == "help":
print usage.read()
devam = raw_input("Press anything to continue")
names = []
years = []
for lines in my_names:
delete = filter(lambda x: x !="\n",lines)
names.append(delete)
my_names.close()
for lines in my_years:
delete2 = filter(lambda x: x !="\n",lines)
years.append(delete2)
my_years.close()
def printit(names,years):
for i in range(len(names)):
for j in range(len(years)):
my_file.write("".join(names[i])+ "".join(years[j]) + "\n")
printit(names,years)
my_file.close()
o = raw_input("Everything is ready. Press anything to close the program.")
wordlister.py =
Kod:
# This little program is coded by Fenomachine. You can do anything you want with the code.
userlist = open("wordlister-files/userlist.txt", "r+")
passlist = open("passlist.txt","r+")
wordlist = open("wordlist.txt", "r+")
wordlist.truncate()
usage = open("wordlister-files/readme-wordlister.txt","r+")
help = raw_input("If you want to know how the program works, write help. If not, Press anything. \n >>")
if help == "help":
print usage.read()
devam = raw_input("Press anything to continue")
users = []
passes = []
for lines in userlist:
delete = filter(lambda x: x !="\n",lines)
users.append(delete)
userlist.close()
for lines in passlist:
delete2 = filter(lambda x: x !="\n",lines)
passes.append(delete2)
passlist.close()
def doit(users,passes):
for x in range(len(users)):
for y in range(len(passes)):
wordlist.write("".join(users[x]) +":" +"".join(passes[y]) + "\n")
# for i in range(len(names)):
# for j in range(len(years)):
# my_file.write("".join(names[i])+ "".join(years[j]) + "\n")
doit(users,passes)
wordlist.close()
o = raw_input("Everything is ready. Press anything to close the program.")
Son düzenleme:


