From 3075ad34a5a98f32715bdf8100f8800fdc513f3b Mon Sep 17 00:00:00 2001 From: Developer Date: Tue, 21 Apr 2026 20:19:09 -0400 Subject: [PATCH] Update: Use latest Maldet v2.0.1-rc4 instead of old 1.6.6.1 Change: Updated download sources to prioritize v2.0.1-rc4 (released Apr 20, 2026) Reason: - v1.6.6.1 is from Feb 26, 2025 (over 1 year old, not maintained) - v2.0.1-rc4 is latest release with recent improvements - Tested v2.0.1-rc4: Installation succeeds, downloads 51,545 signatures Download sources now (in priority order): 1. v2.0.1-rc4 (Latest - Apr 20, 2026) 2. 1.6.6.1 (Stable fallback - Feb 26, 2025) 3. main branch (Development) Maldet now installs cleanly with current signature database. --- modules/security/malware-scanner.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/security/malware-scanner.sh b/modules/security/malware-scanner.sh index c137d52..e6e8c87 100755 --- a/modules/security/malware-scanner.sh +++ b/modules/security/malware-scanner.sh @@ -289,8 +289,9 @@ install_maldet_only() { # Format: "name|url|label" (using | as delimiter to avoid splitting https://) # Note: Repository is rfxn/linux-malware-detect (not maldet) local sources=( - "github-api|https://api.github.com/repos/rfxn/linux-malware-detect/tarball/1.6.6.1|GitHub Release 1.6.6.1" - "github-main|https://github.com/rfxn/linux-malware-detect/archive/refs/heads/main.tar.gz|GitHub main branch" + "github-api|https://api.github.com/repos/rfxn/linux-malware-detect/tarball/v2.0.1-rc4|GitHub Release v2.0.1-rc4 (Latest)" + "github-1.6|https://api.github.com/repos/rfxn/linux-malware-detect/tarball/1.6.6.1|GitHub Release 1.6.6.1 (Stable)" + "github-main|https://github.com/rfxn/linux-malware-detect/archive/refs/heads/main.tar.gz|GitHub main branch (Development)" ) echo "Attempting to download from sources..."