-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathinfo.xml
More file actions
50 lines (45 loc) · 3.51 KB
/
info.xml
File metadata and controls
50 lines (45 loc) · 3.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0"?>
<info>
<id>files_antivirus</id>
<name>Anti-Virus</name>
<description>
When sharing files, security is a key aspect. The ownCloud Anti-Virus extension helps by protecting against malicious software like trojans or viruses. It forwards files that are being uploaded to the ownCloud server to an external malware scanning engine before they are written to the storage. When a file is recognized as malicious, it can be logged and prevented from being uploaded to the server to ensure that files in ownCloud are free of malware. More sophisticated rules may be specified in 'Advanced' mode. ownCloud administrators can find the configuration options in the 'Security' settings.
**Integrates enterprise-grade anti-virus scanners through ICAP**
From version 1.0.0, Anti-Virus brings an ICAP integration for Enterprise installations. This means that administrators can integrate their favorite enterprise-grade Anti-Virus scanners through the open standard Internet Content Adaptation Protocol (ICAP). With this set up, ownCloud can delegate the scanning of files on upload to another machine, the ICAP server. The ICAP server then checks it and either greenlights it or, if malicious code is found, treats it according to its settings and notifies the ownCloud server. ownCloud can then act accordingly, either accepting the file or rejecting the upload. Offloading the anti-virus scans to another dedicated server can greatly improve performance and scale.
**Works with ClamAV**
The ownCloud Anti-Virus extension works with ClamAV as the basic supported virus scanner. ClamAV detects all forms of malware including trojans, viruses, and worms and scans compressed files, executables, image files, PDF, as well as many other file types. The ownCloud Anti-Virus application relies on the underlying ClamAV virus scanning engine, which the admin points ownCloud to when configuring the application. The ClamAV virus definitions need to be kept up to date in order to provide effective protection.
Please note that enabling this application can impact system performance as additional processing is required for every file upload, especially when running the virus scanner engine on the same machine as ownCloud. More information is available in the Anti-Virus documentation.
</description>
<bugs>https://github.com/owncloud/files_antivirus/issues</bugs>
<repository type="git">http://github.com/owncloud/files_antivirus.git</repository>
<summary>Protect users from viruses and other malicious software</summary>
<screenshot>https://raw.githubusercontent.com/owncloud/screenshots/master/files_antivirus/owncloud-app-anti-virus.jpg</screenshot>
<screenshot>https://raw.githubusercontent.com/owncloud/screenshots/master/files_antivirus/owncloud-app-anti-virus2.png</screenshot>
<category>security</category>
<licence>AGPL</licence>
<author>Manuel Delgado, Bart Visscher, thinksilicon.de, Viktar Dubiniuk</author>
<version>1.3.0</version>
<documentation>
<admin>https://doc.owncloud.com/server/latest/admin_manual/configuration/server/antivirus_configuration.html</admin>
</documentation>
<types>
<filesystem/>
<dav/>
</types>
<use-migrations>true</use-migrations>
<namespace>Files_Antivirus</namespace>
<dependencies>
<owncloud min-version="10.15" max-version="11" />
</dependencies>
<settings>
<admin>OCA\Files_Antivirus\AdminPanel</admin>
</settings>
<background-jobs>
<job>OCA\Files_Antivirus\Cron\Task</job>
</background-jobs>
<sabre>
<plugins>
<plugin>OCA\Files_Antivirus\Dav\AntivirusPlugin</plugin>
</plugins>
</sabre>
</info>