Allow to disable MXP or make it one-directional. Resolve #2169.

This commit is contained in:
Griatch 2021-11-02 22:52:13 +01:00
parent 3474ffa008
commit 6fef01a3b1
5 changed files with 53 additions and 5 deletions

View file

@ -108,6 +108,8 @@ Up requirements to Django 3.2+, Twisted 21+
- Add confirmation question to `ban`/`unban` commands. - Add confirmation question to `ban`/`unban` commands.
- Check new `teleport` and `teleport_here` lock-types in `teleport` command to optionally - Check new `teleport` and `teleport_here` lock-types in `teleport` command to optionally
allow to limit teleportation of an object or to a specific destination. allow to limit teleportation of an object or to a specific destination.
- Add `settings.MXP_ENABLED=True` and `settings.MXP_OUTGOING_ONLY=True` as sane defaults,
to avoid known security issues with players entering MXP links.
### Evennia 0.9.5 (2019-2020) ### Evennia 0.9.5 (2019-2020)

View file

@ -38,10 +38,24 @@ _GA = object.__getattribute__
_SA = object.__setattr__ _SA = object.__setattr__
_STRIP_INCOMING_MXP = settings.MXP_ENABLED and settings.MXP_OUTGOING_ONLY
_STRIP_MXP = None
def _NA(o): def _NA(o):
return "N/A" return "N/A"
def _maybe_strip_incoming_mxp(txt):
global _STRIP_MXP
if _STRIP_INCOMING_MXP:
if not _STRIP_MXP:
from evennia.utils.ansi import strip_mxp as _STRIP_MXP
return _STRIP_MXP(txt)
return txt
_ERROR_INPUT = "Inputfunc {name}({session}): Wrong/unrecognized input: {inp}" _ERROR_INPUT = "Inputfunc {name}({session}): Wrong/unrecognized input: {inp}"
@ -74,6 +88,9 @@ def text(session, *args, **kwargs):
if txt.strip() in _IDLE_COMMAND: if txt.strip() in _IDLE_COMMAND:
session.update_session_counters(idle=True) session.update_session_counters(idle=True)
return return
txt = _maybe_strip_incoming_mxp(txt)
if session.account: if session.account:
# nick replacement # nick replacement
puppet = session.puppet puppet = session.puppet
@ -112,6 +129,9 @@ def bot_data_in(session, *args, **kwargs):
if txt.strip() in _IDLE_COMMAND: if txt.strip() in _IDLE_COMMAND:
session.update_session_counters(idle=True) session.update_session_counters(idle=True)
return return
txt = _maybe_strip_incoming_mxp(txt)
kwargs.pop("options", None) kwargs.pop("options", None)
# Trigger the execute_cmd method of the corresponding bot. # Trigger the execute_cmd method of the corresponding bot.
session.account.execute_cmd(session=session, txt=txt, **kwargs) session.account.execute_cmd(session=session, txt=txt, **kwargs)
@ -122,6 +142,9 @@ def echo(session, *args, **kwargs):
""" """
Echo test function Echo test function
""" """
if _STRIP_INCOMING_MXP:
txt = strip_mxp(txt)
session.data_out(text="Echo returns: %s" % args) session.data_out(text="Echo returns: %s" % args)

View file

@ -14,6 +14,7 @@ http://www.gammon.com.au/mushclient/addingservermxp.htm
""" """
import re import re
from django.conf import settings
LINKS_SUB = re.compile(r"\|lc(.*?)\|lt(.*?)\|le", re.DOTALL) LINKS_SUB = re.compile(r"\|lc(.*?)\|lt(.*?)\|le", re.DOTALL)
URL_SUB = re.compile(r"\|lu(.*?)\|lt(.*?)\|le", re.DOTALL) URL_SUB = re.compile(r"\|lu(.*?)\|lt(.*?)\|le", re.DOTALL)
@ -60,7 +61,8 @@ class Mxp:
""" """
self.protocol = protocol self.protocol = protocol
self.protocol.protocol_flags["MXP"] = False self.protocol.protocol_flags["MXP"] = False
self.protocol.will(MXP).addCallbacks(self.do_mxp, self.no_mxp) if settings.MXP_ENABLED:
self.protocol.will(MXP).addCallbacks(self.do_mxp, self.no_mxp)
def no_mxp(self, option): def no_mxp(self, option):
""" """
@ -81,6 +83,9 @@ class Mxp:
option (Option): Not used. option (Option): Not used.
""" """
self.protocol.protocol_flags["MXP"] = True if settings.MXP_ENABLED:
self.protocol.requestNegotiation(MXP, b"") self.protocol.protocol_flags["MXP"] = True
self.protocol.requestNegotiation(MXP, b"")
else:
self.protocol.wont(MXP)
self.protocol.handshake_done() self.protocol.handshake_done()

View file

@ -192,6 +192,14 @@ ENCODINGS = ["utf-8", "latin-1", "ISO-8859-1"]
# of users with screen readers. Note that ANSI/MXP doesn't need to # of users with screen readers. Note that ANSI/MXP doesn't need to
# be stripped this way, that is handled automatically. # be stripped this way, that is handled automatically.
SCREENREADER_REGEX_STRIP = r"\+-+|\+$|\+~|--+|~~+|==+" SCREENREADER_REGEX_STRIP = r"\+-+|\+$|\+~|--+|~~+|==+"
# MXP support means the ability to show clickable links in the client. Clicking
# the link will execute a game command. It's a way to add mouse input to the game.
MXP_ENABLED = True
# If this is set, MXP can only be sent by the server and not added from the
# client side. Disabling this is a potential security risk because it could
# allow malevolent players to lure others to execute commands they did not
# intend to.
MXP_OUTGOING_ONLY = True
# Database objects are cached in what is known as the idmapper. The idmapper # Database objects are cached in what is known as the idmapper. The idmapper
# caching results in a massive speedup of the server (since it dramatically # caching results in a massive speedup of the server (since it dramatically
# limits the number of database accesses needed) and also allows for # limits the number of database accesses needed) and also allows for

View file

@ -73,6 +73,8 @@ from evennia.utils import logger
from evennia.utils.utils import to_str from evennia.utils.utils import to_str
MXP_ENABLED = settings.MXP_ENABLED
# ANSI definitions # ANSI definitions
@ -583,6 +585,14 @@ def strip_unsafe_tokens(string, parser=ANSI_PARSER):
return parser.strip_unsafe_tokens(string) return parser.strip_unsafe_tokens(string)
def strip_mxp(string, parser=ANSI_PARSER):
"""
Strip MXP markup.
"""
return parser.strip_mxp(string)
def raw(string): def raw(string):
""" """
Escapes a string into a form which won't be colorized by the ansi Escapes a string into a form which won't be colorized by the ansi
@ -792,8 +802,8 @@ class ANSIString(str, metaclass=ANSIMeta):
decoded = True decoded = True
if not decoded: if not decoded:
# Completely new ANSI String # Completely new ANSI String
clean_string = parser.parse_ansi(string, strip_ansi=True, mxp=True) clean_string = parser.parse_ansi(string, strip_ansi=True, mxp=MXP_ENABLED)
string = parser.parse_ansi(string, xterm256=True, mxp=True) string = parser.parse_ansi(string, xterm256=True, mxp=MXP_ENABLED)
elif clean_string is not None: elif clean_string is not None:
# We have an explicit clean string. # We have an explicit clean string.
pass pass