MEDIUM 5.9 RubyGems
Possible timing attack in derivation_endpoint
GHSA-5jjv-x4fq-qjwp · CVE-2020-15237
Published · Modified
Description
Impact
When using the derivation_endpoint plugin, it's possible for the attacker to use a timing attack to guess the signature of the derivation URL.
Patches
The problem has been fixed by comparing sent and calculated signature in constant time, using Rack::Utils.secure_compare. Users using the derivation_endpoint plugin are urged to upgrade to Shrine 3.3.0 or greater.
Workarounds
Users of older Shrine versions can apply the following monkey-patch after loading the derivation_endpoint plugin:
class Shrine
class UrlSigner
def verify_signature(string, signature)
if signature.nil?
fail InvalidSignature, "missing \"signature\" param"
elsif !Rack::Utils.secure_compare(signature, generate_signature(string))
fail InvalidSignature, "provided signature does not match the calculated signature"
end
end
end
end
References
You can read more about timing attacks here.
References
- WEB https://github.com/shrinerb/shrine/security/advisories/GHSA-5jjv-x4fq-qjwp
- ADVISORY https://nvd.nist.gov/vuln/detail/CVE-2020-15237
- WEB https://github.com/shrinerb/shrine/commit/1b27090ce31543bf39f186c20ea47c8250fca2f0
- WEB https://github.com/rubysec/ruby-advisory-db/blob/master/gems/shrine/CVE-2020-15237.yml
- PACKAGE https://github.com/shrinerb/shrine
Ready to move
Start Securing
Free, no credit card | First findings in minutes