[or-cvs] r9149: Reject *:563 (NTTPS) in the default exit policy. We already (in tor/trunk: . doc src/or)

arma at seul.org arma at seul.org
Mon Dec 18 08:25:35 UTC 2006


Author: arma
Date: 2006-12-18 03:25:34 -0500 (Mon, 18 Dec 2006)
New Revision: 9149

Modified:
   tor/trunk/ChangeLog
   tor/trunk/doc/tor.1.in
   tor/trunk/src/or/policies.c
Log:
Reject *:563 (NTTPS) in the default exit policy. We already reject
NNTP by default, so this seems like a sensible addition.
(suggested by bug 331)


Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2006-12-18 08:24:22 UTC (rev 9148)
+++ tor/trunk/ChangeLog	2006-12-18 08:25:34 UTC (rev 9149)
@@ -21,6 +21,8 @@
     - Add internal descriptions for a bunch of configuration options:
       accessible via controller interface and in comments in saved
       options files.
+    - Reject *:563 (NTTPS) in the default exit policy. We already reject
+      NNTP by default, so this seems like a sensible addition.
 
   o Security bugfixes:
     - Stop sending the HttpProxyAuthenticator string to directory

Modified: tor/trunk/doc/tor.1.in
===================================================================
--- tor/trunk/doc/tor.1.in	2006-12-18 08:24:22 UTC (rev 9148)
+++ tor/trunk/doc/tor.1.in	2006-12-18 08:25:34 UTC (rev 9149)
@@ -542,6 +542,7 @@
 .IP "reject *:135-139"
 .IP "reject *:445"
 .IP "reject *:465"
+.IP "reject *:563"
 .IP "reject *:587"
 .IP "reject *:1214"
 .IP "reject *:4661-4666"

Modified: tor/trunk/src/or/policies.c
===================================================================
--- tor/trunk/src/or/policies.c	2006-12-18 08:24:22 UTC (rev 9148)
+++ tor/trunk/src/or/policies.c	2006-12-18 08:25:34 UTC (rev 9149)
@@ -589,7 +589,8 @@
 
 #define DEFAULT_EXIT_POLICY                                         \
   "reject *:25,reject *:119,reject *:135-139,reject *:445,"         \
-  "reject *:465,reject *:587,reject *:1214,reject *:4661-4666,"     \
+  "reject *:465,reject *:563,reject *:587,"                         \
+  "reject *:1214,reject *:4661-4666,"                               \
   "reject *:6346-6429,reject *:6699,reject *:6881-6999,accept *:*"
 
 /** Parse the exit policy <b>cfg</b> into the linked list *<b>dest</b>. If



More information about the tor-commits mailing list