https://github.com/saml-toolkits/ruby-saml
SAML SSO for Ruby
https://github.com/saml-toolkits/ruby-saml
Keywords from Contributors
activerecord activejob mvc rubygems rack crash-reporting rspec feature-flag sinatra ruby-gem
Last synced: about 20 hours ago
JSON representation
Repository metadata
SAML SSO for Ruby
- Host: GitHub
- URL: https://github.com/saml-toolkits/ruby-saml
- Owner: SAML-Toolkits
- License: mit
- Created: 2010-05-03T18:39:04.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2025-11-23T11:22:35.000Z (19 days ago)
- Last Synced: 2025-11-27T12:56:02.033Z (15 days ago)
- Language: Ruby
- Homepage:
- Size: 2.92 MB
- Stars: 972
- Watchers: 108
- Forks: 593
- Open Issues: 17
- Releases: 45
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
README.md
Ruby SAML
Minor and patch versions of Ruby SAML may introduce breaking changes. Please read
UPGRADING.md for guidance on upgrading to new Ruby SAML versions.
Vulnerability Notice
CVE-2025-54572 affects version ruby-saml < 1.18.1
There are critical vulnerabilities affecting ruby-saml < 1.18.0, two of them allows SAML authentication bypass (CVE-2025-25291, CVE-2025-25292, CVE-2025-25293). Please upgrade to a fixed version (1.18.0)
Vulnerability Reporting
If you believe you have discovered a security vulnerability in this gem, please report
it by email to the maintainer: sixto.martin.garcia+security@gmail.com
Sponsors
Thanks to the following sponsors for securing the open source ecosystem:
SerpApi
A real-time API to access Google search results. It handle proxies, solve captchas, and parse all rich structured data for you
Github
The complete developer platform to build, scale, and deliver secure software.
84codes
Simplifying Message Queuing and Streaming. Leave server management to the experts, so you can focus on building great applications.
Overview
The Ruby SAML library is for implementing the client side of a SAML authorization,
i.e. it provides a means for managing authorization initialization and confirmation
requests from identity providers.
SAML authorization is a two-step process and you are expected to implement support for both.
We created a demo project for Rails 4 that uses the latest version of this library:
ruby-saml-example
Security Considerations
- Validation of the IdP Metadata URL: When loading IdP Metadata from a URLs,
Ruby SAML requires you (the developer/administrator) to ensure the supplied URL is correct
and from a trusted source. Ruby SAML does not perform any validation that the URL
you entered is correct and/or safe. - False-Positive Security Warnings: Some tools may incorrectly report Ruby SAML as a
potential security vulnerability, due to its dependency on Nokogiri. Such warnings can
be ignored; Ruby SAML uses Nokogiri in a safe way, by always disabling its DTDLOAD option
and enabling its NONET option. - Prevent Replay attacks: A replay attack is when an attacker intercepts a valid SAML
assertion and "replays" it at a later time to gain unauthorized access. Theruby-saml
library provides the tools to prevent this, but you, the developer, must implement thecore logic, see an specific section later in the README.
Supported Ruby Versions
The following Ruby versions are covered by CI testing:
- Ruby (MRI) 2.1 to 3.4
- JRuby 9.1 to 9.4
- TruffleRuby (latest)
Getting Started
In order to use Ruby SAML you will need to install the gem (either manually or using Bundler),
and require the library in your Ruby application:
Using Gemfile
# latest stable
gem 'ruby-saml', '~> 1.18.0'
# or track master for bleeding-edge
gem 'ruby-saml', :github => 'saml-toolkit/ruby-saml'
Using RubyGems
gem install ruby-saml
You may require the entire Ruby SAML gem:
require 'onelogin/ruby-saml'
or just the required components individually:
require 'onelogin/ruby-saml/authrequest'
Installation on Ruby 1.8.7
This gem uses Nokogiri as a dependency, which dropped support for Ruby 1.8.x in Nokogiri 1.6.
When installing this gem on Ruby 1.8.7, you will need to make sure a version of Nokogiri
prior to 1.6 is installed or specified if it hasn't been already.
Using Gemfile
gem 'nokogiri', '~> 1.5.10'
Using RubyGems
gem install nokogiri --version '~> 1.5.10'
Configuring Logging
When troubleshooting SAML integration issues, you will find it extremely helpful to examine the
output of this gem's business logic. By default, log messages are emitted to RAILS_DEFAULT_LOGGER
when the gem is used in a Rails context, and to STDOUT when the gem is used outside of Rails.
To override the default behavior and control the destination of log messages, provide
a ruby Logger object to the gem's logging singleton:
OneLogin::RubySaml::Logging.logger = Logger.new('/var/log/ruby-saml.log')
The Initialization Phase
This is the first request you will get from the identity provider. It will hit your application
at a specific URL that you've announced as your SAML initialization point. The response to
this initialization is a redirect back to the identity provider, which can look something
like this (ignore the saml_settings method call for now):
def init
request = OneLogin::RubySaml::Authrequest.new
redirect_to(request.create(saml_settings))
end
If the SP knows who should be authenticated in the IdP, it can provide that info as follows:
def init
request = OneLogin::RubySaml::Authrequest.new
saml_settings.name_identifier_value_requested = "testuser@example.com"
saml_settings.name_identifier_format = "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress"
redirect_to(request.create(saml_settings))
end
Once you've redirected back to the identity provider, it will ensure that the user has been
authorized and redirect back to your application for final consumption.
This can look something like this (the authorize_success and authorize_failure
methods are specific to your application):
def consume
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], :settings => saml_settings)
# We validate the SAML Response and check if the user already exists in the system
if response.is_valid?
# authorize_success, log the user
session[:userid] = response.nameid
session[:attributes] = response.attributes
else
authorize_failure # This method shows an error message
# List of errors is available in response.errors array
end
end
In the above there are a few assumptions, one being that response.nameid is an email address.
This is all handled with how you specify the settings that are in play via the saml_settings method.
That could be implemented along the lines of this:
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse])
response.settings = saml_settings
If the assertion of the SAMLResponse is not encrypted, you can initialize the Response
without the :settings parameter and set it later. If the SAMLResponse contains an encrypted
assertion, you need to provide the settings in the initialize method in order to obtain the
decrypted assertion, using the service provider private key in order to decrypt.
If you don't know what expect, always use the former (set the settings on initialize).
def saml_settings
settings = OneLogin::RubySaml::Settings.new
settings.assertion_consumer_service_url = "http://#{request.host}/saml/consume"
settings.sp_entity_id = "http://#{request.host}/saml/metadata"
settings.idp_entity_id = "https://app.onelogin.com/saml/metadata/#{OneLoginAppId}"
settings.idp_sso_service_url = "https://app.onelogin.com/trust/saml2/http-post/sso/#{OneLoginAppId}"
settings.idp_sso_service_binding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" # or :post, :redirect
settings.idp_slo_service_url = "https://app.onelogin.com/trust/saml2/http-redirect/slo/#{OneLoginAppId}"
settings.idp_slo_service_binding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" # or :post, :redirect
settings.idp_cert_fingerprint = OneLoginAppCertFingerPrint
settings.idp_cert_fingerprint_algorithm = "http://www.w3.org/2000/09/xmldsig#sha1"
settings.name_identifier_format = "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress"
# Optional for most SAML IdPs
settings.authn_context = "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport"
# or as an array
settings.authn_context = [
"urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport",
"urn:oasis:names:tc:SAML:2.0:ac:classes:Password"
]
# Optional bindings (defaults to Redirect for logout POST for ACS)
settings.single_logout_service_binding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" # or :post, :redirect
settings.assertion_consumer_service_binding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" # or :post, :redirect
settings
end
The use of settings.issuer is deprecated in favor of settings.sp_entity_id since version 1.11.0
Some assertion validations can be skipped by passing parameters to OneLogin::RubySaml::Response.new().
For example, you can skip the AuthnStatement, Conditions, Recipient, or the SubjectConfirmation
validations by initializing the response with different options:
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], {skip_authnstatement: true}) # skips AuthnStatement
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], {skip_conditions: true}) # skips conditions
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], {skip_subject_confirmation: true}) # skips subject confirmation
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], {skip_recipient_check: true}) # doesn't skip subject confirmation, but skips the recipient check which is a sub check of the subject_confirmation check
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], {skip_audience: true}) # skips audience check
All that's left is to wrap everything in a controller and reference it in the initialization and
consumption URLs in OneLogin. A full controller example could look like this:
# This controller expects you to use the URLs /saml/init and /saml/consume in your OneLogin application.
class SamlController < ApplicationController
def init
request = OneLogin::RubySaml::Authrequest.new
redirect_to(request.create(saml_settings))
end
def consume
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse])
response.settings = saml_settings
# We validate the SAML Response and check if the user already exists in the system
if response.is_valid?
# authorize_success, log the user
session[:userid] = response.nameid
session[:attributes] = response.attributes
else
authorize_failure # This method shows an error message
# List of errors is available in response.errors array
end
end
private
def saml_settings
settings = OneLogin::RubySaml::Settings.new
settings.assertion_consumer_service_url = "http://#{request.host}/saml/consume"
settings.sp_entity_id = "http://#{request.host}/saml/metadata"
settings.idp_sso_service_url = "https://app.onelogin.com/saml/signon/#{OneLoginAppId}"
settings.idp_cert_fingerprint = OneLoginAppCertFingerPrint
settings.name_identifier_format = "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress"
# Optional for most SAML IdPs
settings.authn_context = "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport"
# Optional. Describe according to IdP specification (if supported) which attributes the SP desires to receive in SAMLResponse.
settings.attributes_index = 5
# Optional. Describe an attribute consuming service for support of additional attributes.
settings.attribute_consuming_service.configure do
service_name "Service"
service_index 5
add_attribute :name => "Name", :name_format => "Name Format", :friendly_name => "Friendly Name"
end
settings
end
end
Signature Validation
Ruby SAML allows different ways to validate the signature of the SAMLResponse:
- You can provide the IdP X.509 public certificate at the
idp_certsetting. - You can provide the IdP X.509 public certificate in fingerprint format using the
idp_cert_fingerprintsetting parameter and additionally theidp_cert_fingerprint_algorithmparameter.
When validating the signature of redirect binding, the fingerprint is useless and the certificate
of the IdP is required in order to execute the validation. You can pass the option
:relax_signature_validation to SloLogoutrequest and Logoutresponse if want to avoid signature
validation if no certificate of the IdP is provided.
In production also we highly recommend to register on the settings the IdP certificate instead
of using the fingerprint method. The fingerprint, is a hash, so at the end is open to a collision
attack that can end on a signature validation bypass. Other SAML toolkits deprecated that mechanism,
we maintain it for compatibility and also to be used on test environment.
Handling Multiple IdP Certificates
If the IdP metadata XML includes multiple certificates, you may specify the idp_cert_multi
parameter. When used, the idp_cert and idp_cert_fingerprint parameters are ignored.
This is useful in the following scenarios:
- The IdP uses different certificates for signing versus encryption.
- The IdP is undergoing a key rollover and is publishing the old and new certificates in parallel.
The idp_cert_multi must be a Hash as follows. The :signing and :encryption arrays below,
add the IdP X.509 public certificates which were published in the IdP metadata.
{
:signing => [],
:encryption => []
}
Metadata Based Configuration
The method above requires a little extra work to manually specify attributes about both the IdP and your SP application.
There's an easier method: use a metadata exchange. Metadata is an XML file that defines the capabilities of both the IdP
and the SP application. It also contains the X.509 public key certificates which add to the trusted relationship.
The IdP administrator can also configure custom settings for an SP based on the metadata.
Using IdpMetadataParser#parse_remote, the IdP metadata will be added to the settings.
def saml_settings
idp_metadata_parser = OneLogin::RubySaml::IdpMetadataParser.new
# Returns OneLogin::RubySaml::Settings pre-populated with IdP metadata
settings = idp_metadata_parser.parse_remote("https://example.com/auth/saml2/idp/metadata")
settings.assertion_consumer_service_url = "http://#{request.host}/saml/consume"
settings.sp_entity_id = "http://#{request.host}/saml/metadata"
settings.name_identifier_format = "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress"
# Optional for most SAML IdPs
settings.authn_context = "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport"
settings
end
The following attributes are set:
- idp_entity_id
- name_identifier_format
- idp_sso_service_url
- idp_slo_service_url
- idp_attribute_names
- idp_cert
- idp_cert_fingerprint
- idp_cert_multi
Retrieve one Entity Descriptor when many exist in Metadata
If the Metadata contains several entities, the relevant Entity
Descriptor can be specified when retrieving the settings from the
IdpMetadataParser by its Entity Id value:
validate_cert = true
settings = idp_metadata_parser.parse_remote(
"https://example.com/auth/saml2/idp/metadata",
validate_cert,
entity_id: "http//example.com/target/entity"
)
Retrieve one Entity Descriptor with a specific binding and nameid format when several are available
If the metadata contains multiple bindings and NameID formats, the relevant ones
can be specified when retrieving the settings from the IdpMetadataParser
by the values of binding and NameID:
validate_cert = true
options = {
entity_id: "http//example.com/target/entity",
name_id_format: "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress",
sso_binding: "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST",
slo_binding: "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST"
}
settings = idp_metadata_parser.parse_remote(
"https://example.com/auth/saml2/idp/metadata",
validate_cert,
options
)
Parsing Metadata into an Hash
The OneLogin::RubySaml::IdpMetadataParser also provides the methods #parse_to_hash and #parse_remote_to_hash.
Those return an Hash instead of a Settings object, which may be useful for configuring
omniauth-saml, for instance.
Validating Signature of Metadata and retrieve settings
Right now there is no method at ruby_saml to validate the signature of the metadata that is going to be parsed, but it can be done as follows:
- Download the XML.
- Validate the Signature, providing the cert.
- Provide the XML to the parse method if the signature was validated
require "xml_security"
require "onelogin/ruby-saml/utils"
require "onelogin/ruby-saml/idp_metadata_parser"
url = "<url_to_the_metadata>"
idp_metadata_parser = OneLogin::RubySaml::IdpMetadataParser.new
uri = URI.parse(url)
raise ArgumentError.new("url must begin with http or https") unless /^https?/ =~ uri.scheme
http = Net::HTTP.new(uri.host, uri.port)
if uri.scheme == "https"
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
end
get = Net::HTTP::Get.new(uri.request_uri)
get.basic_auth uri.user, uri.password if uri.user
response = http.request(get)
xml = response.body
errors = []
doc = XMLSecurity::SignedDocument.new(xml, errors)
cert_str = "<include_cert_here>"
cert = OneLogin::RubySaml::Utils.format_cert("cert_str")
metadata_sign_cert = OpenSSL::X509::Certificate.new(cert)
valid = doc.validate_document_with_cert(metadata_sign_cert, true)
if valid
settings = idp_metadata_parser.parse(
xml,
entity_id: "<entity_id_of_the_entity_to_be_retrieved>"
)
else
print "Metadata Signature failed to be verified with the cert provided"
end
Retrieving Attributes
If you are using saml:AttributeStatement to transfer data, such as the username, you can access all the attributes through response.attributes. It contains all the saml:AttributeStatements with its 'Name' as an indifferent key and one or more saml:AttributeValues as values. The value returned depends on the value of the
single_value_compatibility (when activated, only the first value is returned)
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse])
response.settings = saml_settings
response.attributes[:username]
Imagine this saml:AttributeStatement
<saml:AttributeStatement>
<saml:Attribute Name="uid">
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">demo</saml:AttributeValue>
</saml:Attribute>
<saml:Attribute Name="another_value">
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">value1</saml:AttributeValue>
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">value2</saml:AttributeValue>
</saml:Attribute>
<saml:Attribute Name="role">
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">role1</saml:AttributeValue>
</saml:Attribute>
<saml:Attribute Name="role">
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">role2</saml:AttributeValue>
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">role3</saml:AttributeValue>
</saml:Attribute>
<saml:Attribute Name="attribute_with_nil_value">
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</saml:Attribute>
<saml:Attribute Name="attribute_with_nils_and_empty_strings">
<saml:AttributeValue/>
<saml:AttributeValue>valuePresent</saml:AttributeValue>
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="1"/>
</saml:Attribute>
<saml:Attribute Name="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname">
<saml:AttributeValue>usersName</saml:AttributeValue>
</saml:Attribute>
</saml:AttributeStatement>
pp(response.attributes) # is an OneLogin::RubySaml::Attributes object
# => @attributes=
{"uid"=>["demo"],
"another_value"=>["value1", "value2"],
"role"=>["role1", "role2", "role3"],
"attribute_with_nil_value"=>[nil],
"attribute_with_nils_and_empty_strings"=>["", "valuePresent", nil, nil]
"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname"=>["usersName"]}>
# Active single_value_compatibility
OneLogin::RubySaml::Attributes.single_value_compatibility = true
pp(response.attributes[:uid])
# => "demo"
pp(response.attributes[:role])
# => "role1"
pp(response.attributes.single(:role))
# => "role1"
pp(response.attributes.multi(:role))
# => ["role1", "role2", "role3"]
pp(response.attributes.fetch(:role))
# => "role1"
pp(response.attributes[:attribute_with_nil_value])
# => nil
pp(response.attributes[:attribute_with_nils_and_empty_strings])
# => ""
pp(response.attributes[:not_exists])
# => nil
pp(response.attributes.single(:not_exists))
# => nil
pp(response.attributes.multi(:not_exists))
# => nil
pp(response.attributes.fetch(/givenname/))
# => "usersName"
# Deprecated single_value_compatibility
OneLogin::RubySaml::Attributes.single_value_compatibility = false
pp(response.attributes[:uid])
# => ["demo"]
pp(response.attributes[:role])
# => ["role1", "role2", "role3"]
pp(response.attributes.single(:role))
# => "role1"
pp(response.attributes.multi(:role))
# => ["role1", "role2", "role3"]
pp(response.attributes.fetch(:role))
# => ["role1", "role2", "role3"]
pp(response.attributes[:attribute_with_nil_value])
# => [nil]
pp(response.attributes[:attribute_with_nils_and_empty_strings])
# => ["", "valuePresent", nil, nil]
pp(response.attributes[:not_exists])
# => nil
pp(response.attributes.single(:not_exists))
# => nil
pp(response.attributes.multi(:not_exists))
# => nil
pp(response.attributes.fetch(/givenname/))
# => ["usersName"]
The saml:AuthnContextClassRef of the AuthNRequest can be provided by settings.authn_context; possible values are described at [SAMLAuthnCxt]. The comparison method can be set using settings.authn_context_comparison parameter. Possible values include: 'exact', 'better', 'maximum' and 'minimum' (default value is 'exact').
To add a saml:AuthnContextDeclRef, define settings.authn_context_decl_ref.
In a SP-initiated flow, the SP can indicate to the IdP the subject that should be authenticated. This is done by defining the settings.name_identifier_value_requested before
building the authrequest object.
Service Provider Metadata
To form a trusted pair relationship with the IdP, the SP (you) need to provide metadata XML
to the IdP for various good reasons. (Caching, certificate lookups, relaying party permissions, etc)
The class OneLogin::RubySaml::Metadata takes care of this by reading the Settings and returning XML. All you have to do is add a controller to return the data, then give this URL to the IdP administrator.
The metadata will be polled by the IdP every few minutes, so updating your settings should propagate
to the IdP settings.
class SamlController < ApplicationController
# ... the rest of your controller definitions ...
def metadata
settings = Account.get_saml_settings
meta = OneLogin::RubySaml::Metadata.new
render :xml => meta.generate(settings), :content_type => "application/samlmetadata+xml"
end
end
You can add ValidUntil and CacheDuration to the SP Metadata XML using instead:
# Valid until => 2 days from now
# Cache duration = 604800s = 1 week
valid_until = Time.now + 172800
cache_duration = 604800
meta.generate(settings, false, valid_until, cache_duration)
Signing and Decryption
Ruby SAML supports the following functionality:
- Signing your SP Metadata XML
- Signing your SP SAML messages
- Decrypting IdP Assertion messages upon receipt (EncryptedAssertion)
- Verifying signatures on SAML messages and IdP Assertions
In order to use functions 1-3 above, you must first define your SP public certificate and private key:
settings.certificate = "CERTIFICATE TEXT WITH BEGIN/END HEADER AND FOOTER"
settings.private_key = "PRIVATE KEY TEXT WITH BEGIN/END HEADER AND FOOTER"
Note that the same certificate (and its associated private key) are used to perform
all decryption and signing-related functions (1-4) above. Ruby SAML does not currently allow
to specify different certificates for each function.
You may also globally set the SP signature and digest method, to be used in SP signing (functions 1 and 2 above):
settings.security[:digest_method] = XMLSecurity::Document::SHA1
settings.security[:signature_method] = XMLSecurity::Document::RSA_SHA1
Signing SP Metadata
You may add a <ds:Signature> digital signature element to your SP Metadata XML using the following setting:
settings.certificate = "CERTIFICATE TEXT WITH BEGIN/END HEADER AND FOOTER"
settings.private_key = "PRIVATE KEY TEXT WITH BEGIN/END HEADER AND FOOTER"
settings.security[:metadata_signed] = true # Enable signature on Metadata
Signing SP SAML Messages
Ruby SAML supports SAML request signing. The Service Provider will sign the
request/responses with its private key. The Identity Provider will then validate the signature
of the received request/responses with the public X.509 cert of the Service Provider.
To enable, please first set your certificate and private key. This will add <md:KeyDescriptor use="signing">
to your SP Metadata XML, to be read by the IdP.
settings.certificate = "CERTIFICATE TEXT WITH BEGIN/END HEADER AND FOOTER"
settings.private_key = "PRIVATE KEY TEXT WITH BEGIN/END HEADER AND FOOTER"
Next, you may specify the specific SP SAML messages you would like to sign:
settings.security[:authn_requests_signed] = true # Enable signature on AuthNRequest
settings.security[:logout_requests_signed] = true # Enable signature on Logout Request
settings.security[:logout_responses_signed] = true # Enable signature on Logout Response
Signatures will be handled automatically for both HTTP-Redirect and HTTP-POST Binding.
Note that the RelayState parameter is used when creating the Signature on the HTTP-Redirect Binding.
Remember to provide it to the Signature builder if you are sending a GET RelayState parameter or the
signature validation process will fail at the Identity Provider.
Decrypting IdP SAML Assertions
Ruby SAML supports EncryptedAssertion. The Identity Provider will encrypt the Assertion with the
public cert of the Service Provider. The Service Provider will decrypt the EncryptedAssertion with its private key.
You may enable EncryptedAssertion as follows. This will add <md:KeyDescriptor use="encryption"> to your
SP Metadata XML, to be read by the IdP.
settings.certificate = "CERTIFICATE TEXT WITH BEGIN/END HEADER AND FOOTER"
settings.private_key = "PRIVATE KEY TEXT WITH BEGIN/END HEADER AND FOOTER"
settings.security[:want_assertions_encrypted] = true # Invalidate SAML messages without an EncryptedAssertion
Verifying Signature on IdP Assertions
You may require the IdP to sign its SAML Assertions using the following setting.
This will add <md:SPSSODescriptor WantAssertionsSigned="true"> to your SP Metadata XML.
The signature will be checked against the <md:KeyDescriptor use="signing"> element
present in the IdP's metadata.
settings.security[:want_assertions_signed] = true # Require the IdP to sign its SAML Assertions
Certificate and Signature Validation
You may require SP and IdP certificates to be non-expired using the following settings:
settings.security[:check_idp_cert_expiration] = true # Raise error if IdP X.509 cert is expired
settings.security[:check_sp_cert_expiration] = true # Raise error SP X.509 cert is expired
By default, Ruby SAML will raise a OneLogin::RubySaml::ValidationError if a signature or certificate
validation fails. You may disable such exceptions using the settings.security[:soft] parameter.
settings.security[:soft] = true # Do not raise error on failed signature/certificate validations
Advanced SP Certificate Usage & Key Rollover
Ruby SAML provides the settings.sp_cert_multi parameter to enable the following
advanced usage scenarios:
- Rotating SP certificates and private keys without disruption of service.
- Specifying separate SP certificates for signing and encryption.
The sp_cert_multi parameter replaces certificate and private_key
(you may not specify both parameters at the same time.) sp_cert_multi has the following shape:
settings.sp_cert_multi = {
signing: [
{ certificate: cert1, private_key: private_key1 },
{ certificate: cert2, private_key: private_key2 }
],
encryption: [
{ certificate: cert1, private_key: private_key1 },
{ certificate: cert3, private_key: private_key1 }
],
}
Certificate rotation is acheived by inserting new certificates at the bottom of each list,
and then removing the old certificates from the top of the list once your IdPs have migrated.
A common practice is for apps to publish the current SP metadata at a URL endpoint and have
the IdP regularly poll for updates.
Note the following:
- You may re-use the same certificate and/or private key in multiple places, including for both signing and encryption.
- The IdP should attempt to verify signatures with all
:signingcertificates,
and permit if any one succeeds. When signing, Ruby SAML will use the first SP certificate
in thesp_cert_multi[:signing]array. This will be the first active/non-expired certificate
in the array ifsettings.security[:check_sp_cert_expiration]is true. - The IdP may encrypt with any of the SP certificates in the
sp_cert_multi[:encryption]
array. When decrypting, Ruby SAML attempt to decrypt with each SP private key in
sp_cert_multi[:encryption]until the decryption is successful. This will skip private
keys for inactive/expired certificates if:check_sp_cert_expirationis true. - If
:check_sp_cert_expirationis true, the generated SP metadata XML will not include
inactive/expired certificates. This avoids validation errors when the IdP reads the SP
metadata.
Audience Validation
A service provider should only consider a SAML response valid if the IdP includes an
element containing an element that uniquely identifies the service provider. Unless you specify
the skip_audience option, Ruby SAML will validate that each SAML response includes an element
whose contents matches settings.sp_entity_id.
By default, Ruby SAML considers an element containing only empty elements
to be valid. That means an otherwise valid SAML response with a condition like this would be valid:
<AudienceRestriction>
<Audience />
</AudienceRestriction>
You may enforce that an element containing only empty elements
is invalid using the settings.security[:strict_audience_validation] parameter.
settings.security[:strict_audience_validation] = true
Single Log Out
Ruby SAML supports SP-initiated Single Logout and IdP-Initiated Single Logout.
Here is an example that we could add to our previous controller to generate and send a SAML Logout Request to the IdP:
# Create a SP initiated SLO
def sp_logout_request
# LogoutRequest accepts plain browser requests w/o paramters
settings = saml_settings
if settings.idp_slo_service_url.nil?
logger.info "SLO IdP Endpoint not found in settings, then executing a normal logout'"
delete_session
else
logout_request = OneLogin::RubySaml::Logoutrequest.new
logger.info "New SP SLO for userid '#{session[:userid]}' transactionid '#{logout_request.uuid}'"
if settings.name_identifier_value.nil?
settings.name_identifier_value = session[:userid]
end
# Ensure user is logged out before redirect to IdP, in case anything goes wrong during single logout process (as recommended by saml2int [SDP-SP34])
logged_user = session[:userid]
logger.info "Delete session for '#{session[:userid]}'"
delete_session
# Save the transaction_id to compare it with the response we get back
session[:transaction_id] = logout_request.uuid
session[:logged_out_user] = logged_user
relayState = url_for(controller: 'saml', action: 'index')
redirect_to(logout_request.create(settings, :RelayState => relayState))
end
end
This method processes the SAML Logout Response sent by the IdP as the reply of the SAML Logout Request:
# After sending an SP initiated LogoutRequest to the IdP, we need to accept
# the LogoutResponse, verify it, then actually delete our session.
def process_logout_response
settings = Account.get_saml_settings
if session.has_key? :transaction_id
logout_response = OneLogin::RubySaml::Logoutresponse.new(params[:SAMLResponse], settings, :matches_request_id => session[:transaction_id])
else
logout_response = OneLogin::RubySaml::Logoutresponse.new(params[:SAMLResponse], settings)
end
logger.info "LogoutResponse is: #{logout_response.to_s}"
# Validate the SAML Logout Response
if not logout_response.validate
logger.error "The SAML Logout Response is invalid"
else
# Actually log out this session
logger.info "SLO completed for '#{session[:logged_out_user]}'"
delete_session
end
end
# Delete a user's session.
def delete_session
session[:userid] = nil
session[:attributes] = nil
session[:transaction_id] = nil
session[:logged_out_user] = nil
end
Here is an example that we could add to our previous controller to process a SAML Logout Request from the IdP and reply with a SAML Logout Response to the IdP:
# Method to handle IdP initiated logouts
def idp_logout_request
settings = Account.get_saml_settings
# ADFS URL-Encodes SAML data as lowercase, and the toolkit by default uses
# uppercase. Turn it True for ADFS compatibility on signature verification
settings.security[:lowercase_url_encoding] = true
logout_request = OneLogin::RubySaml::SloLogoutrequest.new(
params[:SAMLRequest], settings: settings
)
if !logout_request.is_valid?
logger.error "IdP initiated LogoutRequest was not valid!"
return render :inline => logger.error
end
logger.info "IdP initiated Logout for #{logout_request.name_id}"
# Actually log out this session
delete_session
# Generate a response to the IdP.
logout_request_id = logout_request.id
logout_response = OneLogin::RubySaml::SloLogoutresponse.new.create(settings, logout_request_id, nil, :RelayState => params[:RelayState])
redirect_to logout_response
end
All the mentioned methods could be handled in a unique view:
# Trigger SP and IdP initiated Logout requests
def logout
# If we're given a logout request, handle it in the IdP logout initiated method
if params[:SAMLRequest]
return idp_logout_request
# We've been given a response back from the IdP, process it
elsif params[:SAMLResponse]
return process_logout_response
# Initiate SLO (send Logout Request)
else
return sp_logout_request
end
end
Clock Drift
Server clocks tend to drift naturally. If during validation of the response you get the error "Current time is earlier than NotBefore condition", this may be due to clock differences between your system and that of the Identity Provider.
First, ensure that both systems synchronize their clocks, using for example the industry standard Network Time Protocol (NTP).
Even then you may experience intermittent issues, as the clock of the Identity Provider may drift slightly ahead of your system clocks. To allow for a small amount of clock drift, you can initialize the response by passing in an option named :allowed_clock_drift. Its value must be given in a number (and/or fraction) of seconds. The value given is added to the current time at which the response is validated before it's tested against the NotBefore assertion. For example:
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], :allowed_clock_drift => 1.second)
Make sure to keep the value as comfortably small as possible to keep security risks to a minimum.
Deflation Limit
To protect against decompression bombs (a form of DoS attack), SAML messages are limited to 250,000 bytes by default.
Sometimes legitimate SAML messages will exceed this limit,
for example due to custom claims like including groups a user is a member of.
If you want to customize this limit, you need to provide a different setting when initializing the response object.
Example:
def consume
response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], { settings: saml_settings })
...
end
private
def saml_settings
OneLogin::RubySaml::Settings.new(message_max_bytesize: 500_000)
end
Attribute Service
To request attributes from the IdP the SP must provide an attribute service within its metadata and reference the index in the assertion.
settings = OneLogin::RubySaml::Settings.new
settings.attributes_index = 5
settings.attribute_consuming_service.configure do
service_name "Service"
service_index 5
add_attribute :name => "Name", :name_format => "Name Format", :friendly_name => "Friendly Name"
add_attribute :name => "Another Attribute", :name_format => "Name Format", :friendly_name => "Friendly Name", :attribute_value => "Attribute Value"
end
The attribute_value option additionally accepts an array of possible values.
Custom Metadata Fields
Some IdPs may require SPs to add additional fields (Organization, ContactPerson, etc.)
into the SP metadata. This can be achieved by extending the OneLogin::RubySaml::Metadata
class and overriding the #add_extras method as per the following example:
class MyMetadata < OneLogin::RubySaml::Metadata
def add_extras(root, _settings)
org = root.add_element("md:Organization")
org.add_element("md:OrganizationName", 'xml:lang' => "en-US").text = 'ACME Inc.'
org.add_element("md:OrganizationDisplayName", 'xml:lang' => "en-US").text = 'ACME'
org.add_element("md:OrganizationURL", 'xml:lang' => "en-US").text = 'https://www.acme.com'
cp = root.add_element("md:ContactPerson", 'contactType' => 'technical')
cp.add_element("md:GivenName").text = 'ACME SAML Team'
cp.add_element("md:EmailAddress").text = 'saml@acme.com'
end
end
# Output XML with custom metadata
MyMetadata.new.generate(settings)
Preventing Replay Attacks
A replay attack is when an attacker intercepts a valid SAML assertion and "replays" it at a later time to gain unauthorized access.
The library only checks the assertion's validity window (NotBefore and NotOnOrAfter conditions). An attacker can replay a valid assertion as many times as they want within this window.
A robust defense requires tracking of assertion IDs to ensure any given assertion is only accepted once.
1. Extract the Assertion ID after Validation
After a response has been successfully validated, get the assertion ID. The library makes this available via response.assertion_id.
2. Store the ID with an Expiry
You must store this ID in a persistent cache (like Redis or Memcached) that is shared across your servers. Do not store it in the user's session, as that is not a secure cache.
The ID should be stored until the assertion's validity window has passed. You will need to check how long the trusted IdPs consider the assertion valid and then add the allowed_clock_drift.
You can define a global value, or set this value dinamically based on the not_on_or_after value of the re + allowed_clock_drift.
# In your `consume` action, after a successful validation:
if response.is_valid?
# Prevent replay of this specific assertion
assertion_id = response.assertion_id
authorize_failure("Assertion ID is mandatory") if assertion_id.nil?
assertion_not_on_or_after = response.not_on_or_after
# We set a default of 5 min expiration in case is not provided
assertion_expiry = (Time.now.utc + 300) if assertion_not_on_or_after.nil?
# `is_new_assertion?` is your application's method to check and set the ID
# in a shared, persistent cache (e.g., Redis, Memcached).
if is_new_assertion?(assertion_id, expires_at: assertion_expiry)
# This is a new assertion, so we can proceed
session[:userid] = response.nameid
session[:attributes] = response.attributes
# ...
else
# This assertion ID has been seen before. This is a REPLAY ATTACK.
# Log the security event and reject the user.
authorize_failure("Replay attack detected")
end
else
authorize_failure("Invalid response")
end
Your is_new_assertion? method would look something like this (example for Redis):
def is_new_assertion?(assertion_id, expires_at)
ttl = (expires_at - Time.now.utc).to_i
return false if ttl <= 0 # The assertion has already expired
# The 'nx' option tells Redis to only set the key if it does not already exist.
# The command returns `true` if the key was set, `false` otherwise.
$redis.set("saml_assertion_ids:#{assertion_id}", "1", ex: ttl, nx: true)
end
Enforce SP-Initiated Flow with InResponseTo validation
This is the best way to prevent IdP-initiated logins and ensure that you only accept assertions that you recently requested.
1. Store the AuthnRequest ID
When you create an AuthnRequest, the library assigns it a unique ID. You must store this ID, for example in the user's session before redirecting them to the IdP.
def init
request = OneLogin::RubySaml::Authrequest.new
# The unique ID of the request is in request.uuid
session[:saml_request_id] = request.uuid
redirect_to(request.create(saml_settings))
end
2. Validate the InResponseTo value of the Response with the Stored ID
When you process the SAMLResponse, retrieve the ID from the session and pass it to the Response constructor. Use session.delete to ensure the ID can only be used once.
def consume
request_id = session.delete(:saml_request_id) # Use delete to prevent re-use
# You can reject the response if no previous saml_request_id was stored
raise "IdP-initiaited detected" if request_id.nil?
response = OneLogin::RubySaml::Response.new(
params[:SAMLResponse],
settings: saml_settings,
matches_request_id: request_id
)
if response.is_valid?
# ... authorize user
else
# Response is invalid, errors in response.errors
end
end
Contributing
Pay it Forward: Support RubySAML and Strengthen Open-Source Security
RubySAML is a trusted authentication library used by startups and enterprises alike—
a community-driven alternative to costly third-party services.
But security doesn't happen in a vacuum. Vulnerabilities in authentication libraries can
have widespread consequences. Maintaining open-source security requires continuous
effort, expertise, and funding. By supporting RubySAML, you’re not just securing your
own systems—you’re strengthening auth security globally. Instead of paying for closed
solutions, consider investing in the community that does the real security work.
How you can help
- Sponsor RubySAML: GitHub Sponsors
- Contribute to secure-by-design improvements
- Responsibly report vulnerabilities (see "Vulnerability Reporting" above)
Security is a shared responsibility. If RubySAML has helped your organization, please
consider giving back. Together, we can keep authentication secure—without putting it
behind paywalls.
Adding Features, Pull Requests
- Fork the repository
- Make your feature addition or bug fix
- Add tests for your new features. This is important so we don't break any features in a future version unintentionally.
- Ensure all tests pass by running
bundle exec rake test. - Do not change Rakefile, version, or history.
- Open a pull request, following this template.
Sponsors
Thanks to the following sponsors for securing the open source ecosystem:
SerpApi
A real-time API to access Google search results. It handle proxies, solve captchas, and parse all rich structured data for you
Github
The complete developer platform to build, scale, and deliver secure software.
84codes
Simplifying Message Queuing and Streaming. Leave server management to the experts, so you can focus on building great applications.
License
Ruby SAML is made available under the MIT License. Refer to LICENSE.
Owner metadata
- Name: SAML-Toolkits
- Login: SAML-Toolkits
- Email: contact@iamdigitalservices.com
- Kind: organization
- Description: SAML-Toolkits maintained by Sixto Martin @ IAM Digital Services SL
- Website:
- Location: Spain
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/116213842?v=4
- Repositories: 6
- Last ynced at: 2025-10-06T14:41:53.131Z
- Profile URL: https://github.com/SAML-Toolkits
GitHub Events
Total
- Fork event: 27
- Create event: 8
- Commit comment event: 3
- Release event: 4
- Issues event: 17
- Watch event: 54
- Delete event: 2
- Member event: 1
- Issue comment event: 85
- Push event: 49
- Pull request review event: 14
- Pull request review comment event: 14
- Pull request event: 67
Last Year
- Fork event: 23
- Create event: 8
- Commit comment event: 3
- Release event: 4
- Issues event: 16
- Watch event: 41
- Delete event: 2
- Member event: 1
- Issue comment event: 84
- Push event: 49
- Pull request review event: 14
- Pull request review comment event: 14
- Pull request event: 64
Committers metadata
Last synced: 6 days ago
Total Commits: 874
Total Committers: 177
Avg Commits per committer: 4.938
Development Distribution Score (DDS): 0.67
Commits in past year: 30
Committers in past year: 6
Avg Commits per committer in past year: 5.0
Development Distribution Score (DDS) in past year: 0.367
| Name | Commits | |
|---|---|---|
| Sixto Martin | p****k@g****m | 288 |
| Morten Primdahl | m****n@z****m | 48 |
| shields | s****s@t****m | 31 |
| Christian Pedersen | c****n@c****l | 29 |
| Ben Radler | b****r@m****m | 23 |
| Ylan Segal | y****n@s****m | 15 |
| Ole Christian Rynning | oc@r****o | 15 |
| Clyde Law | c****e@f****m | 14 |
| Marcelo de Moraes Serpa | f****e@g****m | 11 |
| Christian Pedersen | c****n@c****n | 11 |
| Cal Heldenbrand | c****l@f****m | 10 |
| Dan McFadden | d****n@g****m | 10 |
| Phil Cohen | g****b@p****t | 10 |
| David Librera | d****a@g****m | 9 |
| Stephen Touset | s****n@t****g | 9 |
| shubhendra | w****h@g****m | 8 |
| boni | b****i@t****u | 8 |
| Rafaël Gonzalez | r****z | 8 |
| Geoffrey Hichborn | g****f@s****m | 8 |
| Lawrence Pit | l****t@g****m | 7 |
| Jeff Parsons | j****s@s****m | 7 |
| Merlyn Albery-Speyer | m****n@n****m | 6 |
| Joe Rozner | j****r@o****m | 6 |
| Vincent Woo | me@v****m | 6 |
| Steve H | s****n@w****m | 6 |
| Olle Jonsson | o****n@g****m | 6 |
| Laas Toom | l****m@g****m | 6 |
| Buffy Miller | b****y@s****m | 6 |
| Christian Pedersen | c****n@o****m | 6 |
| gene | g****e@v****m | 5 |
| and 147 more... | ||
Committer domains:
- onelogin.com: 5
- me.com: 4
- isotope11.com: 2
- dimelo.com: 2
- relex.fi: 2
- pagerduty.com: 2
- flant.ru: 2
- gyldendal.no: 1
- agilefreaks.com: 1
- quest.com: 1
- jondavidjohn.com: 1
- ouelong.com: 1
- wr-studios.com: 1
- freeagentcentral.com: 1
- rightscale.com: 1
- med.cornell.edu: 1
- warwickshire.gov.uk: 1
- gitlab.com: 1
- davidcel.is: 1
- smartsheet.com: 1
- talentoday.com: 1
- reachlocal.com: 1
- intellum.com: 1
- sage.com: 1
- zendesk.com: 1
- tablecheck.com: 1
- segal-family.com: 1
- rynning.no: 1
- futureadvisor.com: 1
- christian.lan: 1
- fbsdata.com: 1
- phlippers.net: 1
- touset.org: 1
- twine.hu: 1
- socialcast.com: 1
- stileeducation.com: 1
- newrelic.com: 1
- vincentwoo.com: 1
- welltok.com: 1
- sethmiller.com: 1
- valimail.com: 1
- mentimeter.com: 1
- progras.dk: 1
- futurelearn.com: 1
- tknzk.dev: 1
- aurainfosec.com: 1
- workable.com: 1
- danbuettner.net: 1
- github.com: 1
- files.com: 1
- vestey.dev: 1
- spike.net.nz: 1
- adhocteam.us: 1
- hackerone.com: 1
- atyndall.net: 1
- examtime.com: 1
- xtrasimplicity.com: 1
- rewardops.com: 1
- dio.jp: 1
- cirrusmd.com: 1
- tut.by: 1
- knightlabs.com: 1
- harrisony.com: 1
- degraaff.org: 1
- wyeworks.com: 1
- eduardobautista.com: 1
- blessing.io: 1
- soupmatt.com: 1
- gsa.gov: 1
- thelevelup.com: 1
- masukomi.org: 1
- bluemangolearning.com: 1
- wmci.com: 1
- scvngr.com: 1
- starkast.net: 1
- steeple.fr: 1
- pamediakopes.gr: 1
- luma-institute.com: 1
- reax.io: 1
- bekk.no: 1
- benefacting.org: 1
- vitals.com: 1
- spamcop.net: 1
- cowcross.co.uk: 1
- cisco.com: 1
- cpan.org: 1
- securesaml.com: 1
- dsky-mail.com: 1
- id.me: 1
Issue and Pull Request metadata
Last synced: 3 days ago
Total issues: 78
Total pull requests: 205
Average time to close issues: over 1 year
Average time to close pull requests: 3 months
Total issue authors: 51
Total pull request authors: 47
Average comments per issue: 3.27
Average comments per pull request: 1.9
Merged pull request: 125
Bot issues: 0
Bot pull requests: 1
Past year issues: 11
Past year pull requests: 69
Past year average time to close issues: about 1 month
Past year average time to close pull requests: 10 days
Past year issue authors: 8
Past year pull request authors: 7
Past year average comments per issue: 2.64
Past year average comments per pull request: 1.23
Past year merged pull request: 36
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- johnnyshields (22)
- pitbulk (3)
- bdewater-thatch (2)
- jhubert (2)
- dblessing (2)
- googya (2)
- bmesuere (1)
- bramleyjl (1)
- alperkokmen (1)
- cjamison (1)
- caioeps (1)
- DaAwesomeP (1)
- bojan-drljaca-lu (1)
- msxavi (1)
- raphaelcm (1)
Top Pull Request Authors
- johnnyshields (109)
- pitbulk (27)
- HParker (4)
- Osama2035 (4)
- blombard (3)
- bramleyjl (3)
- Capncavedan (2)
- frederikspang (2)
- gitlab-djensen (2)
- vcsjones (2)
- alagos (2)
- eriklovmo (2)
- casperisfine (2)
- tobiasamft (2)
- dentarg (2)
Top Issue Labels
- informative (6)
- resolved (6)
- question (5)
- enhancement (4)
- pending (3)
- wont-fix (2)
- PR-welcome (2)
- security (1)
Top Pull Request Labels
- wont-fix (2)
- pending-merge (2)
- pending (2)
Package metadata
- Total packages: 4
-
Total downloads:
- rubygems: 241,386,475 total
- Total docker downloads: 1,161,025,060
- Total dependent packages: 20 (may contain duplicates)
- Total dependent repositories: 2,297 (may contain duplicates)
- Total versions: 292
- Total maintainers: 1
- Total advisories: 11
gem.coop: ruby-saml
SAML Ruby toolkit. Add SAML support to your Ruby software using this library
- Homepage: https://github.com/saml-toolkits/ruby-saml
- Documentation: http://www.rubydoc.info/gems/ruby-saml/
- Licenses: MIT
- Latest release: 1.18.1 (published 5 months ago)
- Last Synced: 2025-12-10T18:01:46.845Z (2 days ago)
- Versions: 89
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 120,672,016 Total
- Docker Downloads: 580,512,530
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.091%
- Docker downloads count: 0.159%
- Downloads: 0.203%
- Maintainers (1)
-
Advisories:
- Ruby-saml allows a Libxml2 Canonicalization error to bypass Digest/Signature validation
- Ruby-saml has a SAML authentication bypass due to namespace handling (parser differential)
- Ruby SAML DOS vulnerability with large SAML response
- Ruby SAML allows a SAML authentication bypass due to namespace handling (parser differential)
- Ruby SAML allows a SAML authentication bypass due to DOCTYPE handling (parser differential)
- Ruby SAML allows remote Denial of Service (DoS) with compressed SAML responses
- SAML authentication bypass via Incorrect XPath selector
- ruby-saml vulnerable to XPath injection
- Ruby-SAML Improper Authentication vulnerability
- Ruby-saml allows attackers to perform XML signature wrapping attacks
rubygems.org: ruby-saml
SAML Ruby toolkit. Add SAML support to your Ruby software using this library
- Homepage: https://github.com/saml-toolkits/ruby-saml
- Documentation: http://www.rubydoc.info/gems/ruby-saml/
- Licenses: MIT
- Latest release: 1.18.1 (published 5 months ago)
- Last Synced: 2025-12-11T09:27:34.198Z (1 day ago)
- Versions: 89
- Dependent Packages: 20
- Dependent Repositories: 2,297
- Downloads: 120,714,459 Total
- Docker Downloads: 580,512,530
-
Rankings:
- Docker downloads count: 0.191%
- Downloads: 0.214%
- Dependent repos count: 0.658%
- Average: 0.877%
- Dependent packages count: 1.051%
- Forks count: 1.155%
- Stargazers count: 1.997%
- Maintainers (1)
-
Advisories:
- Ruby-saml allows a Libxml2 Canonicalization error to bypass Digest/Signature validation
- Ruby-saml has a SAML authentication bypass due to namespace handling (parser differential)
- Ruby SAML DOS vulnerability with large SAML response
- Ruby SAML allows a SAML authentication bypass due to namespace handling (parser differential)
- Ruby SAML allows a SAML authentication bypass due to DOCTYPE handling (parser differential)
- Ruby SAML allows remote Denial of Service (DoS) with compressed SAML responses
- SAML authentication bypass via Incorrect XPath selector
- ruby-saml vulnerable to XPath injection
- Ruby-SAML Improper Authentication vulnerability
- Ruby-saml allows attackers to perform XML signature wrapping attacks
proxy.golang.org: github.com/saml-toolkits/ruby-saml
- Homepage:
- Documentation: https://pkg.go.dev/github.com/saml-toolkits/ruby-saml#section-documentation
- Licenses: mit
- Latest release: v1.18.1 (published 5 months ago)
- Last Synced: 2025-12-09T22:02:58.037Z (3 days ago)
- Versions: 57
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 5.432%
- Average: 5.615%
- Dependent repos count: 5.797%
proxy.golang.org: github.com/SAML-Toolkits/ruby-saml
- Homepage:
- Documentation: https://pkg.go.dev/github.com/SAML-Toolkits/ruby-saml#section-documentation
- Licenses: mit
- Latest release: v1.18.1 (published 5 months ago)
- Last Synced: 2025-12-09T22:02:57.843Z (3 days ago)
- Versions: 57
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 5.442%
- Average: 5.624%
- Dependent repos count: 5.807%
Dependencies
- byebug ~> 2.1.1 development
- coveralls >= 0 development
- debugger ~> 1.6.4 development
- debugger-linecache ~> 1.2.0 development
- minitest ~> 5.5 development
- mocha ~> 0.14 development
- pry >= 0 development
- pry-byebug >= 0 development
- rake ~> 10 development
- ruby-debug ~> 0.10.4 development
- shoulda ~> 2.11 development
- simplecov >= 0 development
- systemu ~> 2 development
- timecop <= 0.6.0 development
- timecop ~> 0.9 development
- jruby-openssl >= 0.9.8
- json < 2.3.0
- nokogiri >= 1.5.10, <= 1.6.8.1
- nokogiri <= 1.5.11
- nokogiri >= 1.9.1, < 1.10.0
- nokogiri >= 1.8.2
- nokogiri >= 1.8.2, <= 1.8.5
- nokogiri >= 1.10.5
- rexml >= 0
- uuid >= 0
- actions/checkout v2 composite
- coverallsapp/github-action master composite
- ruby/setup-ruby v1 composite
Score: 33.13430515038216