├── .codeclimate.yml ├── .gitattributes ├── .github └── FUNDING.yml ├── .markdownlint.json ├── .t ├── ci-clamav-clean.sh ├── ci-clamav-download-default-databases-git.sh ├── ci-clamav-download-default-databases.sh ├── ci-clamav-install-macos-clamav.sh ├── ci-clamav-install-macos-databases.sh ├── ci-clamav-install-ubuntu-databases.sh ├── ci-force.sh ├── ci-shellcheck.sh ├── ci-test-macos.sh ├── ci-test-ubuntu.sh ├── clamdb │ └── sample-bytecode.cvd └── tests │ ├── user.conf │ ├── user_low.conf │ ├── user_malwareexpert.conf │ └── user_wget.conf ├── .travis.yml ├── INSTALL.md ├── LICENSE ├── README.md ├── clamav-unofficial-sigs.sh ├── config ├── master.conf ├── os │ ├── os.alpine.conf │ ├── os.archlinux.conf │ ├── os.centos.conf │ ├── os.centos6-cpanel.conf │ ├── os.centos6.conf │ ├── os.centos7-atomic.conf │ ├── os.centos7-cpanel.conf │ ├── os.debian.conf │ ├── os.debian7.conf │ ├── os.debian8.conf │ ├── os.debian8.systemd.conf │ ├── os.fedora.conf │ ├── os.freebsd.conf │ ├── os.gentoo.conf │ ├── os.macos.conf │ ├── os.mailcleaner.conf │ ├── os.openbsd.conf │ ├── os.opensuse.conf │ ├── os.pfsense.conf │ ├── os.raspbian.conf │ ├── os.slackware.conf │ ├── os.solaris10.conf │ ├── os.solaris11.conf │ ├── os.ubuntu.conf │ └── os.zimbra.conf ├── packaging │ ├── os.centos6.conf │ └── os.centos7.conf └── user.conf ├── dev └── test_yara_rules.sh ├── guides ├── centos7.md ├── macos.md ├── pfsense.md └── ubuntu-debian.md └── systemd ├── clamav-unofficial-sigs.service ├── clamav-unofficial-sigs.timer └── clamd.scan.service /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false 3 | } 4 | -------------------------------------------------------------------------------- /.t/ci-clamav-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-clamav-clean.sh -------------------------------------------------------------------------------- /.t/ci-clamav-download-default-databases-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-clamav-download-default-databases-git.sh -------------------------------------------------------------------------------- /.t/ci-clamav-download-default-databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-clamav-download-default-databases.sh -------------------------------------------------------------------------------- /.t/ci-clamav-install-macos-clamav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-clamav-install-macos-clamav.sh -------------------------------------------------------------------------------- /.t/ci-clamav-install-macos-databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-clamav-install-macos-databases.sh -------------------------------------------------------------------------------- /.t/ci-clamav-install-ubuntu-databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-clamav-install-ubuntu-databases.sh -------------------------------------------------------------------------------- /.t/ci-force.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-force.sh -------------------------------------------------------------------------------- /.t/ci-shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-shellcheck.sh -------------------------------------------------------------------------------- /.t/ci-test-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-test-macos.sh -------------------------------------------------------------------------------- /.t/ci-test-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/ci-test-ubuntu.sh -------------------------------------------------------------------------------- /.t/clamdb/sample-bytecode.cvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/clamdb/sample-bytecode.cvd -------------------------------------------------------------------------------- /.t/tests/user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/tests/user.conf -------------------------------------------------------------------------------- /.t/tests/user_low.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/tests/user_low.conf -------------------------------------------------------------------------------- /.t/tests/user_malwareexpert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/tests/user_malwareexpert.conf -------------------------------------------------------------------------------- /.t/tests/user_wget.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.t/tests/user_wget.conf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/.travis.yml -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/README.md -------------------------------------------------------------------------------- /clamav-unofficial-sigs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/clamav-unofficial-sigs.sh -------------------------------------------------------------------------------- /config/master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/master.conf -------------------------------------------------------------------------------- /config/os/os.alpine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.alpine.conf -------------------------------------------------------------------------------- /config/os/os.archlinux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.archlinux.conf -------------------------------------------------------------------------------- /config/os/os.centos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.centos.conf -------------------------------------------------------------------------------- /config/os/os.centos6-cpanel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.centos6-cpanel.conf -------------------------------------------------------------------------------- /config/os/os.centos6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.centos6.conf -------------------------------------------------------------------------------- /config/os/os.centos7-atomic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.centos7-atomic.conf -------------------------------------------------------------------------------- /config/os/os.centos7-cpanel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.centos7-cpanel.conf -------------------------------------------------------------------------------- /config/os/os.debian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.debian.conf -------------------------------------------------------------------------------- /config/os/os.debian7.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.debian7.conf -------------------------------------------------------------------------------- /config/os/os.debian8.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.debian8.conf -------------------------------------------------------------------------------- /config/os/os.debian8.systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.debian8.systemd.conf -------------------------------------------------------------------------------- /config/os/os.fedora.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.fedora.conf -------------------------------------------------------------------------------- /config/os/os.freebsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.freebsd.conf -------------------------------------------------------------------------------- /config/os/os.gentoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.gentoo.conf -------------------------------------------------------------------------------- /config/os/os.macos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.macos.conf -------------------------------------------------------------------------------- /config/os/os.mailcleaner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.mailcleaner.conf -------------------------------------------------------------------------------- /config/os/os.openbsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.openbsd.conf -------------------------------------------------------------------------------- /config/os/os.opensuse.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.opensuse.conf -------------------------------------------------------------------------------- /config/os/os.pfsense.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.pfsense.conf -------------------------------------------------------------------------------- /config/os/os.raspbian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.raspbian.conf -------------------------------------------------------------------------------- /config/os/os.slackware.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.slackware.conf -------------------------------------------------------------------------------- /config/os/os.solaris10.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.solaris10.conf -------------------------------------------------------------------------------- /config/os/os.solaris11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.solaris11.conf -------------------------------------------------------------------------------- /config/os/os.ubuntu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.ubuntu.conf -------------------------------------------------------------------------------- /config/os/os.zimbra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/os/os.zimbra.conf -------------------------------------------------------------------------------- /config/packaging/os.centos6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/packaging/os.centos6.conf -------------------------------------------------------------------------------- /config/packaging/os.centos7.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/packaging/os.centos7.conf -------------------------------------------------------------------------------- /config/user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/config/user.conf -------------------------------------------------------------------------------- /dev/test_yara_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/dev/test_yara_rules.sh -------------------------------------------------------------------------------- /guides/centos7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/guides/centos7.md -------------------------------------------------------------------------------- /guides/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/guides/macos.md -------------------------------------------------------------------------------- /guides/pfsense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/guides/pfsense.md -------------------------------------------------------------------------------- /guides/ubuntu-debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/guides/ubuntu-debian.md -------------------------------------------------------------------------------- /systemd/clamav-unofficial-sigs.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/systemd/clamav-unofficial-sigs.service -------------------------------------------------------------------------------- /systemd/clamav-unofficial-sigs.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/systemd/clamav-unofficial-sigs.timer -------------------------------------------------------------------------------- /systemd/clamd.scan.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extremeshok/clamav-unofficial-sigs/HEAD/systemd/clamd.scan.service --------------------------------------------------------------------------------