├── .github ├── CODEOWNERS ├── contributing.md ├── issue_template.md ├── issue_template.md.license └── workflows │ ├── appstore-build-publish.yml │ ├── fixup.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── package.yml │ ├── phpunit-mysql.yml │ ├── phpunit-oci.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── phpunit-summary-when-unrelated.yml │ ├── pr-feedback.yml │ ├── psalm-matrix.yml │ ├── reuse.yml │ ├── scanner.yml │ └── update-nextcloud-ocp.yml ├── .gitignore ├── .nextcloudignore ├── .php-cs-fixer.dist.php ├── .scrutinizer.yml ├── .tx └── config ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── LICENSES ├── AGPL-3.0-only.txt ├── AGPL-3.0-or-later.txt ├── Apache-2.0.txt ├── CC0-1.0.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── appinfo ├── info.xml └── routes.php ├── composer.json ├── composer.lock ├── css └── settings.css ├── img ├── app.png ├── app.svg ├── shield-dark.svg ├── shield-green.svg └── shield-red.svg ├── js └── settings.js ├── krankerl.toml ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── an.js ├── an.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── bn_BD.js ├── bn_BD.json ├── br.js ├── br.json ├── bs.js ├── bs.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── cy_GB.js ├── cy_GB.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fi.php ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── hy.js ├── hy.json ├── ia.js ├── ia.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── km.js ├── km.json ├── kn.js ├── kn.json ├── ko.js ├── ko.json ├── lb.js ├── lb.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── ms_MY.js ├── ms_MY.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── no-php ├── no-php.license ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sk.php ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sr@latin.js ├── sr@latin.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── ta.js ├── ta.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── ur_PK.js ├── ur_PK.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── Activity │ ├── Filter.php │ ├── Provider.php │ └── Setting.php ├── AppConfig.php ├── AppInfo │ └── Application.php ├── AvirWrapper.php ├── BackgroundJob │ └── BackgroundScanner.php ├── CallbackReadDataWrapper.php ├── Command │ ├── BackgroundScan.php │ ├── Mark.php │ ├── Scan.php │ ├── Status.php │ └── Test.php ├── Controller │ ├── RuleController.php │ └── SettingsController.php ├── Db │ ├── Item.php │ ├── ItemMapper.php │ ├── Rule.php │ └── RuleMapper.php ├── Event │ ├── BeforeBackgroundScanEvent.php │ └── ScanStateEvent.php ├── ICAP │ ├── ICAPClient.php │ ├── ICAPRequest.php │ ├── ICAPTlsClient.php │ ├── IcapResponse.php │ ├── IcapResponseStatus.php │ └── ResponseParser.php ├── Item.php ├── ItemFactory.php ├── Migration │ ├── CleanupCronTask.php │ ├── Install.php │ ├── Version10400Date20180929132835.php │ └── Version60100Date20250424072838.php ├── Sabre │ └── PropfindPlugin.php ├── Scanner │ ├── ExternalClam.php │ ├── ExternalKaspersky.php │ ├── ICAP.php │ ├── IScanner.php │ ├── LocalClam.php │ ├── ScannerBase.php │ └── ScannerFactory.php ├── Settings │ └── Admin.php ├── Status.php └── StatusFactory.php ├── psalm.xml ├── screenshots ├── 1.png └── 1.png.license ├── templates ├── notification.php └── settings.php └── tests ├── AvirWrapperTest.php ├── BackgroundScannerTest.php ├── Db ├── ItemMapperTest.php └── RuleTest.php ├── DummyClam.php ├── ICAP ├── ICAPClientTest.php └── ResponseParserTest.php ├── Scanner ├── ExternalKasperskyTest.php ├── ICAPTest.php ├── ScannerBaseTest.php └── ScannerFactoryTest.php ├── StatusTest.php ├── TemporaryHome.php ├── TestBase.php ├── avir.sh ├── avirserver.php ├── bootstrap.php ├── data ├── foo.txt ├── foo.txt.license ├── icap │ ├── 403-response.txt │ ├── 403-response.txt.license │ ├── null-body.txt │ └── null-body.txt.license ├── kitten.inf └── kitten.inf.license ├── phpunit.xml ├── psalm-baseline.xml ├── psalm-baseline.xml.license └── stub.phpstub /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/issue_template.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/issue_template.md.license -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/fixup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/fixup.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/phpunit-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-oci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/phpunit-oci.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/phpunit-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-summary-when-unrelated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/phpunit-summary-when-unrelated.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/psalm-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.github/workflows/scanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/scanner.yml -------------------------------------------------------------------------------- /.github/workflows/update-nextcloud-ocp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.github/workflows/update-nextcloud-ocp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.gitignore -------------------------------------------------------------------------------- /.nextcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.nextcloudignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/LICENSES/AGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/composer.lock -------------------------------------------------------------------------------- /css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/css/settings.css -------------------------------------------------------------------------------- /img/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/img/app.png -------------------------------------------------------------------------------- /img/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/img/app.svg -------------------------------------------------------------------------------- /img/shield-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/img/shield-dark.svg -------------------------------------------------------------------------------- /img/shield-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/img/shield-green.svg -------------------------------------------------------------------------------- /img/shield-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/img/shield-red.svg -------------------------------------------------------------------------------- /js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/js/settings.js -------------------------------------------------------------------------------- /krankerl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/krankerl.toml -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/an.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/an.js -------------------------------------------------------------------------------- /l10n/an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/an.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/az.js -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/az.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/bn_BD.js -------------------------------------------------------------------------------- /l10n/bn_BD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/bn_BD.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/bs.js -------------------------------------------------------------------------------- /l10n/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/bs.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/cy_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/cy_GB.js -------------------------------------------------------------------------------- /l10n/cy_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/cy_GB.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/fi.php -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/hy.js -------------------------------------------------------------------------------- /l10n/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/hy.json -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ia.js -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ia.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/km.js -------------------------------------------------------------------------------- /l10n/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/km.json -------------------------------------------------------------------------------- /l10n/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/kn.js -------------------------------------------------------------------------------- /l10n/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/kn.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lb.js -------------------------------------------------------------------------------- /l10n/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lb.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/mn.js -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/mn.json -------------------------------------------------------------------------------- /l10n/ms_MY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ms_MY.js -------------------------------------------------------------------------------- /l10n/ms_MY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ms_MY.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/no-php: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /l10n/no-php.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2014 ownCloud, Inc. 2 | SPDX-License-Identifier: AGPL-3.0-only -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/si.js -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/si.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sk.php -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sr@latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sr@latin.js -------------------------------------------------------------------------------- /l10n/sr@latin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sr@latin.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ta.js -------------------------------------------------------------------------------- /l10n/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ta.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/ur_PK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ur_PK.js -------------------------------------------------------------------------------- /l10n/ur_PK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/ur_PK.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/Activity/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Activity/Filter.php -------------------------------------------------------------------------------- /lib/Activity/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Activity/Provider.php -------------------------------------------------------------------------------- /lib/Activity/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Activity/Setting.php -------------------------------------------------------------------------------- /lib/AppConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/AppConfig.php -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/AvirWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/AvirWrapper.php -------------------------------------------------------------------------------- /lib/BackgroundJob/BackgroundScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/BackgroundJob/BackgroundScanner.php -------------------------------------------------------------------------------- /lib/CallbackReadDataWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/CallbackReadDataWrapper.php -------------------------------------------------------------------------------- /lib/Command/BackgroundScan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Command/BackgroundScan.php -------------------------------------------------------------------------------- /lib/Command/Mark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Command/Mark.php -------------------------------------------------------------------------------- /lib/Command/Scan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Command/Scan.php -------------------------------------------------------------------------------- /lib/Command/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Command/Status.php -------------------------------------------------------------------------------- /lib/Command/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Command/Test.php -------------------------------------------------------------------------------- /lib/Controller/RuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Controller/RuleController.php -------------------------------------------------------------------------------- /lib/Controller/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Controller/SettingsController.php -------------------------------------------------------------------------------- /lib/Db/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Db/Item.php -------------------------------------------------------------------------------- /lib/Db/ItemMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Db/ItemMapper.php -------------------------------------------------------------------------------- /lib/Db/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Db/Rule.php -------------------------------------------------------------------------------- /lib/Db/RuleMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Db/RuleMapper.php -------------------------------------------------------------------------------- /lib/Event/BeforeBackgroundScanEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Event/BeforeBackgroundScanEvent.php -------------------------------------------------------------------------------- /lib/Event/ScanStateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Event/ScanStateEvent.php -------------------------------------------------------------------------------- /lib/ICAP/ICAPClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/ICAP/ICAPClient.php -------------------------------------------------------------------------------- /lib/ICAP/ICAPRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/ICAP/ICAPRequest.php -------------------------------------------------------------------------------- /lib/ICAP/ICAPTlsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/ICAP/ICAPTlsClient.php -------------------------------------------------------------------------------- /lib/ICAP/IcapResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/ICAP/IcapResponse.php -------------------------------------------------------------------------------- /lib/ICAP/IcapResponseStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/ICAP/IcapResponseStatus.php -------------------------------------------------------------------------------- /lib/ICAP/ResponseParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/ICAP/ResponseParser.php -------------------------------------------------------------------------------- /lib/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Item.php -------------------------------------------------------------------------------- /lib/ItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/ItemFactory.php -------------------------------------------------------------------------------- /lib/Migration/CleanupCronTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Migration/CleanupCronTask.php -------------------------------------------------------------------------------- /lib/Migration/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Migration/Install.php -------------------------------------------------------------------------------- /lib/Migration/Version10400Date20180929132835.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Migration/Version10400Date20180929132835.php -------------------------------------------------------------------------------- /lib/Migration/Version60100Date20250424072838.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Migration/Version60100Date20250424072838.php -------------------------------------------------------------------------------- /lib/Sabre/PropfindPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Sabre/PropfindPlugin.php -------------------------------------------------------------------------------- /lib/Scanner/ExternalClam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Scanner/ExternalClam.php -------------------------------------------------------------------------------- /lib/Scanner/ExternalKaspersky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Scanner/ExternalKaspersky.php -------------------------------------------------------------------------------- /lib/Scanner/ICAP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Scanner/ICAP.php -------------------------------------------------------------------------------- /lib/Scanner/IScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Scanner/IScanner.php -------------------------------------------------------------------------------- /lib/Scanner/LocalClam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Scanner/LocalClam.php -------------------------------------------------------------------------------- /lib/Scanner/ScannerBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Scanner/ScannerBase.php -------------------------------------------------------------------------------- /lib/Scanner/ScannerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Scanner/ScannerFactory.php -------------------------------------------------------------------------------- /lib/Settings/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Settings/Admin.php -------------------------------------------------------------------------------- /lib/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/Status.php -------------------------------------------------------------------------------- /lib/StatusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/lib/StatusFactory.php -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/psalm.xml -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/1.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/screenshots/1.png.license -------------------------------------------------------------------------------- /templates/notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/templates/notification.php -------------------------------------------------------------------------------- /templates/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/templates/settings.php -------------------------------------------------------------------------------- /tests/AvirWrapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/AvirWrapperTest.php -------------------------------------------------------------------------------- /tests/BackgroundScannerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/BackgroundScannerTest.php -------------------------------------------------------------------------------- /tests/Db/ItemMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/Db/ItemMapperTest.php -------------------------------------------------------------------------------- /tests/Db/RuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/Db/RuleTest.php -------------------------------------------------------------------------------- /tests/DummyClam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/DummyClam.php -------------------------------------------------------------------------------- /tests/ICAP/ICAPClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/ICAP/ICAPClientTest.php -------------------------------------------------------------------------------- /tests/ICAP/ResponseParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/ICAP/ResponseParserTest.php -------------------------------------------------------------------------------- /tests/Scanner/ExternalKasperskyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/Scanner/ExternalKasperskyTest.php -------------------------------------------------------------------------------- /tests/Scanner/ICAPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/Scanner/ICAPTest.php -------------------------------------------------------------------------------- /tests/Scanner/ScannerBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/Scanner/ScannerBaseTest.php -------------------------------------------------------------------------------- /tests/Scanner/ScannerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/Scanner/ScannerFactoryTest.php -------------------------------------------------------------------------------- /tests/StatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/StatusTest.php -------------------------------------------------------------------------------- /tests/TemporaryHome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/TemporaryHome.php -------------------------------------------------------------------------------- /tests/TestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/TestBase.php -------------------------------------------------------------------------------- /tests/avir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/avir.sh -------------------------------------------------------------------------------- /tests/avirserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/avirserver.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/data/foo.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /tests/data/foo.txt.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015 ownCloud, Inc. 2 | SPDX-License-Identifier: AGPL-3.0-only 3 | -------------------------------------------------------------------------------- /tests/data/icap/403-response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/data/icap/403-response.txt -------------------------------------------------------------------------------- /tests/data/icap/403-response.txt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/data/icap/403-response.txt.license -------------------------------------------------------------------------------- /tests/data/icap/null-body.txt: -------------------------------------------------------------------------------- 1 | ICAP/1.0 200 OK 2 | Encapsulated: null-body=0 3 | ISTag: "b9eb4f031598bb0b-1716440776" 4 | -------------------------------------------------------------------------------- /tests/data/icap/null-body.txt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/data/icap/null-body.txt.license -------------------------------------------------------------------------------- /tests/data/kitten.inf: -------------------------------------------------------------------------------- 1 | We have a kitten inside -------------------------------------------------------------------------------- /tests/data/kitten.inf.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015 ownCloud, Inc. 2 | SPDX-License-Identifier: AGPL-3.0-only -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/psalm-baseline.xml -------------------------------------------------------------------------------- /tests/psalm-baseline.xml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/psalm-baseline.xml.license -------------------------------------------------------------------------------- /tests/stub.phpstub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/files_antivirus/HEAD/tests/stub.phpstub --------------------------------------------------------------------------------