> 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
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
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
> 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
> 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
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
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