Sync all scripts from website downloads — 352 scripts total

Includes updated JS challenge scripts with Claude-User whitelist,
same-site referer bypass, Blackbox-Exporter allowed bot, and all
new exporters, cheat sheets, and automation scripts.
This commit is contained in:
2026-05-25 03:31:08 +02:00
parent dbd6bf0324
commit a1a17e81a1
332 changed files with 174509 additions and 1106 deletions
+3 -3
View File
@@ -6,7 +6,7 @@
### ###
### Phil Connor, contact@mylinux.work ###
### License: MIT ###
### Version 2.28.0.20250915 ###
### Version 2.28.1.20260421 ###
### ###
#####################################################
@@ -18,7 +18,7 @@ DRY_RUN=false
VERBOSE=false
QUIET=false
NO_CRON=false
SCRIPT_VERSION="2.28.0.20250915"
SCRIPT_VERSION="2.28.1.20260421"
show_version() {
echo "Salt Status Monitor Bash Script"
@@ -331,7 +331,7 @@ count_salt_errors() {
# Count ERROR lines from last 24 hours
local error_count
error_count=$(grep -c "\[ERROR\]" "$log_file" 2>/dev/null)
error_count=$(grep -c "\[ERROR\]" "$log_file" 2>/dev/null || true)
echo "${error_count:-0}"
}