I understand the basics of how to add Malware Exclusions. However, I cannot figure out how to deal with some false-positives without severely crippling malware detection and basically making me want to just disable it all together because of the amount of time I have to spend dealing with false-positives because of the lack of granularity.
Here’s an example:
C:\Program Files (x86)\App\FileSec.xml.encrypted
C:\Program Files (x86)\App\Bin\FileSec.xml.encryptedThe files above are easy enough to deal with but the app periodically creates a backup of it’s settings and those two files are replicated to a new path, each time a backup is performed. Example:
C:\ProgramData\AppBackup.76\FileSec.xml.encrypted
C:\ProgramData\AppBackup.76\Bin\FileSec.xml.encryptedThe next backup will be:
C:\ProgramData\AppBackup.77\FileSec.xml.encrypted
C:\ProgramData\AppBackup.77\Bin\FileSec.xml.encryptedHow do I deal with this? Since wildcards can’t be used, the only options that I can think of are to exclude the .encrypted extension or exclude the entire C:\ProgramData\ directory. Both of those options seem too aggressive.
