| /plugin/authsaml/ |
| D | action.php | 35 protected $saml; variable in action_plugin_authsaml 46 $this->saml = new saml_handler($this->conf); 60 $this->saml->get_ssp_instance(); 65 $this->saml->ssp->requireAuth(); 68 if ($this->saml->ssp->isAuthenticated()) { 70 $username = $this->saml->getUsername(); 72 $user = $this->saml->getUserData($username); 75 if(!$this->saml->register_user($username)) { 80 $user = $this->saml->getUserData($username); 84 $this->saml->update_user($username); [all …]
|
| D | auth.php | 27 protected $saml; variable in auth_plugin_authsaml 46 $this->saml = new saml_handler($this->conf); 58 return $this->saml->getUserData($user); 63 return $this->saml->checkPass($user); 73 $this->saml->get_ssp_instance(); 75 if ($this->saml->ssp->isAuthenticated()) { 76 $username = $this->saml->getUsername(); 77 $this->saml->login($username);
|
| D | plugin.info.txt | 7 url https://github.com/pitbulk/dokuwiki-saml
|
| /plugin/saml/ |
| D | auth.php | 11 protected $saml; variable in auth_plugin_saml 30 $this->saml = $hlp->getSamlLib(); 67 $url = $this->saml->login( 80 $this->saml->processResponse(); 81 if ($this->saml->isAuthenticated()) { 130 msg('SAML: '.hsc($this->saml->getLastErrorReason()), -1); 151 $saml = $hlp->getSamlLib(); 158 $saml->processSLO(); 159 $errors = $saml->getErrors(); 162 msg('SAML SLO: '. implode(', ', $errors) . '; ' . $saml->getLastErrorReason(), -1); [all …]
|
| D | helper.php | 12 protected $saml; variable in helper_plugin_saml 21 if ($this->saml === null) { 23 $this->saml = new OneLogin_Saml2_Auth($this->createSettings()); 25 return $this->saml;
|
| D | plugin.info.txt | 1 base saml 7 url http://www.dokuwiki.org/plugin:saml
|
| D | action.php | 41 $saml = $hlp->getSamlLib(); 48 $xml = $saml->getSettings()->getSPMetadata();
|
| D | README | 7 http://www.dokuwiki.org/plugin:saml 10 lib/plugins/saml/ - if the folder is called different it
|
| /plugin/adfs/ |
| D | auth.php | 10 protected $saml; variable in auth_plugin_adfs 29 $this->saml = $hlp->getSamlLib(); 58 $url = $this->saml->login( 71 $this->saml->processResponse(); 72 if ($this->saml->isAuthenticated()) { 121 msg('ADFS: '.hsc($this->saml->getLastErrorReason()), -1); 193 $data = $this->saml->getAttribute($attr);
|
| D | helper.php | 11 protected $saml; variable in helper_plugin_adfs 20 if ($this->saml === null) { 22 $this->saml = new OneLogin_Saml2_Auth($this->createSettings()); 24 return $this->saml;
|
| D | action.php | 32 $saml = $hlp->getSamlLib(); 37 $xml = $saml->getSettings()->getSPMetadata();
|
| /plugin/adfs/phpsaml/ |
| D | CHANGELOG | 28 * [#344](https://github.com/onelogin/php-saml/issues/344) Raise errors on IdPMetadataParser::parseR… 39 * [#283](https://github.com/onelogin/php-saml/pull/283) New method of importing a decrypted asserti… 42 * [#265](https://github.com/onelogin/php-saml/issues/265) Support parameters at getSPMetadata method 57 * [#242](https://github.com/onelogin/php-saml/pull/242) Document that SHA-1 must not be used 58 * [#250](https://github.com/onelogin/php-saml/pull/250) Fixed issue with IdPMetadataParser only kee… 59 * [#263](https://github.com/onelogin/php-saml/issues/263) Fix incompatibility with ADFS on SLO. Whe… 62 * [#236](https://github.com/onelogin/php-saml/pull/236) Exclude unnecesary files from Composer prod… 63 * [#226](https://github.com/onelogin/php-saml/pull/226) Add possibility to handle nameId NameQualif… 69 * [#201](https://github.com/onelogin/php-saml/issues/201) Fix issues with SP entity_id, acs url and… 72 * [#206](https://github.com/onelogin/php-saml/pull/206)Be able to register future SP x509cert on th… [all …]
|
| D | README.md | 3 …saml.png?branch=master)](http://travis-ci.org/onelogin/php-saml) [, but php-saml was not directly affected … 21 Update php-saml to 2.15.0, this version includes a security patch related to XEE attacks 23 php-saml is not affected by [201803-01](https://simplesamlphp.org/security/201803-01) 25 Update php-saml to 2.10.4, this version includes a security patch related to 26 [signature validations on LogoutRequests/LogoutResponses](https://github.com/onelogin/php-saml/comm… 28 Update php-saml to 2.10.0, this version includes a security patch that contains extra validations t… 30 php-saml < v2.10.0 is vulnerable and allows signature wrapping! 89 …guide: [https://developers.onelogin.com/page/saml-toolkit-for-php](https://developers.onelogin.com… 109 git clone git@github.com:onelogin/php-saml.git [all …]
|
| /plugin/saml/phpsaml/ |
| D | CHANGELOG | 28 * [#344](https://github.com/onelogin/php-saml/issues/344) Raise errors on IdPMetadataParser::parseR… 39 * [#283](https://github.com/onelogin/php-saml/pull/283) New method of importing a decrypted asserti… 42 * [#265](https://github.com/onelogin/php-saml/issues/265) Support parameters at getSPMetadata method 57 * [#242](https://github.com/onelogin/php-saml/pull/242) Document that SHA-1 must not be used 58 * [#250](https://github.com/onelogin/php-saml/pull/250) Fixed issue with IdPMetadataParser only kee… 59 * [#263](https://github.com/onelogin/php-saml/issues/263) Fix incompatibility with ADFS on SLO. Whe… 62 * [#236](https://github.com/onelogin/php-saml/pull/236) Exclude unnecesary files from Composer prod… 63 * [#226](https://github.com/onelogin/php-saml/pull/226) Add possibility to handle nameId NameQualif… 69 * [#201](https://github.com/onelogin/php-saml/issues/201) Fix issues with SP entity_id, acs url and… 72 * [#206](https://github.com/onelogin/php-saml/pull/206)Be able to register future SP x509cert on th… [all …]
|
| D | README.md | 3 …saml.png?branch=master)](http://travis-ci.org/onelogin/php-saml) [, but php-saml was not directly affected … 21 Update php-saml to 2.15.0, this version includes a security patch related to XEE attacks 23 php-saml is not affected by [201803-01](https://simplesamlphp.org/security/201803-01) 25 Update php-saml to 2.10.4, this version includes a security patch related to 26 [signature validations on LogoutRequests/LogoutResponses](https://github.com/onelogin/php-saml/comm… 28 Update php-saml to 2.10.0, this version includes a security patch that contains extra validations t… 30 php-saml < v2.10.0 is vulnerable and allows signature wrapping! 89 …guide: [https://developers.onelogin.com/page/saml-toolkit-for-php](https://developers.onelogin.com… 109 git clone git@github.com:onelogin/php-saml.git [all …]
|
| /plugin/adfs/phpsaml/lib/Saml2/ |
| D | Response.php | 1141 if (!$decrypted->hasAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:saml') 1149 } else if (strpos($encryptedAssertion->tagName, 'saml:') !== false) { 1150 $ns = 'xmlns:saml';
|
| D | Utils.php | 1375 $issuerNodes = self::query($dom, '/'.$rootNode->tagName.'/saml:Issuer');
|
| /plugin/saml/phpsaml/lib/Saml2/ |
| D | Response.php | 1141 if (!$decrypted->hasAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:saml') 1149 } else if (strpos($encryptedAssertion->tagName, 'saml:') !== false) { 1150 $ns = 'xmlns:saml';
|
| D | Utils.php | 1375 $issuerNodes = self::query($dom, '/'.$rootNode->tagName.'/saml:Issuer');
|