tune sensitivity of Trojan.Swizzor.Gen detection.

git-svn: trunk@5052
0.95
Török Edvin 16 years ago
parent 52cecde4c0
commit f6108b20aa
  1. 5
      ChangeLog
  2. 2
      libclamav/special.c

@ -1,3 +1,8 @@
Wed Apr 22 14:24:03 EEST 2009 (edwin)
-------------------------------------
* libclamav/special.c: tune sensitivity of Trojan.Swizzor.Gen
detection.
Mon Apr 20 17:41:14 EEST 2009 (edwin)
-------------------------------------
* clamd/session.c: fix STATS for INSTREAM commands (bb #1565).

@ -502,7 +502,7 @@ int cli_detect_swizz(struct swizz_stats *stats)
}
if (stats->total <= 337)
return CL_CLEAN;
if (stats->suspicious<<10 > 20*stats->total)
if (stats->suspicious<<10 > 40*stats->total)
return CL_VIRUS;
if (!stats->suspicious)
return CL_CLEAN;

Loading…
Cancel
Save