summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2003-10-10 20:58:29 +0000
committerGeorge Lebl <jirka@src.gnome.org>2003-10-10 20:58:29 +0000
commita275193cb5f2e8a7b65bb5d38f1ee2b94360561e (patch)
treea2507e38298962481bd9ace42f4d3f364874ff89
parent2ce533d742c712751f2cc831314b62d353c5bfd2 (diff)
downloadgdm-a275193cb5f2e8a7b65bb5d38f1ee2b94360561e.tar.gz
avoid possible dos by turning off all audit trails in the X server on
Fri Oct 10 13:53:08 2003 George Lebl <jirka@5z.com> * config/gdm.conf.in: avoid possible dos by turning off all audit trails in the X server on standard config. (use "-audit 0" command line)
-rw-r--r--ChangeLog6
-rw-r--r--config/gdm.conf.in6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9819c8be..31348c82 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Oct 10 13:53:08 2003 George Lebl <jirka@5z.com>
+
+ * config/gdm.conf.in: avoid possible dos by turning
+ off all audit trails in the X server on standard
+ config. (use "-audit 0" command line)
+
Thu Oct 09 11:11:23 2003 George Lebl <jirka@5z.com>
* gui/greeter/greeter_canvas_item.c: fix the line breaking not to
diff --git a/config/gdm.conf.in b/config/gdm.conf.in
index f26c1a59..2d854d05 100644
--- a/config/gdm.conf.in
+++ b/config/gdm.conf.in
@@ -364,7 +364,7 @@ Enable=false
# Definition of the standard X server.
[server-Standard]
name=Standard server
-command=@X_SERVER@
+command=@X_SERVER@ -audit 0
flexible=true
# To use this server type you should add -query host or -indirect host
@@ -372,7 +372,7 @@ flexible=true
[server-Terminal]
name=Terminal server
# Add -terminate to make things behave more nicely
-command=@X_SERVER@ -terminate
+command=@X_SERVER@ -audit 0 -terminate
# Make this not appear in the flexible servers (we need extra params
# anyway, and terminate would be bad for xdmcp choosing). You can
# make a terminal server flexible, but not with an indirect query.
@@ -387,7 +387,7 @@ handled=false
# to the command line
[server-Chooser]
name=Chooser server
-command=@X_SERVER@
+command=@X_SERVER@ -audit 0
# Make this not appear in the flexible servers for now, but if you
# wish to allow a chooser server then make this true. This is the
# only way to make a flexible chooser server that behaves nicely.