Now with the 6.2 release (available in beta as I write this), ClamAV support has been added and can be used either as the stand-alone scanner or as the secondary to McAfee. To use ClamAV with Kerio MailServer you need to get /usr/local/sbin/clamd running on the Mac (basically the same procedure applys to Linux). Gparted mac free download. GParted GNOME Partition Editor for creating, reorganizing, and deleting disk partitions. It uses libparted f. Jan 14, 2014 ClamAV 0.98.1 provides improved support of Mac OS X platform, support for new file types, and quality improvements. These include: - Extraction, decompression, and scanning of files within Apple Disk Image (DMG) format. Extraction, decompression, and scanning of files within Extensible Archive (XAR) format.
This page is a wiki. Please login or create an account to begin editing.Rating: | |
Category: | |
Year released: | |
Author: | Mark Allan |
Publisher: |
ClamXav_2.7.5.dmg (21.12 MB)
MD5: 1db33a577e9b0e3e1289cfb3da939e60
For Mac OS X
ClamXav_2.5.1.dmg (19.21 MB)
MD5: d6baf435d753e12101f26765ecbf29d3
For Mac OS X
ClamXav_2.2.1.dmg (12.93 MB)
MD5: 96026bdad2c8c9214b7a76f38deaf0d3
For Mac OS X
ClamXav_1.1.1_Panther.zip (1.74 MB)
MD5: 5485d7e31ef25ded033c7fce6d8d53b0
For Mac OS X
clamXav_0.8.7c.zip (2.82 MB)
MD5: fce66807a8e011e52a77001d7a2b9a00
For Mac OS X
Guides on emulating older applications
ClamAV is an extremely advanced command-line driven antivirus for UNIX based systems. ClamXav is a port for Mac OS X, complete with GUI interface. One of the best antivirus for OS X.
CompatibilityArchitecture: PPC x86 (Intel:Mac)
First download is for Snow Leopard (10.6), second is for Leopard (10.5), whilst the third is for Tiger (10.4). Last two are for Panther and Jaguar (10.3 and 10.2).
Although newer versions of the front end won't work on anything beyond their minimal requirements (obviously), you can actually compile and use a newer version of the Clam scanning engine with the older front ends (helpful for PowerPC users). Further more, their certificates are still updated regularly. Information on properly updating OS X Server's builtin Clam engine can be found here.
Note that the latest version of ClamXav is now proprietary. If you have anything beyond Snow Leopard (10.6), please purchase the latest version here. Thank you.
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/
/
result = `
cat
/Users/Shared/Quarantine/Quarantine
.txt`
#Echo Quarantine into EA
echo
'<result>$result</result>'