RE: [ANNOUNCE] Apache-AuthenSmb-0.72

2004-03-30 Thread Tauber, Mathias HDP
> The excerpt from X, (sorry, I forgot their name :( ), uses a > semaphore > to maintain the connection, where > > 'return OK unless $r->is_initial_req;' > > uses a flag in the request object to bypass the > authentication module if the flag is set. (It is set after > the first successful pa

RE: [ANNOUNCE] Apache-AuthenSmb-0.72

2004-03-29 Thread Tauber, Mathias HDP
Sorry for the late answer... > Hmm... My thought would have been that Apache::AuthenCache > would do the > trick... What are the exact symptoms when you use > AuthenCache? Are you > still hitting the Domain controller for every request? Yes, still like DoS... > Another option would be to

RE: [ANNOUNCE] Apache-AuthenSmb-0.72

2004-03-26 Thread Tauber, Mathias HDP
Hi, > The uploaded file > > Apache-AuthenSmb-0.72.tar.gz > > has entered CPAN as > > file: $CPAN/authors/id/S/SP/SPEEVES/Apache-AuthenSmb-0.72.tar.gz > size: 5526 bytes >md5: 510d7da1dfbdb99c65b99fe9a9198aae > > Additions to this release are: > >- split domain\username so

authentication with patched libapache-authensmb secure?

2003-11-27 Thread Tauber, Mathias HDP
> 1. Updated Authen::Smb with this: > > use Fcntl qw(:flock); > ... > open S, "> /full/path/to/AuthenSmb.lck" or > die "Can't open AuthenSmb.lck: $!\n"; > flock S, LOCK_EX; > my $res = Valid_User($username, $password, $server, $backup, $domain); > close S; I was given this solution, to fix the

RE: authentication with smb

2003-11-26 Thread Tauber, Mathias HDP
> 1. Updated Authen::Smb with this: > > use Fcntl qw(:flock); > ... > open S, "> /full/path/to/AuthenSmb.lck" or > die "Can't open AuthenSmb.lck: $!\n"; > flock S, LOCK_EX; > my $res = Valid_User($username, $password, $server, $backup, $domain); > close S; I was given this solution, to fix the pr

RE: authentication with smb

2003-11-06 Thread Tauber, Mathias HDP
Thanks for the 'patches' to the modules! > 1. Update Authen::Smb like so: > > use Fcntl qw(:flock); > ... > open S, "> /full/path/to/AuthenSmb.lck" or > die "Can't open AuthenSmb.lck: $!\n"; > flock S, LOCK_EX; > my $res = Valid_User($username, $password, $server, $backup, $domain); > close S; W

authentication with smb

2003-11-04 Thread Tauber, Mathias HDP
hi, I have just subscribed to this mailing list, so I hope I'm doing everything right... my problem: I'm running a reverse proxy with apache 1.3.x and mod_proxy on debian. For the authentication libapache-authensmb is used, so there's a connection to the domain controller present and working. Ev