Tagged Questions
The authz tag has no wiki summary.
4
votes
3answers
8k views
SVN authz, path-based authentication woes
[groups]
developer = a,b,c
doc = r,x
[/doc]
@doc = rw
@developer = rw
[/]
@developer = rw
* =
If now a member of the group doc tries to check out the documentation, it does not work.
I want ...
2
votes
2answers
235 views
SVN's authz and folder renaming
Say I want to prevent certain users form accessing certain folders in my SVN repo. I just do:
[/]
* = rw
[/NewSecretFolder]
* = rw
some_poor_sap =
But what if that folder was renamed from ...
1
vote
0answers
82 views
Can I use the JWSCL to check whether the current user has a specific extended right on an Active Directory object?
[This is a slightly more specific version of the question I already asked here: How do I query effective permissions on an Active Directory Object? - Hopefully the answers I receive here will help me ...
1
vote
1answer
69 views
PInvoke AuthzAccessCheck from c# giving error 87 : invalid parameter
I'm trying to a PInvoke of AuthzAccessCheck to work in my c# application and keep running into the error code 87 : invalid parameter. As an initial test I've been trying to follow the basic structure ...
1
vote
1answer
316 views
SVN authz, path-based authentication on trunk / branch
I use authz files to restrict access to a svn server (projA, projB).
I would like to use the same restrictions for the trunk and the branches.
Is there a nice way of doing it, instead of copy/pasting ...
1
vote
0answers
197 views
How to specify a privilege on multiple paths together in SVN Path Based Authorization?
I use svn path based authorization to restrict access.
The syntax in the authz file to specify authorization is below. This example shows I want to give the "test" group read/write permission for ...
0
votes
1answer
79 views
Subversion Authz - Full Access to all except one
I have a subversion server for a client which uses a MySQL database to authenticate employees, and an AuthUserFile (htpasswd) to authenticate other users (vendors) into their repository.
I need to ...
0
votes
0answers
155 views
How to write SVN path authz rules of a directory named “something]” (name with `]' character)
I created a directory(branch) in svn repo named "sth]" by mistake. What I actually wanted is "sth". I don't want every group can't read this branch, but I can't figure out how to write the correct ...
0
votes
2answers
159 views
SVN: Only show specific parts of svn tree to a user
I have a single svn repository for all my projects. In svn I also have a directory which contains the compiled libraries (like .dll, .swc) which are directly referenced by the projects.
I want ...
0
votes
1answer
213 views
Proper Trac Setup of Permissions
I have installed Trac on my webserver. First of all it seems in secure because it immediately exposed my repository to the world. How does Trac access my repository without providing it with some ...
0
votes
2answers
416 views
Restrict access to connection pool in Weblogic?
In short, how can I restrict access to connection pool X based on application name or JAR name? A simple use case might help...
A business web-app (call it WEB_APP_A) uses pool Y to do basic look-up ...