Skip to content

Commit

Permalink
Unzip rockyou wordlist during installation
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmercer committed Dec 10, 2024
1 parent 84401b1 commit 675153e
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .chezmoiscripts/linux/run_onchange_before_10_installs.sh.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -95,19 +95,25 @@ done
{{ if eq .osid "linux-kali" }}

# Install pipx packages
# NOTE: installing as root might mess this up
pipx_packages=(
"git+https://github.com/brightio/penelope.git"
"git+https://github.com/Tib3rius/AutoRecon.git"
"git+https://github.com/Densaugeo/uploadserver.git"
"git+https://github.com/arthaud/git-dumper.git"
"poetry"
"git+https://github.com/brightio/penelope.git"
"git+https://github.com/Tib3rius/AutoRecon.git"
"git+https://github.com/Densaugeo/uploadserver.git"
"git+https://github.com/arthaud/git-dumper.git"
"poetry"
)

for pipx_package in "${pipx_packages[@]}"; do
echo "Installing pipx package $pipx_package"
pipx install $pipx_package
echo "Installing pipx package $pipx_package"
pipx install $pipx_package
done

if [ -f /usr/share/wordlists/rockyou.gz ]; then
echo "Unzipping rockyou wordlist"
gzip -d /usr/share/wordlists/rockyou.gz
fi

{{ end }}

# install eza: https://github.com/eza-community/eza#debian-and-ubuntu
Expand Down

0 comments on commit 675153e

Please sign in to comment.