diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2023-11-21 15:22:23 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2023-11-24 10:23:09 +0100 |
commit | aee059ffabf46b57c7eeea337d0ba5e337737a55 (patch) | |
tree | 29d779063e5ecbfcb7f8dba7419ae26755a75c90 /officecfg/registry/schema | |
parent | 7d7d84c07b1ed01a5cd51b43c5712eab19d3f729 (diff) |
officecfg,sd: add Office::Security::Net::AllowInsecureImpressRemoteWiFi
The IPRemoteServer listens on all interfaces and accepts connections
with a "PIN", which is transmitted in the clear (without encryption),
so it is not as secure as a naive user might assume and should probably
not be used in public/untrusted networks.
Make it possible to use the Impress remote with Bluetooth only, which
appears to be more secure, by adding a new setting which defaults to
disabled.
The DiscoveryService which does mDNS/ZeroConf/Bonjour/Renezvous/whatever
-it's-called-today should not be needed for Bluetooth.
Adapt the RemoteServer code to the new situation that there can be a
BluetoothServer but not a IPRemoteServer.
Also add a checkbox to the "Slide Show Settings" dialog.
Change-Id: I0cd3f23b616e23351f166bc9681b45786df8a26a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159786
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'officecfg/registry/schema')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Security.xcs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Security.xcs b/officecfg/registry/schema/org/openoffice/Office/Security.xcs index 67bd4078585f..de72566c0dfa 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Security.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Security.xcs @@ -48,6 +48,12 @@ <info> <desc>Specifies security aspects of network connections.</desc> </info> + <prop oor:name="AllowInsecureImpressRemoteWiFi" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>Allow using the Impress Remote via WiFi or other local IP network. The server will listen on all local interfaces, and the protocol lacks encryption (the PIN is transmitted in clear text).</desc> + </info> + <value>false</value> + </prop> <prop oor:name="AllowInsecureProtocols" oor:type="xs:boolean" oor:nillable="false"> <info> <desc>Allow using insecure and/or unencrypted protocols such as HTTP, SMTP, FTP.</desc> |