Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade dompurify from 3.0.5 to 3.2.2 #27

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

X-oss-byte
Copy link
Owner

@X-oss-byte X-oss-byte commented Dec 22, 2024

snyk-top-banner

Snyk has created this PR to upgrade dompurify from 3.0.5 to 3.2.2.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 17 versions ahead of your current version.

  • The recommended version was released 23 days ago.

Issues fixed by the recommended upgrade:

Issue Score Exploit Maturity
high severity Prototype Pollution
SNYK-JS-DOMPURIFY-7984421
586 No Known Exploit
medium severity Template Injection
SNYK-JS-DOMPURIFY-6474511
586 Proof of Concept
medium severity Cross-site Scripting (XSS)
SNYK-JS-DOMPURIFY-8184974
586 Proof of Concept
Release notes
Package name: dompurify
  • 3.2.2 - 2024-11-29
    • Fixed a possible bypass in case a rather specific config for custom elements is set, thanks @ Yaniv-git
    • Fixed several minor issues with the type definitions, thanks again @ reduckted
    • Fixed a minor issue with the types reference for trusted types, thanks @ reduckted
    • Fixed a minor problem with the template detection regex on some systems, thanks @ svdb99
  • 3.2.1 - 2024-11-20
  • 3.2.0 - 2024-11-11
  • 3.1.7 - 2024-09-26
    • Fixed an issue with comment detection and possible bypasses with specific config settings, thanks @ masatokinugawa
    • Fixed several smaller typos in documentation and test & build files, thanks @ christianhg
    • Added better support for Angular compiler, thanks @ jeroen1602
    • Added several new attributes to HTML and SVG allow-list, thanks @ Gigabyte5671 and @ Rotzbua
    • Removed the foreignObject element from the list of HTML entry-points, thanks @ masatokinugawa
    • Bumped several dependencies to be more up to date
  • 3.1.6 - 2024-07-05
    • Fixed an issue with the execution logic of attribute hooks to prevent bypasses, thanks @ kevin-mizu
    • Fixed an issue with element removal leading to uncaught errors through DOM Clobbering, thanks @ realansgar
    • Fixed a minor problem with the bower file pointing to the wrong dist path
    • Fixed several minor typos in docs, comments and comment blocks, thanks @ Rotzbua
    • Updated several development dependencies
  • 3.1.5 - 2024-05-31
    • Fixed a minor issue with the dist paths in bower.js, thanks @ HakumenNC
    • Fixed a minor issue with sanitizing HTML coming from copy&paste Word content, thanks @ kakao-bishop-cho
  • 3.1.4 - 2024-05-20
  • 3.1.3 - 2024-05-11
  • 3.1.2 - 2024-04-30
  • 3.1.1 - 2024-04-26
  • 3.1.0 - 2024-04-07
  • 3.0.11 - 2024-03-21
  • 3.0.10 - 2024-03-19
  • 3.0.9 - 2024-02-20
  • 3.0.8 - 2024-01-05
  • 3.0.7 - 2024-01-04
  • 3.0.6 - 2023-09-28
  • 3.0.5 - 2023-07-11
from dompurify GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.
  • Max score is 1000. Note that the real score may have changed since the PR was raised.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Summary by Sourcery

Upgrade dompurify from 3.0.5 to 3.2.2.

Bug Fixes:

  • Fix prototype pollution vulnerability (SNYK-JS-DOMPURIFY-7984421).
  • Fix template injection vulnerability (SNYK-JS-DOMPURIFY-6474511).
  • Fix cross-site scripting (XSS) vulnerability (SNYK-JS-DOMPURIFY-8184974).

Snyk has created this PR to upgrade dompurify from 3.0.5 to 3.2.2.

See this package in npm:
dompurify

See this project in Snyk:
https://app.snyk.io/org/sammytezzy/project/54d742ef-f52e-4145-a5b1-9d7e5208377f?utm_source=github&utm_medium=referral&page=upgrade-pr
Copy link

stackblitz bot commented Dec 22, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

sourcery-ai bot commented Dec 22, 2024

Reviewer's Guide by Sourcery

This pull request upgrades the dompurify npm package from version 3.0.5 to 3.2.2 in the packages/mermaid/package.json file. This upgrade fixes three security vulnerabilities:\n1. Prototype Pollution (High Severity)\n2. Template Injection (Medium Severity)\n3. Cross-site Scripting (XSS) (Medium Severity)\nThe upgrade also includes several other fixes and improvements, such as enhanced type declarations, improved handling of hooks, and various bug fixes related to bypasses and other minor issues.

Sequence diagram showing DOMPurify sanitization process with security fixes

sequenceDiagram
    participant Client
    participant DOMPurify
    participant DOM

    Client->>DOMPurify: sanitize(untrustedHTML)
    Note over DOMPurify: v3.2.2 Security Improvements:
    Note over DOMPurify: - Prototype Pollution Fix
    Note over DOMPurify: - Template Injection Protection
    Note over DOMPurify: - XSS Prevention Enhancement
    DOMPurify->>DOM: Create Safe DOM
    DOM-->>DOMPurify: Return Sanitized DOM
    DOMPurify-->>Client: Return Clean HTML
Loading

Class diagram showing DOMPurify package version upgrade

classDiagram
    class DOMPurify {
        <<package>>
        -version: string
        +sanitize(dirty: string): string
        +addHook()
        +removeHook()
        +clearConfig()
    }

    note for DOMPurify "Upgraded from v3.0.5 to v3.2.2
    - Fixed Prototype Pollution
    - Enhanced Template Security
    - Improved XSS Protection"
Loading

File-Level Changes

Change Details Files
Upgrade dompurify from 3.0.5 to 3.2.2
  • Updated the dompurify dependency version from 3.0.5 to 3.2.2 in the package.json file.
packages/mermaid/package.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. Here's why:

  • It seems to have been created by a bot ('[Snyk]' found in title). We assume it knows what it's doing!
  • We don't review packaging changes - Let us know if you'd like us to change this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants