2016-12-21 20:19:37 +01:00
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
<div id="banner"><a href="https://github.com/jcbrand/converse.js/blob/master/docs/source/theming.rst">Edit me on GitHub</a></div>
|
|
|
|
|
|
|
|
=======================
|
|
|
|
Security considerations
|
|
|
|
=======================
|
|
|
|
|
|
|
|
.. note::
|
2018-09-18 10:53:43 +02:00
|
|
|
Converse comes with no warranty of any kind and the authors are not liable for any damages.
|
2016-12-21 20:19:37 +01:00
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
The data-structures of Converse encapsulate sensitive user data such as
|
2016-12-21 20:19:37 +01:00
|
|
|
XMPP account details (in case of manual login) and personal conversations.
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
In an environment where, besides Converse, other untrusted 3rd party scripts
|
2016-12-21 20:19:37 +01:00
|
|
|
might also be running, it's important to guard against malicious or invasive
|
|
|
|
access to user data and/or the API.
|
|
|
|
|
|
|
|
The threat model
|
|
|
|
================
|
|
|
|
|
|
|
|
The following threat model is considered:
|
|
|
|
|
|
|
|
Malicious 3rd party scripts served through compromised side-channels, such as ad-networks,
|
2018-09-18 10:53:43 +02:00
|
|
|
which attempt to access Converse's API and/or data-structures in order to personify users
|
2016-12-21 20:19:37 +01:00
|
|
|
or to pilfer their data.
|
|
|
|
|
|
|
|
Mitigating measures
|
|
|
|
===================
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
As of version 3.0.0, the following actions were taken to harden Converse against attacks:
|
2016-12-21 20:19:37 +01:00
|
|
|
|
|
|
|
Separate code/data into public and private parts
|
|
|
|
------------------------------------------------
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
1. Encapsulate Converse's data structures into a private closured object (named ``_converse``).
|
2016-12-21 20:19:37 +01:00
|
|
|
2. Split the API into public and private parts.
|
|
|
|
|
|
|
|
Restrict access to private code/data
|
|
|
|
------------------------------------
|
|
|
|
|
|
|
|
3. Only plugins are allowed to access the private API and the closured ``_converse`` object.
|
|
|
|
4. TODO: Whitelist plugins that have access to the private API and closured ``_converse`` object.
|
2016-12-23 05:38:08 +01:00
|
|
|
5. Prevent the removal of registered plugins (otherwise the whitelist could be circumvented).
|
|
|
|
6. Throw an error when multiple plugins try to register under the same name
|
|
|
|
(otherwise the whitelist could be circumvented).
|
2016-12-21 20:19:37 +01:00
|
|
|
|
|
|
|
.. note::
|
2018-09-18 10:53:43 +02:00
|
|
|
Care should be taken when using a custom build of Converse where some
|
2016-12-21 20:19:37 +01:00
|
|
|
of the core plugins contained in the default build are omitted. In this case
|
|
|
|
the omitted plugins should also be removed from the whitelist, otherwise
|
|
|
|
malicious plugins could be registered under their names.
|
|
|
|
|
|
|
|
Addititional measures
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Besides the measures mentioned above, integrators and hosts can also take
|
|
|
|
further security precautions.
|
|
|
|
|
2017-09-03 22:12:17 +02:00
|
|
|
The most effective is to avoid serving untrusted 3rd party JavaScript (e.g.
|
2016-12-21 20:19:37 +01:00
|
|
|
advertisements and analytics).
|
|
|
|
|
|
|
|
Another option is to forego the use of a global ``converse`` object (which
|
|
|
|
exposes the public API) and instead to encapsulate it inside a private closure,
|
|
|
|
in order to keep it inaccessible to other scripts.
|
|
|
|
|
|
|
|
|
|
|
|
Other considerations
|
|
|
|
====================
|
|
|
|
|
|
|
|
Locally cached data
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Besides the "hot" data stored in Backbone models and collections, which are all
|
|
|
|
encapsulated in the private ``_converse`` object, there is also the cached data
|
|
|
|
stored in the browser's ``sessionStorage`` and ``localStorage`` stores.
|
|
|
|
|
|
|
|
Examples of sensitive cached data are chat messages and the contacts roster,
|
|
|
|
both which are in session storage, which means that the cache is cleared as
|
|
|
|
soon as the last tab or window is closed. User credentials are not cached at
|
|
|
|
all.
|
|
|
|
|
|
|
|
Perhaps the ability to encrypt this cached data could be added in future
|
2018-09-18 10:53:43 +02:00
|
|
|
versions of Converse, if there is sufficient demand for it.
|
2016-12-21 20:19:37 +01:00
|
|
|
|
|
|
|
However to date no significant mitigation or hardening measures have been taken to
|
|
|
|
secure this cached data.
|
|
|
|
|
2018-09-18 10:53:43 +02:00
|
|
|
Therefore, the best defence as website host is to avoid serving Converse with
|
2016-12-21 20:19:37 +01:00
|
|
|
untrusted 3rd party code, and the best defence as an end-user is to avoid chatting
|
|
|
|
on websites that host untrusted 3rd party code. The most common examples of such
|
|
|
|
being advertising and analytics scripts.
|
|
|
|
|