From 1a7e0afe837f1b4e74a530838d178518af517693 Mon Sep 17 00:00:00 2001 From: Theauditor <228822721+TheAuditorTool@users.noreply.github.com> Date: Mon, 13 Apr 2026 14:17:13 +0700 Subject: [PATCH] =?UTF-8?q?Remove=20runHorusec.sh=20=E2=80=94=20tool=20is?= =?UTF-8?q?=20archived=20and=20non-functional?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Horusec (ZupIT/horusec) is no longer maintained. The horusec-platform repo was archived March 2025 and the CLI's last release was v2.8.0 in June 2022. The Docker image has unfixed bugs on Docker >19.3, making the script non-functional on modern infrastructure. Closes #176 --- scripts/runHorusec.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 scripts/runHorusec.sh diff --git a/scripts/runHorusec.sh b/scripts/runHorusec.sh deleted file mode 100755 index 1ae715ac0e..0000000000 --- a/scripts/runHorusec.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -# Check for install/updates at https://github.com/ZupIT/horusec - -source scripts/requireCommand.sh -requireCommand docker - -# Make sure we're using most recent version -docker pull horuszup/horusec-cli - -benchmark_version=$(scripts/getBenchmarkVersion.sh) -horusec_version=$(docker run --rm horuszup/horusec-cli horusec version 2>&1 | grep Version | awk '{print $NF}') - -result_file="./results/Benchmark_$benchmark_version-horusec-$horusec_version.json" -docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - -v "$(pwd)":/src horuszup/horusec-cli \ - horusec start -p /src -P "$(pwd)" -t 3600 \ - -i='results/*,scorecard/*,scripts/*' \ - -o="json" -O="$result_file"