Add warnings about debugging mode
authorJeremy Stanley <fungi@yuggoth.org>
Sun, 4 Oct 2020 15:11:58 +0000 (15:11 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sun, 4 Oct 2020 22:37:38 +0000 (22:37 +0000)
Debugging mode is intended to enable administrative commands which
are especially unsafe and could even be used to run arbitrary shell
commands or alter files accessible to the user under which the
service runs. Log a warning about it at startup if the option has
been set, and insert some comments to that effect in the sample
configuration so that hopefully no one will turn it on without due
forethought. Also add a mention about its risks in the config doc.

doc/source/configuration.rst
etc/mudpy.yaml
mudpy/misc.py
mudpy/tests/fixtures/test_daemon.yaml

index d0001fc..2ced5c2 100644 (file)
@@ -173,7 +173,10 @@ Example::
 bool, optional
 
 Whether unsafe debugging functionality is enabled. If unspecified or
-set to false, unsafe debugging functions will be disabled.
+set to false, unsafe debugging functions will be disabled. Be very
+careful enabling this feature, as debugging commands may allow service
+administrators to run arbitrary shell commands or modify files
+accessible to the system user underwhich the service is running.
 
 Example::
 
index 8c413a3..7fc5b67 100644 (file)
@@ -48,6 +48,9 @@ _lock: true
     - admin
 .mudpy.limit.avatars: 7
 # .mudpy.limit.backups: 10
+# Debugging commands are dangerous, and may result in granting
+# administrative users access to the system account under which the
+# service runs. Be very sure you trust your admins before enabling!
 # .mudpy.limit.debug: true
 .mudpy.limit.password_tries: 3
 
index 3968039..e9845d5 100644 (file)
@@ -2121,6 +2121,8 @@ def setup():
     log("Running version: %s" % universe.versions.version, 1)
     log("Initial directory: %s" % universe.startdir, 1)
     log("Command line: %s" % " ".join(sys.argv), 1)
+    if universe.debug_mode():
+        log("WARNING: Unsafe debugging mode is enabled!", 6)
 
     # pass the initialized universe back
     return universe
index 3a7f8e1..318967a 100644 (file)
@@ -49,6 +49,9 @@ _lock: true
     - admin
 .mudpy.limit.avatars: 7
 .mudpy.limit.backups: 3
+# Debugging commands are dangerous, and may result in granting
+# administrative users access to the system account under which the
+# service runs. Be very sure you trust your admins before enabling!
 # .mudpy.limit.debug: true
 .mudpy.limit.password_tries: 3