CyberSoft FAQ Answers
Help With the VFind™ Security Toolkit
Q:
What is the proper command to call VFind™ from AMaViS?
A:
chop($output = `/usr/local/vstk/bin/uad -ssw $TEMPDIR/parts/* | $vfind -ssr -vexit $TEMPDIR/parts/*`);
Note also that this line from amavis/av/cyber is wrong:
@virusname = ($output =~ /##==>>>> VIRUS ID: CVDL (.+)/g);
and should be:
@virusname = ($output =~ /##==>>>> VIRUS ID: (.+)/g);
Back