Announcement

Collapse
No announcement yet.

How to clear the log of past scans that did not detect any malware?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to clear the log of past scans that did not detect any malware?

    We want to clear the immunify log of old scans. We have at this time ImmunifyAV installed as we wanted to give it a try. Now after a couple of months we have this huge log, pages upon pages of "no malware found" on accounts.

    Its quite odd as on the left side one can check a box beside each scan result but the only action one can take from doing such is initiating a scan.

    We would like to have the ability to clear all the scans that provide no result. At the very least a simple "delete" option should be available.

    Otherwise it seems we will have to hunt down the log file and empty its contents manually. Which we think its very stupid we have to resort to such a method.

    Hopefully you have an easy solution to resolve this.

    Thank you.

  • #2
    Hello,
    To do this please try the following next steps:
    1. systemctl stop imunify-antivirus
    2. sqlite3 /var/imunify360/imunify360.db
    PRAGMA foreign_keys = ON;
    DELETE FROM malware_user_infected;
    DELETE FROM malware_scans where total_malicious = 0;
    3. systemctl start imunify-antivirus
    It is also important that the agent version is higher than 4.9, at the moment the current release is 5.3
    Hope to hear from you soon.

    Comment

    Working...
    X