Search for packages
Package details: pkg:gem/rails-html-sanitizer@1.1.0
purl pkg:gem/rails-html-sanitizer@1.1.0
Next non-vulnerable version 1.6.1
Latest non-vulnerable version 1.6.1
Risk 4.0
Vulnerabilities affecting this package (10)
Vulnerability Summary Fixed by
VCID-2hrs-gupw-aaas
Aliases:
CVE-2022-23520
GHSA-rrfc-7g8p-99q8
GMS-2022-8301
Possible XSS vulnerability with certain configurations of rails-html-sanitizer
1.4.4
Affected by 5 other vulnerabilities.
VCID-adx2-9m5x-bqde
Aliases:
CVE-2024-53985
GHSA-w8gc-x259-rc7x
rails-html-sanitizer has XSS vulnerability with certain configurations ## Summary There is a possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer 1.6.0 when used with Rails >= 7.1.0 and Nokogiri < 1.15.7, or 1.16.x < 1.16.8. * Versions affected: 1.6.0 * Not affected: < 1.6.0 * Fixed versions: 1.6.1 Please note that the fix in v1.6.1 is to update the dependency on Nokogiri to 1.15.7 or >= 1.16.8. ## Impact A possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer may allow an attacker to inject content if HTML5 sanitization is enabled and the application developer has overridden the sanitizer's allowed tags in either of the following ways: * allow both "math" and "style" elements * or allow both "svg" and "style" elements Code is only impacted if Rails is configured to use HTML5 sanitization, please see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information on these configuration options. Code is only impacted if allowed tags are being overridden. Applications may be doing this in a few different ways: 1. using application configuration to configure Action View sanitizers' allowed tags: ```ruby # In config/application.rb config.action_view.sanitized_allowed_tags = ["math", "style"] # or config.action_view.sanitized_allowed_tags = ["svg", "style"] ``` see https://guides.rubyonrails.org/configuring.html#configuring-action-view 2. using a `:tags` option to the Action View helper `sanitize`: ``` <= sanitize @comment.body, tags: ["math", "style"] > <# or> <= sanitize @comment.body, tags: ["svg", "style"] > ``` see https://api.rubyonrails.org/classes/ActionView/Helpers/SanitizeHelper.html#method-i-sanitize 3. setting Rails::HTML5::SafeListSanitizer class attribute `allowed_tags`: ```ruby # class-level option Rails::HTML5::SafeListSanitizer.allowed_tags = ["math", "style"] # or Rails::HTML5::SafeListSanitizer.allowed_tags = ["svg", "style"] ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 4. using a `:tags` options to the Rails::HTML5::SafeListSanitizer instance method `sanitize`: ```ruby # instance-level option Rails::HTML5::SafeListSanitizer.new.sanitize(@article.body, tags: ["math", "style"]) # or Rails::HTML5::SafeListSanitizer.new.sanitize(@article.body, tags: ["svg", "style"]) ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 5. setting ActionText::ContentHelper module attribute `allowed_tags`: ```ruby ActionText::ContentHelper.allowed_tags = ["math", "style"] # or ActionText::ContentHelper.allowed_tags = ["svg", "style"] ``` All users overriding the allowed tags by any of the above mechanisms to include (("math" or "svg") and "style") should either upgrade or use one of the workarounds. ## Workarounds Any one of the following actions will work around this issue: - Remove "style" from the overridden allowed tags, - Or, remove "math" and "svg" from the overridden allowed tags, - Or, downgrade sanitization to HTML4 (see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information) - Or, independently upgrade Nokogiri to v1.15.7 or >= 1.16.8. ## References - [CWE - CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (4.9)](https://cwe.mitre.org/data/definitions/79.html) - Original report: https://hackerone.com/reports/2503220 ## Credit This vulnerability was responsibly reported by HackerOne user [@taise](https://hackerone.com/taise?type=user).
1.6.1
Affected by 0 other vulnerabilities.
VCID-bmrh-564t-aaak
Aliases:
CVE-2022-23517
GHSA-5x79-w82f-gw8w
GMS-2022-8298
Inefficient Regular Expression Complexity in rails-html-sanitizer
1.4.4
Affected by 5 other vulnerabilities.
VCID-d4rb-58yf-aaak
Aliases:
CVE-2022-23519
GHSA-9h9g-93gc-623h
GMS-2022-8299
Possible XSS vulnerability with certain configurations of rails-html-sanitizer
1.4.4
Affected by 5 other vulnerabilities.
VCID-eahk-h3gr-bfdb
Aliases:
CVE-2024-53987
GHSA-2x5m-9ch4-qgrr
rails-html-sanitizer: Possible XSS vulnerability with certain configurations of rails-html-sanitizer 1.6.0
1.6.1
Affected by 0 other vulnerabilities.
VCID-m88g-91ux-aaad
Aliases:
CVE-2022-32209
GHSA-pg8v-g4xq-hww9
Rails::Html::Sanitizer vulnerable to Cross-site Scripting
1.4.3
Affected by 9 other vulnerabilities.
VCID-pfqz-3pgs-qkbz
Aliases:
CVE-2024-53989
GHSA-rxv5-gxqc-xx8g
rails-html-sanitizer has XSS vulnerability with certain configurations ## Summary There is a possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer 1.6.0 when used with Rails >= 7.1.0. * Versions affected: 1.6.0 * Not affected: < 1.6.0 * Fixed versions: 1.6.1 ## Impact A possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer may allow an attacker to inject content if HTML5 sanitization is enabled and the application developer has overridden the sanitizer's allowed tags in the following way: - the "noscript" element is explicitly allowed Code is only impacted if Rails is configured to use HTML5 sanitization, please see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information on these configuration options. The default configuration is to disallow all of these elements. Code is only impacted if allowed tags are being overridden. Applications may be doing this in a few different ways: 1. using application configuration to configure Action View sanitizers' allowed tags: ```ruby # In config/application.rb config.action_view.sanitized_allowed_tags = ["noscript"] ``` see https://guides.rubyonrails.org/configuring.html#configuring-action-view 2. using a `:tags` option to the Action View helper `sanitize`: ``` <= sanitize @comment.body, tags: ["noscript"] > ``` see https://api.rubyonrails.org/classes/ActionView/Helpers/SanitizeHelper.html#method-i-sanitize 3. setting Rails::HTML5::SafeListSanitizer class attribute `allowed_tags`: ```ruby # class-level option Rails::HTML5::SafeListSanitizer.allowed_tags = ["noscript"] ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 4. using a `:tags` options to the Rails::HTML5::SafeListSanitizer instance method `sanitize`: ```ruby # instance-level option Rails::HTML5::SafeListSanitizer.new.sanitize(@article.body, tags: ["noscript"]) ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 5. setting ActionText::ContentHelper module attribute `allowed_tags`: ```ruby ActionText::ContentHelper.allowed_tags = ["noscript"] ``` All users overriding the allowed tags by any of the above mechanisms to include "noscript" should either upgrade or use one of the workarounds. ## Workarounds Any one of the following actions will work around this issue: - Remove "noscript" from the overridden allowed tags, - Or, downgrade sanitization to HTML4 (see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information). ## References - [CWE - CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (4.9)](https://cwe.mitre.org/data/definitions/79.html) - Original report: https://hackerone.com/reports/2509647 ## Credit This vulnerability was responsibly reported by HackerOne user [@taise](https://hackerone.com/taise?type=user).
1.6.1
Affected by 0 other vulnerabilities.
VCID-sq46-54yu-kbfk
Aliases:
CVE-2024-53988
GHSA-cfjx-w229-hgx5
rails-html-sanitizer has XSS vulnerability with certain configurations ## Summary There is a possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer 1.6.0 when used with Rails >= 7.1.0. * Versions affected: 1.6.0 * Not affected: < 1.6.0 * Fixed versions: 1.6.1 ## Impact A possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer may allow an attacker to inject content if HTML5 sanitization is enabled and the application developer has overridden the sanitizer's allowed tags in the following way: - the "math", "mtext", "table", and "style" elements are allowed - and either "mglyph" or "malignmark" are allowed Code is only impacted if Rails is configured to use HTML5 sanitization, please see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information on these configuration options. The default configuration is to disallow all of these elements except for "table". Code is only impacted if allowed tags are being overridden. Applications may be doing this in a few different ways: 1. using application configuration to configure Action View sanitizers' allowed tags: ```ruby # In config/application.rb config.action_view.sanitized_allowed_tags = ["math", "mtext", "table", "style", "mglyph"] # or config.action_view.sanitized_allowed_tags = ["math", "mtext", "table", "style", "malignmark"] ``` see https://guides.rubyonrails.org/configuring.html#configuring-action-view 2. using a `:tags` option to the Action View helper `sanitize`: ``` <= sanitize @comment.body, tags: ["math", "mtext", "table", "style", "mglyph"] > <# or > <= sanitize @comment.body, tags: ["math", "mtext", "table", "style", "malignmark"] > ``` see https://api.rubyonrails.org/classes/ActionView/Helpers/SanitizeHelper.html#method-i-sanitize 3. setting Rails::HTML5::SafeListSanitizer class attribute `allowed_tags`: ```ruby # class-level option Rails::HTML5::SafeListSanitizer.allowed_tags = ["math", "mtext", "table", "style", "mglyph"] # or Rails::HTML5::SafeListSanitizer.allowed_tags = ["math", "mtext", "table", "style", "malignmark"] ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 4. using a `:tags` options to the Rails::HTML5::SafeListSanitizer instance method `sanitize`: ```ruby # instance-level option Rails::HTML5::SafeListSanitizer.new.sanitize(@article.body, tags: ["math", "mtext", "table", "style", "mglyph"]) # or Rails::HTML5::SafeListSanitizer.new.sanitize(@article.body, tags: ["math", "mtext", "table", "style", "malignmark"]) ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 5. setting ActionText::ContentHelper module attribute `allowed_tags`: ```ruby ActionText::ContentHelper.allowed_tags = ["math", "mtext", "table", "style", "mglyph"] # or ActionText::ContentHelper.allowed_tags = ["math", "mtext", "table", "style", "malignmark"] ``` All users overriding the allowed tags by any of the above mechanisms to include ("math" and "mtext" and "table" and "style" and ("mglyph" or "malignmark")) should either upgrade or use one of the workarounds. ## Workarounds Any one of the following actions will work around this issue: - Remove "mglyph" and "malignmark" from the overridden allowed tags, - Or, downgrade sanitization to HTML4 (see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information). ## References - [CWE - CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (4.9)](https://cwe.mitre.org/data/definitions/79.html) - Original report: https://hackerone.com/reports/2519936 ## Credit This vulnerability was responsibly reported by So Sakaguchi (mokusou).
1.6.1
Affected by 0 other vulnerabilities.
VCID-t1c5-yxz4-e7ae
Aliases:
CVE-2024-53986
GHSA-638j-pmjw-jq48
rails-html-sanitizer has XSS vulnerability with certain configurations ## Summary There is a possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer 1.6.0 when used with Rails >= 7.1.0. * Versions affected: 1.6.0 * Not affected: < 1.6.0 * Fixed versions: 1.6.1 ## Impact A possible XSS vulnerability with certain configurations of Rails::HTML::Sanitizer may allow an attacker to inject content if HTML5 sanitization is enabled and the application developer has overridden the sanitizer's allowed tags in the following way: - the "math" and "style" elements are both explicitly allowed Code is only impacted if Rails is configured to use HTML5 sanitization, please see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information on these configuration options. The default configuration is to disallow these elements. Code is only impacted if allowed tags are being overridden. Applications may be doing this in a few different ways: 1. using application configuration to configure Action View sanitizers' allowed tags: ```ruby # In config/application.rb config.action_view.sanitized_allowed_tags = ["math", "style"] ``` see https://guides.rubyonrails.org/configuring.html#configuring-action-view 2. using a `:tags` option to the Action View helper `sanitize`: ``` <= sanitize @comment.body, tags: ["math", "style"]> ``` see https://api.rubyonrails.org/classes/ActionView/Helpers/SanitizeHelper.html#method-i-sanitize 3. setting Rails::HTML5::SafeListSanitizer class attribute `allowed_tags`: ```ruby # class-level option Rails::HTML5::SafeListSanitizer.allowed_tags = ["math", "style"] ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 4. using a `:tags` options to the Rails::HTML5::SafeListSanitizer instance method `sanitize`: ```ruby # instance-level option Rails::HTML5::SafeListSanitizer.new.sanitize(@article.body, tags: ["math", "style"]) ``` (note that this class may also be referenced as `Rails::Html::SafeListSanitizer`) 5. setting ActionText::ContentHelper module attribute `allowed_tags`: ```ruby ActionText::ContentHelper.allowed_tags = ["math", "style"] ``` All users overriding the allowed tags by any of the above mechanisms to include both "math" and "style" should either upgrade or use one of the workarounds. ## Workarounds Any one of the following actions will work around this issue: - Remove "math" or "style" from the overridden allowed tags, - Or, downgrade sanitization to HTML4 (see documentation for [`config.action_view.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-view-sanitizer-vendor) and [`config.action_text.sanitizer_vendor`](https://guides.rubyonrails.org/configuring.html#config-action-text-sanitizer-vendor) for more information). ## References - [CWE - CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') (4.9)](https://cwe.mitre.org/data/definitions/79.html) - Original report: https://hackerone.com/reports/2519941 ## Credit This vulnerability was responsibly reported by So Sakaguchi (mokusou).
1.6.1
Affected by 0 other vulnerabilities.
VCID-x27s-vw2x-aaan
Aliases:
CVE-2022-23518
GHSA-mcvf-2q2m-x72m
GMS-2022-8300
Improper neutralization of data URIs may allow XSS in rails-html-sanitizer
1.4.4
Affected by 5 other vulnerabilities.
Vulnerabilities fixed by this package (0)
Vulnerability Summary Aliases
This package is not known to fix vulnerabilities.

