From: Evan Broder Date: Tue, 7 Apr 2009 02:13:53 +0000 (-0400) Subject: Fix a potential quota hole from cross-realm Hesiod entries. X-Git-Tag: 0.0.22~3 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/91a84d3f26706dca91ff915354667bf4f667fcc5 Fix a potential quota hole from cross-realm Hesiod entries. svn path=/trunk/packages/invirt-web/; revision=2293 --- diff --git a/code/validation.py b/code/validation.py index 480d007..0285044 100644 --- a/code/validation.py +++ b/code/validation.py @@ -241,6 +241,8 @@ def testOwner(user, owner, machine=None): return machine.owner if owner is None: raise InvalidInput('owner', owner, "Owner must be specified") + if '@' in owner: + raise InvalidInput('owner', owner, "No cross-realm Hesiod lockers allowed") try: if user not in cache_acls.expandLocker(owner): raise InvalidInput('owner', owner, 'You do not have access to the '