diff options
author | Andras Timar <andras.timar@collabora.com> | 2018-03-08 16:07:11 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2018-03-15 23:03:41 +0100 |
commit | 3e1ece9b4dbcf8b18f8cc1118738bbde88f0b648 (patch) | |
tree | 8992b30f8181d8f615811e1fffd8c121a49fa8c7 /svtools | |
parent | a4a65dda99e9c5bb8a9091f682ed4a2f6259c0b1 (diff) |
Let sysadmins disable individual file format filters
It makes sense to disable a filter, as a temporary security measure,
when there is a 0-day vulnerability in it.
E.g., when 0-day found in AbiWord filter, this config snippet disables it:
<item oor:path="/org.openoffice.TypeDetection.Filter">
<node oor:name="Filters">
<node oor:name="AbiWord">
<prop oor:name="Enabled" oor:finalized="true">
<value>false</value>
</prop>
</node>
</node>
</item>
Change-Id: I8b84250c7e4aac3555877d23f58ed13a2210ebfc
Reviewed-on: https://gerrit.libreoffice.org/50961
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
(cherry picked from commit 4547fa2c1e205e1989611b1c4493cbbd12541372)
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/errtxt.hrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/inc/errtxt.hrc b/svtools/inc/errtxt.hrc index b0c82246c807..d6e2c0008a1c 100644 --- a/svtools/inc/errtxt.hrc +++ b/svtools/inc/errtxt.hrc @@ -130,6 +130,7 @@ const ErrMsgCode RID_ERRHDL[] = { NC_("RID_ERRHDL", "Wrong checksum.") , ERRCODE_IO_BADCRC }, { NC_("RID_ERRHDL", "Function not possible: write protected.") , ERRCODE_IO_WRITEPROTECTED }, { NC_("RID_ERRHDL", "The password of a shared spreadsheet cannot be set or changed.\nDeactivate sharing mode first."), ERRCODE_SFX_SHARED_NOPASSWORDCHANGE }, + { NC_("RID_ERRHDL", "The filter for this file format is disabled in configuration. Please contact your systems administrator."), ERRCODE_IO_FILTERDISABLED }, { nullptr, ERRCODE_NONE } }; |