imunify get list of all infected files
imunify store data in SQLite database. To see a list of malware infected files, start sqllite with sqlite3 /var/imunify360/imunify360.db Data is stored in table malware_hits. To find the schema of the table, run .schema malware_hits We only want to orig_file column from the table, so run the SQL command select orig_file from malware_hits; Delete all … Read more