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.
This commit is contained in:
cschantz
2025-12-23 16:54:31 -05:00
parent 94e3ca42c1
commit 50001c2e4a
+4
View File
@@ -1437,6 +1437,8 @@ else
echo "MALWARE SCAN REPORT - $scan_date" echo "MALWARE SCAN REPORT - $scan_date"
echo "═══════════════════════════════════════════════════════════" echo "═══════════════════════════════════════════════════════════"
echo "" echo ""
echo "Scanned with: ImunifyAV, ClamAV, Linux Maldet, RKHunter"
echo ""
if [ "$real_threats_count" -eq 0 ]; then if [ "$real_threats_count" -eq 0 ]; then
echo "RESULT: ✅ No malware found - your server is clean" echo "RESULT: ✅ No malware found - your server is clean"
@@ -2391,6 +2393,8 @@ generate_client_report() {
echo "MALWARE SCAN REPORT - $scan_date" echo "MALWARE SCAN REPORT - $scan_date"
echo "═══════════════════════════════════════════════════════════" echo "═══════════════════════════════════════════════════════════"
echo "" echo ""
echo "Scanned with: ImunifyAV, ClamAV, Linux Maldet, RKHunter"
echo ""
if [ ${#real_threats[@]} -eq 0 ]; then if [ ${#real_threats[@]} -eq 0 ]; then
echo "RESULT: ✅ No malware found - your server is clean" echo "RESULT: ✅ No malware found - your server is clean"