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

Updated some more password types #37

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion cupp.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,13 +608,26 @@ def generate_wordlist_from_profile(profile):
komb004 = [""]
komb005 = [""]
komb006 = [""]
komb007 = ['']
komb008 = ['']
if spechars1 == "y":
komb001 = list(komb(kombinaa, spechars))
komb002 = list(komb(kombinaac, spechars))
komb003 = list(komb(kombinaaw , spechars))
komb004 = list(komb(kombinaak , spechars))
komb005 = list(komb(word, spechars))
komb006 = list(komb(reverse, spechars))
komb007 = list(komb(spechars,kombinaa))
komb008 = list(komb(spechars,komb13))
if len(profile["spechars"]) > 0:
komb001 = list(komb(kombinaa, profile["spechars"]))
komb002 = list(komb(kombinaac, profile["spechars"]))
komb003 = list(komb(kombinaaw, profile["spechars"]))
komb004 = list(komb(kombinaak, profile["spechars"]))
komb005 = list(komb(word, profile["spechars"]))
komb006 = list(komb(reverse, profile["spechars"]))
komb007 = list(komb(profile["spechars"],kombinaa))
komb008 = list(komb(profile["spechars"],komb13))

print("[+] Sorting list and removing duplicates...")

Expand All @@ -633,6 +646,8 @@ def generate_wordlist_from_profile(profile):
komb_unique010 = list(dict.fromkeys(komb004).keys())
komb_unique011 = list(dict.fromkeys(komb005).keys())
komb_unique012 = list(dict.fromkeys(komb006).keys())
komb_unique013 = list(dict.fromkeys(komb007).keys())
komb_unique014 = list(dict.fromkeys(komb008).keys())

uniqlist = (
bdss
Expand All @@ -656,6 +671,9 @@ def generate_wordlist_from_profile(profile):
+ komb_unique010
+ komb_unique011
+ komb_unique012
+ komb_unique013
+ komb_unique014

)
unique_lista = list(dict.fromkeys(uniqlist).keys())
unique_leet = []
Expand Down Expand Up @@ -1065,4 +1083,4 @@ def get_parser():


if __name__ == "__main__":
main()
main()