Sentry keeps an eye on any folder you choose. We’re going to set it to watch your Downloads folder, because that’s where new stuff shows up that we want scanned. This is the feature you only get if you buy directly from ClamXav.com and is not available in the Mac App Store version. A Macintosh OS X anti-virus software that uses the ClamAV anti-virus library. The project's focus is on usability. Its purpose is to develop native GUI-based binary distributions of a ClamAV-based anti-virus software that behaves as OS X users expect.
Why is ClamXav no longer available on the Mac App Store?
First things first, we at Canimaan Software Ltd love the Mac App Store. That Apple has provided a convenient location for users to feel safe downloading apps and games, is fantastic – a real bonus for users.
For developers, however, the situation is somewhat less rosy.
There are various technical restrictions on developing for the App Store which means certain types of applications will never be accepted. Although an older version of ClamXav was available in the App Store, further updates would not be possible without removing even more features than have already had to be removed. We would not like to charge our customers for an inferior product released through the App Store, therefore the decision was taken to withdraw entirely.
We will continue to monitor the situation, and will reassess if things change in the future.
Please note that ClamXav will always be available from this website.
There are a number of solutions on the market for scanning a Mac for files that have become infected with a virus or macro-virus. Many of these have a negative return on investment. So customers can instead go the open source route to scan files and quarantine them. And customers can use Jamf Pro to enable doing so. This page is meant to provide a quick and dirty guide to doing so, along with how this might be packaged and potentially tracked with Jamf Pro. First, we’ll install and configure a free tool called clamav.There are a number of ways to install clam. For this example, just to get it done quickly, we’ll use homebrew which is simply brew with the install verb and clamav as the recipe to be brewed:This is going to place your configuration files in /usr/local/etc/clamav and these cannot be used as those supplied by default are simply sample configurations. Because the .sample files have a line that indicates they are an “Example” they cannot be used. So we’ll copy the sample configuration files for freshclam.conf and clamd.conf (the demonized version) and then remove the Example line using the following two lines:cp
/usr/local/etc/clamav/freshclam
.conf.sample
/usr/local/etc/clamav/freshclam
.conf;
sed
-ie
's/^Example/#Example/g'
/usr/local/etc/clamav/freshclam
.conf
cp
/usr/local/etc/clamav/clamd
.conf.sample
/usr/local/etc/clamav/clamd
.conf;
sed
-ie
's/^Example/#Example/g'
/usr/local/etc/clamav/clamd
.conf
sudo
mkdir
/Users/Shared/Quarantine
sudo
clamscan -r — scan-pdf=
yes
-l
/Users/Shared/Quarantine/Quarantine
.txt — move=
/Users/Shared/Quarantine/
/
Clamav Mac Os
result = `
cat
/Users/Shared/Quarantine/Quarantine
.txt`
#Echo Quarantine into EA
echo
'<result>$result</result>'
Comments are closed.