Skip to content
Snippets Groups Projects
Commit c7c8e778 authored by Olav Morken's avatar Olav Morken
Browse files

templates/status: Fix cross-site scripting.

If simpleSAMLphp is configured with a attribute hook that creates
attribute values containing associative arrays, and is displaying
attributes from an untrusted IdP, it can lead to cross-site scripting.

(Note that the feature allowing for attribute values with associative
arrays is believed to be unused, and will be removed in a future
release.)

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2434 44740490-163a-0410-bde0-09ae8108e29a
parent 4fa92f64
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,11 @@ $attributes = $this->data['attributes']; ...@@ -28,7 +28,11 @@ $attributes = $this->data['attributes'];
function present_list($attr) { function present_list($attr) {
if (is_array($attr) && count($attr) > 1) { if (is_array($attr) && count($attr) > 1) {
$str = '<ul><li>' . join('</li><li>', $attr) . '</li></ul>'; $str = '<ul>';
foreach ($attr as $value) {
$str .= '<li>' . htmlspecialchars($attr) . '</li>';
}
$str .= '</ul>';
return $str; return $str;
} else { } else {
return htmlspecialchars($attr[0]); return htmlspecialchars($attr[0]);
...@@ -73,7 +77,7 @@ function present_attributes($t, $attributes, $nameParent) { ...@@ -73,7 +77,7 @@ function present_attributes($t, $attributes, $nameParent) {
$str .= '<tr class="' . $alternate[($i++ % 2)] . '"><td class="attrname">' . htmlspecialchars($name) . '</td><td class="attrvalue"><ul>'; $str .= '<tr class="' . $alternate[($i++ % 2)] . '"><td class="attrname">' . htmlspecialchars($name) . '</td><td class="attrvalue"><ul>';
foreach ($value AS $listitem) { foreach ($value AS $listitem) {
if ($nameraw === 'jpegPhoto') { if ($nameraw === 'jpegPhoto') {
$str .= '<li><img src="data:image/jpeg;base64,' . $listitem . '" /></li>'; $str .= '<li><img src="data:image/jpeg;base64,' . htmlspecialchars($listitem) . '" /></li>';
} else { } else {
$str .= '<li>' . present_assoc($listitem) . '</li>'; $str .= '<li>' . present_assoc($listitem) . '</li>';
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment