Skip to content

Commit

Permalink
Merge pull request #601 from gitlab-djensen/gitlab-djensen-use-settin…
Browse files Browse the repository at this point in the history
…g-for-max-byte-size

Replace MAX_BYTE_SIZE constant with setting
  • Loading branch information
pitbulk authored Sep 6, 2021
2 parents ebe2317 + b6fa044 commit c21d693
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 19 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,27 @@ response = OneLogin::RubySaml::Response.new(params[:SAMLResponse], :allowed_cloc
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:
```ruby
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 needs to provide an attribute service within it's metadata and reference the index in the assertion.
Expand Down
2 changes: 1 addition & 1 deletion lib/onelogin/ruby-saml/logoutresponse.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def initialize(response, settings = nil, options = {})
end

@options = options
@response = decode_raw_saml(response)
@response = decode_raw_saml(response, settings)
@document = XMLSecurity::SignedDocument.new(@response)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/onelogin/ruby-saml/response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def initialize(response, options = {})
end
end

@response = decode_raw_saml(response)
@response = decode_raw_saml(response, settings)
@document = XMLSecurity::SignedDocument.new(@response, @errors)

if assertion_encrypted?
Expand Down
9 changes: 4 additions & 5 deletions lib/onelogin/ruby-saml/saml_message.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ class SamlMessage
BASE64_FORMAT = %r(\A([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?\Z)
@@mutex = Mutex.new

MAX_BYTE_SIZE = 250000

# @return [Nokogiri::XML::Schema] Gets the schema object of the SAML 2.0 Protocol schema
#
def self.schema
Expand Down Expand Up @@ -88,11 +86,12 @@ def valid_saml?(document, soft = true)
# @param saml [String] The deflated and encoded SAML Message
# @return [String] The plain SAML Message
#
def decode_raw_saml(saml)
def decode_raw_saml(saml, settings = nil)
return saml unless base64_encoded?(saml)

if saml.bytesize > MAX_BYTE_SIZE
raise ValidationError.new("Encoded SAML Message exceeds " + MAX_BYTE_SIZE.to_s + " bytes, so was rejected")
settings = OneLogin::RubySaml::Settings.new if settings.nil?
if saml.bytesize > settings.message_max_bytesize
raise ValidationError.new("Encoded SAML Message exceeds " + settings.message_max_bytesize.to_s + " bytes, so was rejected")
end

decoded = decode(saml)
Expand Down
2 changes: 2 additions & 0 deletions lib/onelogin/ruby-saml/settings.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def initialize(overrides = {}, keep_security_attributes = false)
attr_accessor :compress_request
attr_accessor :compress_response
attr_accessor :double_quote_xml_attribute_values
attr_accessor :message_max_bytesize
attr_accessor :passive
attr_reader :protocol_binding
attr_accessor :attributes_index
Expand Down Expand Up @@ -264,6 +265,7 @@ def get_binding(value)
:idp_cert_fingerprint_algorithm => XMLSecurity::Document::SHA1,
:compress_request => true,
:compress_response => true,
:message_max_bytesize => 250000,
:soft => true,
:double_quote_xml_attribute_values => false,
:security => {
Expand Down
2 changes: 1 addition & 1 deletion lib/onelogin/ruby-saml/slo_logoutrequest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def initialize(request, options = {})
end
end

@request = decode_raw_saml(request)
@request = decode_raw_saml(request, settings)
@document = REXML::Document.new(@request)
end

Expand Down
32 changes: 22 additions & 10 deletions test/saml_message_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,33 @@ class RubySamlTest < Minitest::Test
end

describe "Prevent Zlib bomb attack" do
let(:bomb) { Base64.encode64(Zlib::Deflate.deflate(bomb_data, 9)[2..-5]) }
let(:bomb_data) { bomb_prefix + "A" * (200000 * 1024) + bomb_suffix }
let(:bomb_prefix) { """<?xml version='1.0' encoding='UTF-8'?>
<samlp:LogoutRequest xmlns:samlp='urn:oasis:names:tc:SAML:2.0:protocol' xmlns:saml='urn:oasis:names:tc:SAML:2.0:assertion' ID='ONELOGIN_21df91a89767879fc0f7df6a1490c6000c81644d' Version='2.0' IssueInstant='2014-07-18T01:13:06Z' Destination='http://idp.example.com/SingleLogoutService.php'>
<saml:Issuer>""" }
let(:bomb_suffix) { """</saml:Issuer>
<saml:NameID SPNameQualifier='http://sp.example.com/demo1/metadata.php' Format='urn:oasis:names:tc:SAML:2.0:nameid-format:transient'>ONELOGIN_f92cc1834efc0f73e9c09f482fce80037a6251e7</saml:NameID>
</samlp:LogoutRequest>""" }

it "raises error when SAML Message exceed the allowed bytes" do
prefix= """<?xml version='1.0' encoding='UTF-8'?>
<samlp:LogoutRequest xmlns:samlp='urn:oasis:names:tc:SAML:2.0:protocol' xmlns:saml='urn:oasis:names:tc:SAML:2.0:assertion' ID='ONELOGIN_21df91a89767879fc0f7df6a1490c6000c81644d' Version='2.0' IssueInstant='2014-07-18T01:13:06Z' Destination='http://idp.example.com/SingleLogoutService.php'>
<saml:Issuer>"""
suffix= """</saml:Issuer>
<saml:NameID SPNameQualifier='http://sp.example.com/demo1/metadata.php' Format='urn:oasis:names:tc:SAML:2.0:nameid-format:transient'>ONELOGIN_f92cc1834efc0f73e9c09f482fce80037a6251e7</saml:NameID>
</samlp:LogoutRequest>"""

data = prefix + "A" * (200000 * 1024) + suffix
bomb = Base64.encode64(Zlib::Deflate.deflate(data, 9)[2..-5])
assert_raises(OneLogin::RubySaml::ValidationError, "Encoded SAML Message exceeds " + OneLogin::RubySaml::SamlMessage::MAX_BYTE_SIZE.to_s + " bytes, so was rejected") do
assert_raises(OneLogin::RubySaml::ValidationError, "Encoded SAML Message exceeds #{OneLogin::RubySaml::Settings::DEFAULTS[:message_max_bytesize]} bytes, so was rejected") do
saml_message = OneLogin::RubySaml::SamlMessage.new
saml_message.send(:decode_raw_saml, bomb)
end
end

describe 'with a custom setting for message_max_bytesize' do
let(:message_max_bytesize) { 100_00 }
let(:settings) { OneLogin::RubySaml::Settings.new(message_max_bytesize: message_max_bytesize) }

it 'uses the custom setting' do
assert_raises(OneLogin::RubySaml::ValidationError, "Encoded SAML Message exceeds #{message_max_bytesize} bytes, so was rejected") do
saml_message = OneLogin::RubySaml::SamlMessage.new
saml_message.send(:decode_raw_saml, bomb, settings)
end
end
end
end
end
end
3 changes: 2 additions & 1 deletion test/settings_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class SettingsTest < Minitest::Test
:idp_attribute_names, :issuer, :assertion_consumer_service_url, :single_logout_service_url,
:sp_name_qualifier, :name_identifier_format, :name_identifier_value, :name_identifier_value_requested,
:sessionindex, :attributes_index, :passive, :force_authn,
:compress_request, :double_quote_xml_attribute_values,
:compress_request, :double_quote_xml_attribute_values, :message_max_bytesize,
:security, :certificate, :private_key,
:authn_context, :authn_context_comparison, :authn_context_decl_ref,
:assertion_consumer_logout_service_url
Expand Down Expand Up @@ -89,6 +89,7 @@ class SettingsTest < Minitest::Test
:idp_slo_service_url => "http://sso.muda.no/slo",
:idp_slo_service_binding => "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST",
:idp_cert_fingerprint => "00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00",
:message_max_bytesize => 750000,
:valid_until => '2029-04-16T03:35:08.277Z',
:name_identifier_format => "urn:oasis:names:tc:SAML:2.0:nameid-format:transient",
:attributes_index => 30,
Expand Down

0 comments on commit c21d693

Please sign in to comment.