From 50001c2e4ad660efd9a54d439921a3c47680c58a Mon Sep 17 00:00:00 2001 From: cschantz Date: Tue, 23 Dec 2025 16:54:31 -0500 Subject: [PATCH] Add scanner list to client report Added line showing which scanners were used: Scanned with: ImunifyAV, ClamAV, Linux Maldet, RKHunter This lets customers know we used multiple professional-grade scanning engines without adding verbose explanations. Updated both inline and function versions. --- modules/security/malware-scanner.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/security/malware-scanner.sh b/modules/security/malware-scanner.sh index cca8ea7..a0000a7 100755 --- a/modules/security/malware-scanner.sh +++ b/modules/security/malware-scanner.sh @@ -1437,6 +1437,8 @@ else echo "MALWARE SCAN REPORT - $scan_date" echo "═══════════════════════════════════════════════════════════" echo "" + echo "Scanned with: ImunifyAV, ClamAV, Linux Maldet, RKHunter" + echo "" if [ "$real_threats_count" -eq 0 ]; then echo "RESULT: ✅ No malware found - your server is clean" @@ -2391,6 +2393,8 @@ generate_client_report() { echo "MALWARE SCAN REPORT - $scan_date" echo "═══════════════════════════════════════════════════════════" echo "" + echo "Scanned with: ImunifyAV, ClamAV, Linux Maldet, RKHunter" + echo "" if [ ${#real_threats[@]} -eq 0 ]; then echo "RESULT: ✅ No malware found - your server is clean"