1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

mod_ldap: HTML-escape ldap-status handler.

Reported by Chamal De Silva.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1913855 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Covener
2023-11-16 19:53:18 +00:00
parent b05d54e40f
commit fbc113c3cf
2 changed files with 9 additions and 7 deletions

View File

@@ -0,0 +1,2 @@
*) mod_ldap: HTML-escape data in the ldap-status handler.
[Eric Covener, Chamal De Silva]

View File

@@ -230,8 +230,8 @@ void util_ldap_search_node_display(request_rec *r, util_ald_cache_t *cache, void
"<td nowrap>%s</td>" "<td nowrap>%s</td>"
"<td nowrap>%s</td>" "<td nowrap>%s</td>"
"</tr>", "</tr>",
node->username, ap_escape_html(r->pool, node->username),
node->dn, ap_escape_html(r->pool, node->dn),
date_str); date_str);
} }
@@ -331,9 +331,9 @@ void util_ldap_compare_node_display(request_rec *r, util_ald_cache_t *cache, voi
"<td nowrap>%s</td>" "<td nowrap>%s</td>"
"<td nowrap>%s</td>" "<td nowrap>%s</td>"
"</tr>", "</tr>",
node->dn, ap_escape_html(r->pool, node->dn),
node->attrib, ap_escape_html(r->pool, node->attrib),
node->value, ap_escape_html(r->pool, node->value),
date_str, date_str,
cmp_result, cmp_result,
sub_groups_val, sub_groups_val,
@@ -391,8 +391,8 @@ void util_ldap_dn_compare_node_display(request_rec *r, util_ald_cache_t *cache,
"<td nowrap>%s</td>" "<td nowrap>%s</td>"
"<td nowrap>%s</td>" "<td nowrap>%s</td>"
"</tr>", "</tr>",
node->reqdn, ap_escape_html(r->pool, node->reqdn),
node->dn); ap_escape_html(r->pool, node->dn));
} }