62 lines
1.6 KiB
Bash
Executable File
62 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -f cupp.py ]; then
|
|
wget https://github.com/Mebus/cupp/raw/refs/heads/master/cupp.py
|
|
fi
|
|
|
|
if [ ! -f cupp.cfg ]; then
|
|
wget https://github.com/Mebus/cupp/raw/refs/heads/master/cupp.cfg
|
|
fi
|
|
|
|
# NOTE: done interactively:
|
|
# $ python cupp.py -i direnv nix impure
|
|
# ___________
|
|
# cupp.py! # Common
|
|
# \ # User
|
|
# \ ,__, # Passwords
|
|
# \ (oo)____ # Profiler
|
|
# (__) )\
|
|
# ||--|| * [ Muris Kurgas | j0rgan@remote-exploit.org ]
|
|
# [ Mebus | https://github.com/Mebus/]
|
|
#
|
|
#
|
|
# [+] Insert the information about the victim to make a dictionary
|
|
# [+] If you don't know all the info, just hit enter when asked! ;)
|
|
#
|
|
# > First Name: Alice
|
|
# > Surname: Johnson
|
|
# > Nickname: AJ
|
|
# > Birthdate (DDMMYYYY): 15071990
|
|
#
|
|
#
|
|
# > Partners) name: Bob
|
|
# > Partners) nickname:
|
|
# > Partners) birthdate (DDMMYYYY):
|
|
#
|
|
#
|
|
# > Child's name: Charlie
|
|
# > Child's nickname:
|
|
# > Child's birthdate (DDMMYYYY):
|
|
#
|
|
#
|
|
# > Pet's name:
|
|
# > Company name:
|
|
#
|
|
#
|
|
# > Do you want to add some key words about the victim? Y/[N]:
|
|
# > Do you want to add special chars at the end of words? Y/[N]:
|
|
# > Do you want to add some random numbers at the end of words? Y/[N]:
|
|
# > Leet mode? (i.e. leet = 1337) Y/[N]:
|
|
#
|
|
# [+] Now making a dictionary...
|
|
# [+] Sorting list and removing duplicates...
|
|
# [+] Saving dictionary to alice.txt, counting 5180 words.
|
|
# > Hyperspeed Print? (Y/n) :
|
|
# [+] Now load your pistolero with alice.txt and shoot! Good luck!
|
|
|
|
if [ -f alice.txt ]; then
|
|
mv alice.txt passwords.txt
|
|
fi
|
|
|
|
./check_password.py
|