Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
d4e690e0
Commit
d4e690e0
authored
Mar 19, 2007
by
Pierangelo Masarati
Browse files
Fix issue with unauthorized idassert and DN rewrite
parent
e1e21de1
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
d4e690e0
...
...
@@ -6,6 +6,7 @@ OpenLDAP 2.3.35 Engineering
Fixed zero-length IA5string handling (ITS#4823)
Fixed slapd-bdb/hdb startup with missing shm env (ITS#4851)
Fixed slapd-ldap/meta consistency in referral proxying (ITS#4861)
Fixed slapd-ldap bind cleanup in case of unauthorized idassert
Fixed slapd-meta search cleanup
Fixed slapd-meta/slapo-rwm filter mapping
Fixed slapd-sql subtree shortcut (ITS#4856)
...
...
servers/slapd/back-ldap/bind.c
View file @
d4e690e0
...
...
@@ -760,13 +760,13 @@ ldap_back_getconn(
op
->
o_ndn
=
op
->
o_req_ndn
;
}
isproxyauthz
=
ldap_back_is_proxy_authz
(
op
,
rs
,
sendok
,
binddn
,
bindcred
);
if
(
isproxyauthz
==
-
1
)
{
return
NULL
;
}
if
(
op
->
o_tag
==
LDAP_REQ_BIND
)
{
op
->
o_dn
=
save_o_dn
;
op
->
o_ndn
=
save_o_ndn
;
}
if
(
isproxyauthz
==
-
1
)
{
return
NULL
;
}
lc_curr
.
lc_local_ndn
=
op
->
o_ndn
;
/* Explicit binds must not be shared;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment