Skip to content

Commit 60566ad

Browse files
committed
1.14.17
1 parent e51faf4 commit 60566ad

8 files changed

Lines changed: 13 additions & 7 deletions

File tree

docs/simplesamlphp-changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ SimpleSAMLphp changelog
66
This document lists the changes between versions of SimpleSAMLphp.
77
See the upgrade notes for specific information about upgrading.
88

9+
## Version 1.14.17
10+
11+
Released 2017-10-25
12+
13+
* Resolved a security issue with the SAML 1.1 Service Provider. See [SSPSA 201710-01](https://simplesamlphp.org/security/201710-01).
14+
915
## Version 1.14.16
1016

1117
Released 2017-09-04

extra/simplesamlphp.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%define name simplesamlphp
22
%define summary SAML IDP/SP written in PHP
3-
%define version 1.14.16
3+
%define version 1.14.17
44
%define release 11
55
%define license LGPL 2.1
66
%define group Networking/WWW

lib/SimpleSAML/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ public function copyFromBase($instancename, $filename)
325325
*/
326326
public function getVersion()
327327
{
328-
return '1.14.16';
328+
return '1.14.17';
329329
}
330330

331331

lib/SimpleSAML/XML/Validator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public function isNodeValidated($node) {
260260
assert('$node instanceof DOMNode');
261261

262262
while($node !== NULL) {
263-
if(in_array($node, $this->validNodes)) {
263+
if(in_array($node, $this->validNodes, true)) {
264264
return TRUE;
265265
}
266266

modules/ldap/lib/Auth/Process/AttributeAddFromLDAP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public function process(&$request) {
173173
$ldap = $this->getLdap();
174174
} catch (Exception $e) {
175175
// Added this warning in case $this->getLdap() fails
176-
SimpleSAML\Logger::warning("AttributeAddFromLDAP: exception = " . $e);
176+
SimpleSAML_Logger::warning("AttributeAddFromLDAP: exception = " . $e);
177177
return;
178178
}
179179
// search for matching entries

modules/saml/lib/Auth/Process/AttributeNameID.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function getValue(array &$state)
6969
$value = $value[0];
7070

7171
if (empty($value)) {
72-
SimpleSAML\Logger::warning(
72+
SimpleSAML_Logger::warning(
7373
'Empty value in attribute '.var_export($this->attribute, true).
7474
' on user - not generating persistent NameID.'
7575
);

modules/saml/lib/Auth/Process/PersistentNameID.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected function getValue(array &$state)
7878
$uid = $uid[0];
7979

8080
if (empty($uid)) {
81-
SimpleSAML\Logger::warning(
81+
SimpleSAML_Logger::warning(
8282
'Empty value in attribute '.var_export($this->attribute, true).
8383
' on user - not generating persistent NameID.'
8484
);

modules/saml/lib/Auth/Process/SQLPersistentNameID.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ protected function getValue(array &$state)
134134
$uid = $uid[0];
135135

136136
if (empty($uid)) {
137-
SimpleSAML\Logger::warning(
137+
SimpleSAML_Logger::warning(
138138
'Empty value in attribute '.var_export($this->attribute, true).
139139
' on user - not generating persistent NameID.'
140140
);

0 commit comments

Comments
 (0)