Skip to content

Instantly share code, notes, and snippets.

@Microjus
Last active August 12, 2022 17:23
Show Gist options
  • Save Microjus/51c4f48e8b6893ba6221062996c4a6e2 to your computer and use it in GitHub Desktop.
Save Microjus/51c4f48e8b6893ba6221062996c4a6e2 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
deps=("john")
for a in ${deps[@]}; do
if [[ ! $(which $a 2>/dev/null) ]]; then
echo "Need install: $a."
exit 1
fi
done
clear ; echo '
███▄ ▄███▓ ██▓ ▄████▄ ██▀███ ▒█████
▓██▒▀█▀ ██▒▓██▒▒██▀ ▀█ ▓██ ▒ ██▒▒██▒ ██▒
▓██ ▓██░▒██▒▒▓█ ▄▓██ ░▄█ ▒▒██░ ██▒
▒██ ▒██ ░██░▒▓▓▄ ▄██▒██▀▀█▄ ▒██ ██░
▒██▒ ░██▒░██░▒ ▓███▀ ░██▓ ▒██▒░ ████▓▒░
░ ▒░ ░ ░░▓ ░ ░▒ ▒ ░ ▒▓ ░▒▓░░ ▒░▒░▒░
░ ░ ░ ▒ ░ ░ ▒ ░▒ ░ ▒░ ░ ▒ ▒░
░ ░ ▒ ░░ ░░ ░ ░ ░ ░ ▒
░ ░ ░ ░ ░ ░ ░
▄████▄ ██▀███ ▄▄▄ ▄████▄ ██ ▄█▀▒███████▒ ██▓ ██▓███
▒██▀ ▀█ ▓██ ▒ ██▒████▄ ▒██▀ ▀█ ██▄█▒ ▒ ▒ ▒ ▄▀░▓██▒▓██░ ██▒
▒▓█ ▄▓██ ░▄█ ▒██ ▀█▄ ▒▓█ ▄ ▓███▄░ ░ ▒ ▄▀▒░ ▒██▒▓██░ ██▓▒
▒▓▓▄ ▄██▒██▀▀█▄ ░██▄▄▄▄██▒▓▓▄ ▄██▒▓██ █▄ ▄▀▒ ░░██░▒██▄█▓▒ ▒
▒ ▓███▀ ░██▓ ▒██▒▓█ ▓██▒ ▓███▀ ░▒██▒ █▄▒███████▒░██░▒██▒ ░ ░
░ ░▒ ▒ ░ ▒▓ ░▒▓░▒▒ ▓▒█░ ░▒ ▒ ░▒ ▒▒ ▓▒░▒▒ ▓░▒░▒░▓ ▒▓▒░ ░ ░
░ ▒ ░▒ ░ ▒░ ▒ ▒▒ ░ ░ ▒ ░ ░▒ ▒░░░▒ ▒ ░ ▒ ▒ ░░▒ ░
░ ░░ ░ ░ ▒ ░ ░ ░░ ░ ░ ░ ░ ░ ░ ▒ ░░░
░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░
░ ░ ░
'
printf 'Inforem o nome do arquivo com o .zip: \n\n'
read -p '[+] ' _zip
zip2john $_zip > $_zip.txt &>/dev/null
sudo john --format=zip $_zip.txt
@Microjus
Copy link
Author

update

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment