From 79367a6deb7fa679ef3d6ea7a246ad59628e80bf Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 12 Dec 2022 18:06:11 +0100 Subject: [PATCH] add setup script --- setup.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..1e5a38a --- /dev/null +++ b/setup.sh @@ -0,0 +1,24 @@ +#/bin/env bash + +set -xe + +# Install a bunch of tools +apt-get update && apt-get install p7zip-full wget tar -y + +# Get rockyou.txt +wget knt.li/rockyou +tar -xzf rockyou +rm rockyou + +# Get the 1000 most used words in the english language +wget https://gist.githubusercontent.com/deekayen/4148741/raw/98d35708fa344717d8eee15d11987de6c8e26d7d/1-1000.txt + +# Get the Battlefield hashes +wget http://www.adeptus-mechanicus.com/codex/hashpass/bfield.hash.7z +7z x bfield.hash.7z +rm bfield.hash.7z + +# Get hashcat's example files +wget https://github.com/hashcat/hashcat/raw/master/example0.hash +wget https://github.com/hashcat/hashcat/raw/master/rules/dive.rule +