From b385a787e88aff69a973520d9ccd887f2e7164c8 Mon Sep 17 00:00:00 2001 From: Alexis Martin Date: Tue, 28 Feb 2023 09:06:46 +0100 Subject: [PATCH] Fix kerbrute tool (AMD + ARM) --- sources/install.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/sources/install.sh b/sources/install.sh index 83457bad6..78834331e 100644 --- a/sources/install.sh +++ b/sources/install.sh @@ -2456,16 +2456,9 @@ function install_crackhound() { function install_kerbrute() { colorecho "Installing Kerbrute" - if [[ $(uname -m) = 'x86_64' ]] - then - wget https://github.com/ropnop/kerbrute/releases/latest/download/kerbrute_linux_amd64 -O /opt/tools/bin/kerbrute - else - criticalecho-noexit "This installation function doesn't support architecture $(uname -m)" && return - fi - chmod +x /opt/tools/bin/kerbrute + go install github.com/ropnop/kerbrute@latest add-history kerbrute add-test-command "kerbrute --help" - # FIXME ARM platforms install ? } function install_searchsploit() {