Date Actor Action Vulnerability Source VulnerableCode Version
2025-06-20T16:17:18.887139+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 36.1.3
2025-06-20T16:17:15.082997+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 36.1.3
2025-06-20T16:17:03.067611+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 36.1.3
2025-06-20T16:17:01.743699+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 36.1.3
2025-06-20T16:16:58.934276+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 36.1.3
2025-06-20T16:16:58.341686+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 36.1.3
2025-06-20T16:16:50.447253+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 36.1.3
2025-06-20T16:16:49.569308+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 36.1.3
2025-06-20T15:58:37.473663+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 36.1.3
2025-06-20T15:58:36.999993+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 36.1.3
2025-06-20T13:44:20.364222+00:00 Ruby Importer Affected by VCID-t1c5-yxz4-e7ae https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53986.yml 36.1.3
2025-06-20T13:44:20.310889+00:00 Ruby Importer Affected by VCID-sq46-54yu-kbfk https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53988.yml 36.1.3
2025-06-20T13:44:20.259885+00:00 Ruby Importer Affected by VCID-eahk-h3gr-bfdb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53987.yml 36.1.3
2025-06-20T13:44:20.207775+00:00 Ruby Importer Affected by VCID-adx2-9m5x-bqde https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53985.yml 36.1.3
2025-06-20T13:44:20.154294+00:00 Ruby Importer Affected by VCID-pfqz-3pgs-qkbz https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53989.yml 36.1.3
2025-06-20T13:42:27.059628+00:00 Ruby Importer Affected by VCID-2hrs-gupw-aaas https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23520.yml 36.1.3
2025-06-20T13:42:27.000668+00:00 Ruby Importer Affected by VCID-x27s-vw2x-aaan https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23518.yml 36.1.3
2025-06-20T13:42:26.691520+00:00 Ruby Importer Affected by VCID-d4rb-58yf-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23519.yml 36.1.3
2025-06-20T13:42:26.652136+00:00 Ruby Importer Affected by VCID-bmrh-564t-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23517.yml 36.1.3
2025-06-03T22:56:58.775481+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 36.1.0
2025-06-03T22:56:55.033634+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 36.1.0
2025-06-03T22:56:43.726367+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 36.1.0
2025-06-03T22:56:42.475909+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 36.1.0
2025-06-03T22:56:39.974269+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 36.1.0
2025-06-03T22:56:39.440680+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 36.1.0
2025-06-03T22:56:32.142162+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 36.1.0
2025-06-03T22:56:31.467260+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 36.1.0
2025-06-03T22:39:13.273805+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 36.1.0
2025-06-03T22:39:12.780312+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 36.1.0
2025-06-03T20:27:48.629998+00:00 Ruby Importer Affected by VCID-t1c5-yxz4-e7ae https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53986.yml 36.1.0
2025-06-03T20:27:48.582575+00:00 Ruby Importer Affected by VCID-sq46-54yu-kbfk https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53988.yml 36.1.0
2025-06-03T20:27:48.538980+00:00 Ruby Importer Affected by VCID-eahk-h3gr-bfdb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53987.yml 36.1.0
2025-06-03T20:27:48.494241+00:00 Ruby Importer Affected by VCID-adx2-9m5x-bqde https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53985.yml 36.1.0
2025-06-03T20:27:48.441394+00:00 Ruby Importer Affected by VCID-pfqz-3pgs-qkbz https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53989.yml 36.1.0
2025-06-03T20:26:08.027650+00:00 Ruby Importer Affected by VCID-2hrs-gupw-aaas https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23520.yml 36.1.0
2025-06-03T20:26:07.980286+00:00 Ruby Importer Affected by VCID-x27s-vw2x-aaan https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23518.yml 36.1.0
2025-06-03T20:26:07.704238+00:00 Ruby Importer Affected by VCID-d4rb-58yf-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23519.yml 36.1.0
2025-06-03T20:26:07.664942+00:00 Ruby Importer Affected by VCID-bmrh-564t-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23517.yml 36.1.0
2025-06-02T22:53:13.887675+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 36.1.2
2025-06-02T22:53:10.104207+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 36.1.2
2025-06-02T22:52:58.379638+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 36.1.2
2025-06-02T22:52:56.976273+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 36.1.2
2025-06-02T22:52:54.372371+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 36.1.2
2025-06-02T22:52:53.705724+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 36.1.2
2025-06-02T22:52:45.899578+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 36.1.2
2025-06-02T22:52:45.120000+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 36.1.2
2025-06-02T22:27:51.597348+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 36.1.2
2025-06-02T22:27:51.298169+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 36.1.2
2025-06-02T20:16:47.053271+00:00 Ruby Importer Affected by VCID-t1c5-yxz4-e7ae https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53986.yml 36.1.2
2025-06-02T20:16:47.000115+00:00 Ruby Importer Affected by VCID-sq46-54yu-kbfk https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53988.yml 36.1.2
2025-06-02T20:16:46.950730+00:00 Ruby Importer Affected by VCID-eahk-h3gr-bfdb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53987.yml 36.1.2
2025-06-02T20:16:46.899912+00:00 Ruby Importer Affected by VCID-adx2-9m5x-bqde https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53985.yml 36.1.2
2025-06-02T20:16:46.844977+00:00 Ruby Importer Affected by VCID-pfqz-3pgs-qkbz https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53989.yml 36.1.2
2025-06-02T20:14:40.248098+00:00 Ruby Importer Affected by VCID-2hrs-gupw-aaas https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23520.yml 36.1.2
2025-06-02T20:14:40.173495+00:00 Ruby Importer Affected by VCID-x27s-vw2x-aaan https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23518.yml 36.1.2
2025-06-02T20:14:39.734153+00:00 Ruby Importer Affected by VCID-d4rb-58yf-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23519.yml 36.1.2
2025-06-02T20:14:39.675850+00:00 Ruby Importer Affected by VCID-bmrh-564t-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23517.yml 36.1.2
2025-04-15T18:44:42.985400+00:00 Ruby Importer Affected by VCID-t1c5-yxz4-e7ae https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53986.yml 36.0.0
2025-04-15T18:44:42.796041+00:00 Ruby Importer Affected by VCID-sq46-54yu-kbfk https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53988.yml 36.0.0
2025-04-15T18:44:42.563952+00:00 Ruby Importer Affected by VCID-eahk-h3gr-bfdb https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53987.yml 36.0.0
2025-04-15T18:44:42.408242+00:00 Ruby Importer Affected by VCID-adx2-9m5x-bqde https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53985.yml 36.0.0
2025-04-15T18:44:42.243150+00:00 Ruby Importer Affected by VCID-pfqz-3pgs-qkbz https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2024-53989.yml 36.0.0
2025-04-15T18:40:03.573767+00:00 Ruby Importer Affected by VCID-2hrs-gupw-aaas https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23520.yml 36.0.0
2025-04-15T18:40:03.430586+00:00 Ruby Importer Affected by VCID-x27s-vw2x-aaan https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23518.yml 36.0.0
2025-04-15T18:40:02.632872+00:00 Ruby Importer Affected by VCID-d4rb-58yf-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23519.yml 36.0.0
2025-04-15T18:40:02.527834+00:00 Ruby Importer Affected by VCID-bmrh-564t-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23517.yml 36.0.0
2025-04-03T20:42:34.648775+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 36.0.0
2025-04-03T20:42:27.175278+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 36.0.0
2025-04-03T20:42:03.786065+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 36.0.0
2025-04-03T20:42:00.071391+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 36.0.0
2025-04-03T20:41:55.344433+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 36.0.0
2025-04-03T20:41:53.945795+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 36.0.0
2025-04-03T20:41:37.345821+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 36.0.0
2025-04-03T20:41:35.818112+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 36.0.0
2025-04-03T20:06:54.591189+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 36.0.0
2025-04-03T20:06:54.124218+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 36.0.0
2025-02-18T07:57:20.596674+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 35.1.0
2025-02-18T07:57:20.376929+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 35.1.0
2025-02-18T07:57:19.968141+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 35.1.0
2025-02-18T07:57:19.651383+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 35.1.0
2025-02-18T07:04:28.584216+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 35.1.0
2025-02-18T07:04:28.474215+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 35.1.0
2025-02-18T02:36:21.817937+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 35.1.0
2025-02-18T02:36:21.711566+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 35.1.0
2025-02-18T02:36:21.035378+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 35.1.0
2025-02-18T02:36:20.287805+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 35.1.0
2024-11-21T03:17:59.413819+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 35.0.0
2024-11-21T03:17:59.293808+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 35.0.0
2024-11-21T03:17:59.171277+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 35.0.0
2024-11-21T03:17:59.055598+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 35.0.0
2024-11-21T02:51:30.367824+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 35.0.0
2024-11-19T03:07:36.223756+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 34.3.2
2024-11-19T03:07:36.101412+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 34.3.2
2024-11-19T03:07:35.975349+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 34.3.2
2024-11-19T03:07:35.864769+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 34.3.2
2024-11-19T02:41:29.592554+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 34.3.2
2024-10-15T17:37:05.501456+00:00 Ruby Importer Affected by VCID-m88g-91ux-aaad https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-32209.yml 34.0.2
2024-10-15T17:36:10.464608+00:00 Ruby Importer Affected by VCID-2hrs-gupw-aaas https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23520.yml 34.0.2
2024-10-15T17:36:10.359313+00:00 Ruby Importer Affected by VCID-d4rb-58yf-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23519.yml 34.0.2
2024-10-15T17:36:10.206943+00:00 Ruby Importer Affected by VCID-x27s-vw2x-aaan https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23518.yml 34.0.2
2024-10-15T17:36:10.100753+00:00 Ruby Importer Affected by VCID-bmrh-564t-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23517.yml 34.0.2
2024-10-08T03:44:08.407403+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 34.0.2
2024-10-08T03:44:08.291307+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 34.0.2
2024-10-08T03:44:08.172073+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 34.0.2
2024-10-08T03:44:08.059845+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 34.0.2
2024-10-08T03:09:50.411569+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 34.0.2
2024-10-07T20:37:13.729798+00:00 GHSA Importer Affected by VCID-m88g-91ux-aaad https://github.com/advisories/GHSA-pg8v-g4xq-hww9 34.0.2
2024-10-07T20:08:43.128463+00:00 GHSA Importer Affected by VCID-2hrs-gupw-aaas https://github.com/advisories/GHSA-rrfc-7g8p-99q8 34.0.2
2024-10-07T20:08:43.008967+00:00 GHSA Importer Affected by VCID-d4rb-58yf-aaak https://github.com/advisories/GHSA-9h9g-93gc-623h 34.0.2
2024-10-07T20:08:42.887393+00:00 GHSA Importer Affected by VCID-x27s-vw2x-aaan https://github.com/advisories/GHSA-mcvf-2q2m-x72m 34.0.2
2024-10-07T20:08:42.770511+00:00 GHSA Importer Affected by VCID-bmrh-564t-aaak https://github.com/advisories/GHSA-5x79-w82f-gw8w 34.0.2
2024-09-23T03:31:22.043217+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 34.0.1
2024-09-23T03:31:21.928868+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 34.0.1
2024-09-23T03:31:21.814312+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 34.0.1
2024-09-23T03:31:21.709121+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 34.0.1
2024-09-23T03:05:53.801968+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 34.0.1
2024-09-22T21:16:43.121938+00:00 GHSA Importer Affected by VCID-m88g-91ux-aaad https://github.com/advisories/GHSA-pg8v-g4xq-hww9 34.0.1
2024-09-22T20:52:31.343309+00:00 GHSA Importer Affected by VCID-2hrs-gupw-aaas https://github.com/advisories/GHSA-rrfc-7g8p-99q8 34.0.1
2024-09-22T20:52:31.224305+00:00 GHSA Importer Affected by VCID-d4rb-58yf-aaak https://github.com/advisories/GHSA-9h9g-93gc-623h 34.0.1
2024-09-22T20:52:31.101803+00:00 GHSA Importer Affected by VCID-x27s-vw2x-aaan https://github.com/advisories/GHSA-mcvf-2q2m-x72m 34.0.1
2024-09-22T20:52:30.988130+00:00 GHSA Importer Affected by VCID-bmrh-564t-aaak https://github.com/advisories/GHSA-5x79-w82f-gw8w 34.0.1
2024-09-21T16:02:08.559352+00:00 Ruby Importer Affected by VCID-m88g-91ux-aaad https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-32209.yml 34.0.1
2024-09-21T16:01:12.775821+00:00 Ruby Importer Affected by VCID-2hrs-gupw-aaas https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23520.yml 34.0.1
2024-09-21T16:01:12.674320+00:00 Ruby Importer Affected by VCID-d4rb-58yf-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23519.yml 34.0.1
2024-09-21T16:01:12.526366+00:00 Ruby Importer Affected by VCID-x27s-vw2x-aaan https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23518.yml 34.0.1
2024-09-21T16:01:12.422411+00:00 Ruby Importer Affected by VCID-bmrh-564t-aaak https://github.com/rubysec/ruby-advisory-db/blob/master/gems/rails-html-sanitizer/CVE-2022-23517.yml 34.0.1
2024-04-24T06:17:35.383298+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 34.0.0rc4
2024-04-24T06:17:35.235080+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 34.0.0rc4
2024-04-24T06:17:34.808035+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 34.0.0rc4
2024-04-24T06:17:34.521137+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 34.0.0rc4
2024-04-24T05:43:14.951181+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 34.0.0rc4
2024-04-24T05:43:14.808848+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 34.0.0rc4
2024-04-24T03:19:03.052741+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 34.0.0rc4
2024-04-24T03:19:02.912680+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 34.0.0rc4
2024-04-24T03:19:02.331359+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 34.0.0rc4
2024-04-24T03:19:02.198330+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 34.0.0rc4
2024-04-23T23:11:57.944185+00:00 GHSA Importer Affected by VCID-m88g-91ux-aaad None 34.0.0rc4
2024-04-23T23:11:57.796161+00:00 GHSA Importer Affected by VCID-m88g-91ux-aaad https://github.com/advisories/GHSA-pg8v-g4xq-hww9 34.0.0rc4
2024-04-23T22:27:20.518210+00:00 GHSA Importer Affected by VCID-2hrs-gupw-aaas https://github.com/advisories/GHSA-rrfc-7g8p-99q8 34.0.0rc4
2024-04-23T22:27:20.238005+00:00 GHSA Importer Affected by VCID-2hrs-gupw-aaas None 34.0.0rc4
2024-04-23T22:27:20.089328+00:00 GHSA Importer Affected by VCID-d4rb-58yf-aaak https://github.com/advisories/GHSA-9h9g-93gc-623h 34.0.0rc4
2024-04-23T22:27:19.675804+00:00 GHSA Importer Affected by VCID-d4rb-58yf-aaak None 34.0.0rc4
2024-04-23T22:27:19.397552+00:00 GHSA Importer Affected by VCID-x27s-vw2x-aaan https://github.com/advisories/GHSA-mcvf-2q2m-x72m 34.0.0rc4
2024-04-23T22:27:19.134116+00:00 GHSA Importer Affected by VCID-x27s-vw2x-aaan None 34.0.0rc4
2024-04-23T22:27:18.851350+00:00 GHSA Importer Affected by VCID-bmrh-564t-aaak https://github.com/advisories/GHSA-5x79-w82f-gw8w 34.0.0rc4
2024-04-23T22:27:18.382527+00:00 GHSA Importer Affected by VCID-bmrh-564t-aaak None 34.0.0rc4
2024-01-10T08:48:34.667418+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 34.0.0rc2
2024-01-10T08:48:34.521492+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 34.0.0rc2
2024-01-10T08:48:34.100010+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 34.0.0rc2
2024-01-10T08:48:33.826222+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 34.0.0rc2
2024-01-10T08:14:55.247249+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 34.0.0rc2
2024-01-10T08:14:55.108906+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 34.0.0rc2
2024-01-10T05:59:00.111396+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 34.0.0rc2
2024-01-10T05:58:59.967892+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 34.0.0rc2
2024-01-10T05:58:59.395295+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 34.0.0rc2
2024-01-10T05:58:59.066174+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 34.0.0rc2
2024-01-10T01:07:56.185441+00:00 GHSA Importer Affected by VCID-m88g-91ux-aaad https://github.com/advisories/GHSA-pg8v-g4xq-hww9 34.0.0rc2
2024-01-10T01:07:55.897385+00:00 GHSA Importer Affected by VCID-m88g-91ux-aaad None 34.0.0rc2
2024-01-10T00:24:45.660937+00:00 GHSA Importer Affected by VCID-2hrs-gupw-aaas https://github.com/advisories/GHSA-rrfc-7g8p-99q8 34.0.0rc2
2024-01-10T00:24:45.362229+00:00 GHSA Importer Affected by VCID-2hrs-gupw-aaas None 34.0.0rc2
2024-01-10T00:24:45.199366+00:00 GHSA Importer Affected by VCID-d4rb-58yf-aaak https://github.com/advisories/GHSA-9h9g-93gc-623h 34.0.0rc2
2024-01-10T00:24:44.763357+00:00 GHSA Importer Affected by VCID-d4rb-58yf-aaak None 34.0.0rc2
2024-01-10T00:24:44.460168+00:00 GHSA Importer Affected by VCID-x27s-vw2x-aaan https://github.com/advisories/GHSA-mcvf-2q2m-x72m 34.0.0rc2
2024-01-10T00:24:44.179129+00:00 GHSA Importer Affected by VCID-x27s-vw2x-aaan None 34.0.0rc2
2024-01-10T00:24:43.885770+00:00 GHSA Importer Affected by VCID-bmrh-564t-aaak https://github.com/advisories/GHSA-5x79-w82f-gw8w 34.0.0rc2
2024-01-10T00:24:43.581742+00:00 GHSA Importer Affected by VCID-bmrh-564t-aaak None 34.0.0rc2
2024-01-04T01:33:54.972281+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23520.yml 34.0.0rc1
2024-01-04T01:33:54.826120+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23519.yml 34.0.0rc1
2024-01-04T01:33:54.414720+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23518.yml 34.0.0rc1
2024-01-04T01:33:54.138252+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-23517.yml 34.0.0rc1
2024-01-04T01:00:15.143837+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad https://gitlab.com/gitlab-org/advisories-community/-/blob/main/gem/rails-html-sanitizer/CVE-2022-32209.yml 34.0.0rc1
2024-01-04T01:00:15.005950+00:00 GitLab Importer Affected by VCID-m88g-91ux-aaad None 34.0.0rc1
2024-01-03T22:46:49.803804+00:00 GitLab Importer Affected by VCID-2hrs-gupw-aaas None 34.0.0rc1
2024-01-03T22:46:49.666179+00:00 GitLab Importer Affected by VCID-d4rb-58yf-aaak None 34.0.0rc1
2024-01-03T22:46:49.076808+00:00 GitLab Importer Affected by VCID-x27s-vw2x-aaan None 34.0.0rc1
2024-01-03T22:46:48.942967+00:00 GitLab Importer Affected by VCID-bmrh-564t-aaak None 34.0.0rc1