• package: tis-clamwin
  • name: ClamWin
  • version: 0.103.2.1-12
  • categories: Utilities,Security,System and network
  • maintainer: Tranquil IT Systems - BRAYE Benjamin
  • editor: ClamWin Pty Ltd
  • licence: Freeware
  • locale: all
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 236.89 Mo
  • installed_size: 190.97 Mo
  • homepage : http://www.clamwin.com/

package           : tis-clamwin
version           : 0.103.2.1-12
architecture      : all
section           : base
priority          : optional
name              : ClamWin
categories        : Utilities,Security,System and network
maintainer        : Tranquil IT Systems - BRAYE Benjamin
description       : ClamWin is a Free Antivirus program for Microsoft Windows 10 / 8 / 7 / Vista / XP / Me / 2000 / 98 and Windows Server 2012, 2008 and 2003.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : 
installed_size    : 190971904
impacted_process  : 
description_fr    : ClamWin est un Antivirus Gratuit pour Microsoft Windows 98/Me/2000/XP/2003/Vista.
description_pl    : ClamWin to darmowy program antywirusowy dla systemów Microsoft Windows 10 / 8 / 7 / Vista / XP / Me / 2000 / 98 oraz Windows Server 2012, 2008 i 2003
description_de    : ClamWin ist ein freies Antivirenprogramm für Microsoft Windows 98/Me/2000/XP/2003/Vista
description_es    : ClamWin es un antivirus libre para Microsoft Windows 98/Me/2000/XP/2003/Vista.
description_pt    : ClamWin é um programa antivírus gratuito para Microsoft Windows 10 / 8 / 7 / Vista / XP / Me / 2000 / 98 e Windows Server 2012, 2008 e 2003
description_it    : ClamWin è un programma antivirus gratuito per Microsoft Windows 10 / 8 / 7 / Vista / XP / Me / 2000 / 98 e Windows Server 2012, 2008 e 2003
description_nl    : ClamWin is een Gratis Antivirus programma voor Microsoft Windows 10 / 8 / 7 / Vista / XP / Me / 2000 / 98 en Windows Server 2012, 2008 en 2003
description_ru    : ClamWin - это бесплатная антивирусная программа для Microsoft Windows 10 / 8 / 7 / Vista / XP / Me / 2000 / 98 и Windows Server 2012, 2008 и 2003
audit_schedule    : 
editor            : ClamWin Pty Ltd
keywords          : 
licence           : Freeware
homepage          : http://www.clamwin.com/
package_uuid      : 74aadc59-4d9d-4b45-8ffb-cb2f22da1574
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 5.0
max_os_version    : 
icon_sha256sum    : 0ab005931bd1dc58d23aed7009a4a5f7f72d8903378f8c1c220333d487e397bd
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : CljnUcmSbj2tira3Pg4nZCSo+SjVMvVCyVa8jdbzzbUFbfRsLesCHD3jgeK+O19qU1XM1AArkdz0cn4xSqwkY+dqHF+FngJHlAOLukSGWjPMc0Mkc9yBaFYiZZ1eYyKZE18CNizC8r1KWlPGytEvT2m6/mg4DOt0k0dWCqza66yBMSn22CJQHr9WVwcKY4zLHAo1Up3KzISGmNg8KEp/Y6907nmfsHYHEKd2iG8BsIvLTBonI1cfAIbyCRe30ZLWto5IIgmzUD094tljJws2zTnzafmVBdhQRDtWIll79ZQCQlaKA5otnblLQlC2EnErKTt5WdAChmFsu+2HdlX3Zw==
signature_date    : 2023-04-08T14:00:17.246418
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    install_exe_if_needed(
        glob.glob("*%s*.exe" % "clamwin")[0],
        silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-",
        key="ClamWin Free Antivirus_is1",
        min_version=control.get_software_version(),
        get_version=get_clam_version,
    )


def get_clam_version(key):
    return key["name"].rsplit(" ", 1)[1]

# -*- coding: utf-8 -*-
from setuphelpers import *
import json

def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    bin_name_sub = "clamwin" + "-%s.exe"
    app_name = control.name
    url_api = "https://sourceforge.net/projects/clamwin/best_release.json" 

    # Getting latest version from official website
    print("API used is: " + url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))
    version = json_load["platform_releases"]["windows"]["url"].split("/")[-2]
    latest_bin = "clamwin-%s-setup.exe" % version
    url_dl = json_load["platform_releases"]["windows"]["url"]
    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(Version(version))
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return result

f1f79e7044f3647956b237909ad07b9e0e635e2024c61b479927b57143266aae : setup.py
4f84cc4ace0ab73a563e8ace87b91e422252e2763c8d6b625e27081982d6d52c : update_package.py
ac9d76d87904efc62d976f7c6f8f1d9f459e9ad13cbe3e4e886005d3f14e0393 : clamwin-0.103.2.1-setup.exe
0ab005931bd1dc58d23aed7009a4a5f7f72d8903378f8c1c220333d487e397bd : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
9b4b8e5dd921ae9bf1d5b9c82ff39b817df86f42984998ac2a35b5d00aa3470f : WAPT/changelog.txt
d997ed19c676e1c79b4dcaae41be23f66055d6a74c30a45735594b77f5fb4610 : luti.json
1e708b514e8485d91d55f9cc3841b3c6b65420eee07f564bb58352f8fe6d428c : WAPT/control

Thursday, 15 March 2018
This security patch release updates ClamAV scanning engine to the latest version and addresses the following issues:

    ClamAV UAF Vulnerabilities
    ClamAV Buffer Overflow Vulnerabilities
    ClamAV Null Dereference Vulnerability
    A number of other outstanding vulnerability bugs