omniauth-wsfed icon indicating copy to clipboard operation
omniauth-wsfed copied to clipboard

WS-Federation and WS-Trust strategy for OmniAuth.

Results 15 omniauth-wsfed issues
Sort by recently updated
recently updated
newest added

This error started to raise when we migrated our project to `Rails 5.2.3 & Ruby 2.6.3`. > [BUG] Unexpected node test: : Adding `*` before `[` fixed this issue for...

``` NoMethodError (undefined method `text' for nil:NilClass): vendor/bundle/ruby/2.2.0/gems/omniauth-wsfed-0.3.3.pre.beta/lib/omniauth/strategies/wsfed/saml_2_token.rb:18:in `issuer' vendor/bundle/ruby/2.2.0/gems/omniauth-wsfed-0.3.3.pre.beta/lib/omniauth/strategies/wsfed/auth_callback.rb:50:in `issuer' vendor/bundle/ruby/2.2.0/gems/omniauth-wsfed-0.3.3.pre.beta/lib/omniauth/strategies/wsfed/auth_callback_validator.rb:32:in `validate_issuer!' vendor/bundle/ruby/2.2.0/gems/omniauth-wsfed-0.3.3.pre.beta/lib/omniauth/strategies/wsfed/auth_callback_validator.rb:21:in `validate!' vendor/bundle/ruby/2.2.0/gems/omniauth-wsfed-0.3.3.pre.beta/lib/omniauth/strategies/wsfed.rb:41:in `callback_phase' ```

This is useful to force the user to enter a password again.

Issuer URL build changed to concat params correctly, as it was always doing it with "?", even if the URL already had it. Without this fix, it generates query strings...

This PR makes the README display badges as SVG, which is clearer to read. It also removes a wrong character in a documentation link to the MSDN overview article about...

Using ADFS3 as the IDP, the signature and digests fails validation by mismatched hashes. Not sure if there is a configuration issue on my end, but from what I can...

I get this error when I get the response back from the ACS: ``` app error: undefined method `text' for nil:NilClass (NoMethodError) /app/vendor/bundle/ruby/2.2.0/gems/omniauth-wsfed-0.2.3/lib/omniauth/strategies/wsfed/auth_callback.rb:40:in `audience' ``` The parsing fails because in...

Setup: ADFS 3.0 SAML: 2.0 ``` NoMethodError (undefined method `text' for nil:NilClass): omniauth-wsfed (0.3.3.pre.beta) lib/omniauth/strategies/wsfed/saml_2_token.rb:23:in `issuer' omniauth-wsfed (0.3.3.pre.beta) lib/omniauth/strategies/wsfed/auth_callback.rb:50:in `issuer' omniauth-wsfed (0.3.3.pre.beta) lib/omniauth/strategies/wsfed/auth_callback_validator.rb:32:in `validate_issuer!' omniauth-wsfed (0.3.3.pre.beta) lib/omniauth/strategies/wsfed/auth_callback_validator.rb:21:in `validate!' omniauth-wsfed (0.3.3.pre.beta)...

This pull requests add support for SAML 1 Tokens. There are a couple things to note: - I based the saml1_example.xml on the service I am communicating with, but replaced...