[Zope-Checkins] SVN: Products.Five/trunk/ Merge security fix from 1.4 branch r71418:71419

Alec Mitchell apm13 at columbia.edu
Wed Dec 6 14:28:33 EST 2006


Log message for revision 71463:
  Merge security fix from 1.4 branch r71418:71419
  

Changed:
  U   Products.Five/trunk/CHANGES.txt
  U   Products.Five/trunk/browser/metaconfigure.py
  U   Products.Five/trunk/browser/tests/defaultview.zcml
  U   Products.Five/trunk/browser/tests/pages.txt
  U   Products.Five/trunk/browser/tests/pages.zcml
  U   Products.Five/trunk/browser/tests/pages_ftest.txt

-=-
Modified: Products.Five/trunk/CHANGES.txt
===================================================================
--- Products.Five/trunk/CHANGES.txt	2006-12-06 19:05:26 UTC (rev 71462)
+++ Products.Five/trunk/CHANGES.txt	2006-12-06 19:28:32 UTC (rev 71463)
@@ -8,9 +8,13 @@
 Bugfixes
 --------
 
+* View methods which aren't explicitly declared as allowed must be marked
+  private explicitly to avoid being web publishable.
+
 * Port code from Zope 3 making resource directories recursive.
   Thanks to Richard Waid.
 
+
 * site/metaconfigure: Local site hook now only applied once per class, so
   multiple <five:localsite> tags for the same class won't cause config
   errors.

Modified: Products.Five/trunk/browser/metaconfigure.py
===================================================================
--- Products.Five/trunk/browser/metaconfigure.py	2006-12-06 19:05:26 UTC (rev 71462)
+++ Products.Five/trunk/browser/metaconfigure.py	2006-12-06 19:28:32 UTC (rev 71463)
@@ -19,6 +19,7 @@
 $Id$
 """
 import os
+from inspect import ismethod
 
 from zope import component
 from zope.interface import Interface
@@ -41,6 +42,7 @@
 from Products.Five.browser.pagetemplatefile import ZopeTwoPageTemplateFile
 from Products.Five.metaclass import makeClass
 from Products.Five.security import getSecurityInfo, protectClass, protectName
+from Products.Five.security import CheckerPrivateId
 
 from Globals import InitializeClass as initializeClass
 
@@ -138,6 +140,19 @@
                 callable = protectName,
                 args = (new_class, attr, permission)
                 )
+    # Make everything else private
+    allowed = [attribute] + (allowed_attributes or [])
+    private_attrs = [name for name in dir(new_class)
+                     if (not name.startswith('_')) and
+                        (name not in allowed) and
+                        ismethod(getattr(new_class, name))]
+    for attr in private_attrs:
+        _context.action(
+            discriminator = ('five:protectName', new_class, attr),
+            callable = protectName,
+            args = (new_class, attr, CheckerPrivateId)
+            )
+    # Protect the class
     _context.action(
         discriminator = ('five:initialize:class', new_class),
         callable = initializeClass,

Modified: Products.Five/trunk/browser/tests/defaultview.zcml
===================================================================
--- Products.Five/trunk/browser/tests/defaultview.zcml	2006-12-06 19:05:26 UTC (rev 71462)
+++ Products.Five/trunk/browser/tests/defaultview.zcml	2006-12-06 19:28:32 UTC (rev 71463)
@@ -18,6 +18,11 @@
       permission="zope2.Public"
       />
 
+  <class class="Products.Five.tests.testing.simplecontent.IIndexSimpleContent">
+    <require permission="zope2.Public"
+             attributes="index_html"/>
+  </class>
+
   <browser:defaultView
       for="Products.Five.tests.testing.simplecontent.IIndexSimpleContent"
       name="index_html"

Modified: Products.Five/trunk/browser/tests/pages.txt
===================================================================
--- Products.Five/trunk/browser/tests/pages.txt	2006-12-06 19:05:26 UTC (rev 71462)
+++ Products.Five/trunk/browser/tests/pages.txt	2006-12-06 19:28:32 UTC (rev 71463)
@@ -277,7 +277,7 @@
   >>> self.login('manager')
 
 Being logged in as a manager again, we find that the protected pages
-are not accessible to us:
+are accessible to us:
 
   >>> for view_name in protected_view_names:
   ...     checkRestricted(
@@ -288,7 +288,13 @@
   ...     self.folder,
   ...     'context.restrictedTraverse("testoid/eagle.method").eagle()')
 
+Even when logged in though the private methods should not be accessible:
 
+  >>> checkUnauthorized( self.folder,
+  ...             'context.restrictedTraverse("testoid/eagle.method").mouse()')
+
+
+
 Other
 -----
 

Modified: Products.Five/trunk/browser/tests/pages.zcml
===================================================================
--- Products.Five/trunk/browser/tests/pages.zcml	2006-12-06 19:05:26 UTC (rev 71462)
+++ Products.Five/trunk/browser/tests/pages.zcml	2006-12-06 19:28:32 UTC (rev 71463)
@@ -19,7 +19,7 @@
       for="Products.Five.tests.testing.simplecontent.ISimpleContent"
       class=".pages.SimpleView"
       name="eagle.method"
-      permission="zope2.ViewManagementScreens"
+      permission="zope2.View"
       allowed_attributes="eagle"
       />
 

Modified: Products.Five/trunk/browser/tests/pages_ftest.txt
===================================================================
--- Products.Five/trunk/browser/tests/pages_ftest.txt	2006-12-06 19:05:26 UTC (rev 71462)
+++ Products.Five/trunk/browser/tests/pages_ftest.txt	2006-12-06 19:28:32 UTC (rev 71463)
@@ -81,6 +81,13 @@
   ...     status = response.getStatus()
   ...     self.failUnless(status == 401, (status, 401, view_name))
 
+Methods of views which were not explicitly declared as allowed should not be
+accessible TTW, even if we have the permission to render the view:
+
+  >>> response = self.publish('/test_folder_1_/testoid/eagle.method/mouse',
+  ...                         basic='viewer:secret')
+  >>> self.assertEqual(response.getStatus(), 401)
+
 The same should apply for the user if he has all other permissions
 except 'View management screens':
 
@@ -122,6 +129,7 @@
   ...     self.failUnless(status == 200, (status, 200, view_name))
 
 
+
 Miscellaneous
 -------------
 



More information about the Zope-Checkins mailing list