ghsa-f8cm-364f-q9qh
Vulnerability from github
Published
2020-10-20 20:03
Modified
2021-11-19 13:51
Severity ?
VLAI Severity ?
Summary
Ensure that doorkeeper_token is valid when authenticating requests in API v2 calls
Details
Impact
The perpetrator who previously obtained an old expired user token could use it to access Storefront API v2 endpoints.
Patches
Please upgrade to 3.7.11, 4.0.4, or 4.1.11 depending on your used Spree version.
Workarounds
In your project directory create a decorator file app/controllers/spree/api/v2/base_controller_decotatror.rb
with contents:
```ruby module Spree module Api module V2 module BaseControllerDecorator private
def spree_current_user
return nil unless doorkeeper_token
return @spree_current_user if @spree_current_user
doorkeeper_authorize!
@spree_current_user ||= ::Spree.user_class.find_by(id: doorkeeper_token.resource_owner_id)
end
end
end end
Spree::Api::V2::BaseController.prepend(Spree::Api::V2::BaseControllerDecorator) ```
For more information
If you have any questions or comments about this advisory: * Email us at security@spreecommerce.org
{ "affected": [ { "package": { "ecosystem": "RubyGems", "name": "spree" }, "ranges": [ { "events": [ { "introduced": "0" }, { "fixed": "3.7.11" } ], "type": "ECOSYSTEM" } ] }, { "package": { "ecosystem": "RubyGems", "name": "spree" }, "ranges": [ { "events": [ { "introduced": "4.0.0" }, { "fixed": "4.0.4" } ], "type": "ECOSYSTEM" } ] }, { "package": { "ecosystem": "RubyGems", "name": "spree" }, "ranges": [ { "events": [ { "introduced": "4.1.0" }, { "fixed": "4.1.11" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2020-15269" ], "database_specific": { "cwe_ids": [ "CWE-287", "CWE-613" ], "github_reviewed": true, "github_reviewed_at": "2020-10-20T20:03:19Z", "nvd_published_at": "2020-10-20T21:15:00Z", "severity": "HIGH" }, "details": "### Impact\nThe perpetrator who previously obtained an old expired user token could use it to access Storefront API v2 endpoints. \n\n### Patches\nPlease upgrade to 3.7.11, 4.0.4, or 4.1.11 depending on your used Spree version. \n\n### Workarounds\nIn your project directory create a decorator file `app/controllers/spree/api/v2/base_controller_decotatror.rb` with contents:\n\n```ruby\nmodule Spree\n module Api\n module V2\n module BaseControllerDecorator\n private\n\n def spree_current_user\n return nil unless doorkeeper_token\n return @spree_current_user if @spree_current_user\n\n doorkeeper_authorize!\n\n @spree_current_user ||= ::Spree.user_class.find_by(id: doorkeeper_token.resource_owner_id)\n end\n end\n end\nend\n\nSpree::Api::V2::BaseController.prepend(Spree::Api::V2::BaseControllerDecorator)\n```\n\n### For more information\nIf you have any questions or comments about this advisory:\n* Email us at [security@spreecommerce.org](mailto:security@spreecommerce.org)", "id": "GHSA-f8cm-364f-q9qh", "modified": "2021-11-19T13:51:14Z", "published": "2020-10-20T20:03:52Z", "references": [ { "type": "WEB", "url": "https://github.com/spree/spree/security/advisories/GHSA-f8cm-364f-q9qh" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2020-15269" }, { "type": "WEB", "url": "https://github.com/spree/spree/commit/e43643abfe51f54bd9208dd02298b366e9b9a847" }, { "type": "WEB", "url": "https://github.com/rubysec/ruby-advisory-db/blob/master/gems/spree/CVE-2020-15269.yml" }, { "type": "PACKAGE", "url": "https://github.com/spree/spree" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N", "type": "CVSS_V3" } ], "summary": "Ensure that doorkeeper_token is valid when authenticating requests in API v2 calls" }
Loading…
Loading…
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.
Loading…