diff options
author | mathieui <mathieui@mathieui.net> | 2022-03-18 23:58:37 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2022-03-19 16:15:03 +0100 |
commit | 41d733e77fd4835a55de82f288b88a2196db81c8 (patch) | |
tree | 9906c9e3870402e9d7d7ac4ce96984657df82664 | |
parent | abd699593f53ec89b57d697296a6526bcfad7a8d (diff) | |
download | slixmpp-41d733e77fd4835a55de82f288b88a2196db81c8.tar.gz slixmpp-41d733e77fd4835a55de82f288b88a2196db81c8.tar.bz2 slixmpp-41d733e77fd4835a55de82f288b88a2196db81c8.tar.xz slixmpp-41d733e77fd4835a55de82f288b88a2196db81c8.zip |
Only defuse stdlib through an env var
https://github.com/inducer/relate/issues/905
-rw-r--r-- | slixmpp/__init__.py | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/slixmpp/__init__.py b/slixmpp/__init__.py index 403c9299..a4796d78 100644 --- a/slixmpp/__init__.py +++ b/slixmpp/__init__.py @@ -4,14 +4,18 @@ # This file is part of Slixmpp. # See the file LICENSE for copying permission. import logging +from os import getenv logging.getLogger(__name__).addHandler(logging.NullHandler()) -# Use defusedxml if available -try: - import defusedxml - defusedxml.defuse_stdlib() -except ImportError: - pass +# Use defusedxml if wanted +# Since enabling it can have adverse consequences for the programs using +# slixmpp, do not enable it by default. +if getenv('SLIXMPP_ENABLE_DEFUSEDXML', default='false').lower() == 'true': + try: + import defusedxml + defusedxml.defuse_stdlib() + except ImportError: + pass from slixmpp.stanza import Message, Presence, Iq from slixmpp.jid import JID, InvalidJID |