Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 921835 Details for
Bug 1123477
CVE-2014-3562 389-ds: unauthenticated information disclosure
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Updated the Ludwig's patch following the review comments by Rich.
0001-Bug-1123477-unauthenticated-information-disclosure.patch (text/plain), 3.97 KB, created by
Noriko Hosoi
on 2014-07-28 16:49:32 UTC
(
hide
)
Description:
Updated the Ludwig's patch following the review comments by Rich.
Filename:
MIME Type:
Creator:
Noriko Hosoi
Created:
2014-07-28 16:49:32 UTC
Size:
3.97 KB
patch
obsolete
>From aa90e26d5c4ea47b2a4a22f99cf0742cf48b3fae Mon Sep 17 00:00:00 2001 >From: Noriko Hosoi <nhosoi@redhat.com> >Date: Mon, 28 Jul 2014 09:42:43 -0700 >Subject: [PATCH] Bug 1123477 - unauthenticated information disclosure > >Fix Description: nscpentrywsi is returned only authenticated as root. >The bug was fixed by lkrispen@redhat.com (Ludwig Krispenz). >His patch was modified based upon this review comment. >https://bugzilla.redhat.com/show_bug.cgi?id=1123477#c2 >--- > ldap/servers/slapd/computed.c | 17 +++++++++++++++-- > ldap/servers/slapd/entrywsi.c | 2 +- > ldap/servers/slapd/slapi-plugin.h | 1 + > 3 files changed, 17 insertions(+), 3 deletions(-) > >diff --git a/ldap/servers/slapd/computed.c b/ldap/servers/slapd/computed.c >index 7c99b45..7a80c96 100644 >--- a/ldap/servers/slapd/computed.c >+++ b/ldap/servers/slapd/computed.c >@@ -59,6 +59,7 @@ struct _computed_attr_context { > struct _compute_evaluator { > struct _compute_evaluator *next; > slapi_compute_callback_t function; >+ int rootonly; > }; > typedef struct _compute_evaluator compute_evaluator; > >@@ -95,6 +96,13 @@ int compute_call_evaluators_nolock(computed_attr_context *c,slapi_compute_output > compute_evaluator *current = NULL; > > for (current = compute_evaluators; (current != NULL) && (-1 == rc); current = current->next) { >+ if (current->rootonly) { >+ int isroot; >+ slapi_pblock_get(c->pb, SLAPI_REQUESTOR_ISROOT, &isroot); >+ if (!isroot) { >+ continue; >+ } >+ } > rc = (*(current->function))(c,type,e,outfn); > } > return rc; >@@ -157,14 +165,19 @@ compute_stock_evaluator(computed_attr_context *c,char* type,Slapi_Entry *e,slapi > } > > static void >-compute_add_evaluator_nolock(slapi_compute_callback_t function, compute_evaluator *new_eval) >+compute_add_evaluator_nolock(slapi_compute_callback_t function, compute_evaluator *new_eval, int rootonly) > { > new_eval->next = compute_evaluators; > new_eval->function = function; >+ new_eval->rootonly = rootonly; > compute_evaluators = new_eval; > } > int slapi_compute_add_evaluator(slapi_compute_callback_t function) > { >+ return slapi_compute_add_evaluator_ext(function, 0); >+} >+int slapi_compute_add_evaluator_ext(slapi_compute_callback_t function, int rootonly) >+{ > int rc = 0; > compute_evaluator *new_eval = NULL; > PR_ASSERT(NULL != function); >@@ -187,7 +200,7 @@ int slapi_compute_add_evaluator(slapi_compute_callback_t function) > slapi_rwlock_wrlock(compute_evaluators_lock); > } > >- compute_add_evaluator_nolock(function, new_eval); >+ compute_add_evaluator_nolock(function, new_eval, rootonly); > > if (need_lock) { > slapi_rwlock_unlock(compute_evaluators_lock); >diff --git a/ldap/servers/slapd/entrywsi.c b/ldap/servers/slapd/entrywsi.c >index 23bb797..7039bfc 100644 >--- a/ldap/servers/slapd/entrywsi.c >+++ b/ldap/servers/slapd/entrywsi.c >@@ -1086,7 +1086,7 @@ entry_compute_nscpentrywsi(computed_attr_context *c,char* type,Slapi_Entry *e,sl > int > entry_computed_attr_init() > { >- slapi_compute_add_evaluator(entry_compute_nscpentrywsi); >+ slapi_compute_add_evaluator_ext(entry_compute_nscpentrywsi, 1 /* root only */); > return 0; > } > >diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h >index b803f91..f318bb6 100644 >--- a/ldap/servers/slapd/slapi-plugin.h >+++ b/ldap/servers/slapd/slapi-plugin.h >@@ -6344,6 +6344,7 @@ typedef int (*slapi_compute_output_t)(computed_attr_context *c,Slapi_Attr *a , S > typedef int (*slapi_compute_callback_t)(computed_attr_context *c,char* type,Slapi_Entry *e,slapi_compute_output_t outputfn); > typedef int (*slapi_search_rewrite_callback_t)(Slapi_PBlock *pb); > int slapi_compute_add_evaluator(slapi_compute_callback_t function); >+int slapi_compute_add_evaluator_ext(slapi_compute_callback_t function, int rootonly); > int slapi_compute_add_search_rewriter(slapi_search_rewrite_callback_t function); > int compute_rewrite_search_filter(Slapi_PBlock *pb); > >-- >1.8.1.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1123477
:
921040
|
921712
| 921835