Files
glpi-neuroforge-mega/scripts/secret-scan.sh
T
groot e0bf42bf32
mega-ci / static-release-gates (push) Failing after 11s
release-tag / release-image (push) Successful in 6m46s
mega-ci / go-quality (services/control) (push) Successful in 10m7s
mega-ci / go-quality (platform/neuroforge) (push) Successful in 10m20s
mega-ci / go-quality (services/agent) (push) Successful in 11m1s
mega-ci / go-quality (services/knowledge) (push) Successful in 11m13s
mega-ci / docker-build (push) Has been skipped
update
2026-09-09 11:10:31 +02:00

89 lines
3.5 KiB
Bash
Executable File

#!/bin/sh
set -eu
fail=0
bad() { echo "secret-scan: ERROR: $*" >&2; fail=1; }
ROOT=$(CDPATH= cd -- "$(dirname "$0")/.." && pwd)
cd "$ROOT"
TMP_BASE=${TMPDIR:-/tmp}/neuroforge-secret-scan.$$
FILES="$TMP_BASE.files"
KEYS="$TMP_BASE.keys"
TOKENS="$TMP_BASE.tokens"
trap 'rm -f "$FILES" "$KEYS" "$TOKENS"' EXIT HUP INT TERM
# Release archives intentionally do not contain .git. Use Git's tracked-file view
# when available, otherwise scan every regular file in the extracted release.
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
git ls-files > "$FILES"
HAVE_GIT=true
else
find . -type f ! -path './.git/*' -print | sed 's#^\./##' | sort > "$FILES"
HAVE_GIT=false
fi
# Private keys and common live-token shapes must not be committed. Placeholders in
# templates/docs are intentionally allowed.
# Distributed deployment bundles intentionally contain three complete `.env`
# templates. They must remain placeholder-only; every other private env/key file
# is still forbidden.
if grep -E '(^|/)\.env$|\.pem$|\.p12$|\.pfx$|(^|/)id_rsa$|(^|/)id_ed25519$' "$FILES" \
| grep -Ev '^deployments/(master|cpu-subagent|gpu-subagent|agent|knowledge|ollama|combined)/\.env$' >/dev/null; then
bad "private environment/key material found"
fi
if [ "$HAVE_GIT" = true ]; then
if git grep -nE -- '-----BEGIN (RSA |EC |OPENSSH |DSA )?PRIVATE KEY-----' -- ':!*.example' ':!*.md' >"$KEYS" 2>/dev/null; then
cat "$KEYS" >&2; bad "private key material found"
fi
if git grep -nE -- '(AKIA[0-9A-Z]{16}|gh[pousr]_[A-Za-z0-9]{20,}|sk-[A-Za-z0-9_-]{24,})' -- ':!*.example' >"$TOKENS" 2>/dev/null; then
cat "$TOKENS" >&2; bad "token-like credential found"
fi
else
# Fallback for release ZIPs: recurse through extracted source while preserving
# the same exclusions as the Git-backed scan.
if grep -RInE --exclude='*.example' --exclude='*.md' --exclude-dir='.git' -- \
'-----BEGIN (RSA |EC |OPENSSH |DSA )?PRIVATE KEY-----' . >"$KEYS" 2>/dev/null; then
cat "$KEYS" >&2; bad "private key material found"
fi
if grep -RInE --exclude='*.example' --exclude-dir='.git' -- \
'(AKIA[0-9A-Z]{16}|gh[pousr]_[A-Za-z0-9]{20,}|sk-[A-Za-z0-9_-]{24,})' . >"$TOKENS" 2>/dev/null; then
cat "$TOKENS" >&2; bad "token-like credential found"
fi
fi
# Checked-in deployment .env files are templates, never live configuration.
for envf in \
deployments/master/.env \
deployments/cpu-subagent/.env \
deployments/gpu-subagent/.env \
deployments/agent/.env \
deployments/knowledge/.env \
deployments/ollama/.env \
deployments/combined/.env; do
[ -f "$envf" ] || continue
if awk -F= '
/^[[:space:]]*#/ || NF < 2 { next }
{
key=$1; sub(/^[[:space:]]+/, "", key); sub(/[[:space:]]+$/, "", key)
val=$0; sub(/^[^=]*=/, "", val)
if (key ~ /(TOKEN|PASSWORD|SECRET|CLIENT_ID|CLIENT_SECRET|API_KEY)$/ && val != "" && val !~ /^CHANGE_ME/) {
print FILENAME ":" NR ": live-looking secret in " key > "/dev/stderr";
bad=1
}
}
END { exit bad ? 1 : 0 }
' "$envf"; then :; else bad "deployment template contains a non-placeholder secret: $envf"; fi
done
# Reject accidental binary blobs outside explicitly expected assets.
while IFS= read -r f; do
[ -f "$f" ] || continue
case "$f" in *.png|*.jpg|*.jpeg|*.gif|*.ico|*.woff|*.woff2|*.pdf|*.zip) continue;; esac
if [ "$(LC_ALL=C grep -Il . "$f" 2>/dev/null || true)" = "" ] && [ -s "$f" ]; then
bad "unexpected binary file: $f"
fi
done < "$FILES"
[ "$fail" -eq 0 ] || exit 1
echo "secret-scan: passed"