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

feat: sanitize content in SImageVector #370

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

Conversation

gtsp233
Copy link

@gtsp233 gtsp233 commented Dec 1, 2023

Fix for Cross-Site Scripting (XSS) Vulnerability

I've identified a Cross-Site Scripting (XSS) vulnerability in the @sugarlabs/mb4-components package.

Vulnerability Details:

  • Severity: High/Critical
  • Description: There's a risk of malicious script execution when the content is controlled by an adversory.

Steps to Reproduce:
In a React.js project:

import { SImageVector } from '@sugarlabs/mb4-components'

<SImageVector content={`<img src='' onError=alert(1)>`} />

Then the malicious code alert(1) will be executed.

Suggested Fix or Mitigation:
It's a best practice for a React.js components package to sanitize the HTML content before passing it to innerHTML.

I've already fixed and tested this issue, and have submitted a pull request with the necessary changes. Please review and merge my pull request at your earliest convenience to resolve this vulnerability. Thanks!

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.

None yet

1 participant