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

Update dependency sequelize to v4.44.4 [SECURITY] #142

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 28, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
sequelize (source) 4.43.0 -> 4.44.4 age adoption passing confidence

GitHub Vulnerability Alerts

GHSA-fw4p-36j9-rrj3

Versions of sequelize prior to 4.44.4 are vulnerable to Denial of Service (DoS). The SQLite dialect fails to catch a TypeError exception for the results variable. The results value may be undefined and trigger the error on a .map call. This may allow attackers to submit malicious input that forces the exception and crashes the Node process.

The following proof-of-concept crashes the Node process:

const Sequelize = require('sequelize');

const sequelize = new Sequelize({
	dialect: 'sqlite',
	storage: 'database.sqlite'
});

const TypeError = sequelize.define('TypeError', {
	name: Sequelize.STRING,
});

TypeError.sync({force: true}).then(() => {
	return TypeError.create({name: "SELECT tbl_name FROM sqlite_master"});
});

Recommendation

Upgrade to version 4.44.4 or later.


Release Notes

sequelize/sequelize (sequelize)

v4.44.4

Compare Source

Bug Fixes

v4.44.3

Compare Source

Security

This release fixes two security issues for MySQL, both affecting same component.

https://snyk.io/vuln/SNYK-JS-SEQUELIZE-450221

v4.44.2

Compare Source

Bug Fixes
  • use files and remove .npmignore (6674a3c)

v4.44.1

Compare Source

Bug Fixes

v4.44.0

Compare Source

Bug Fixes
Features
  • postgres: enable standard conforming strings when required (#​10746) (c9d3a97)

v4.43.2

Compare Source

Bug Fixes

v4.43.1

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from ecacb06 to f96fd47 Compare April 23, 2024 22:47
@renovate renovate bot changed the title Update dependency sequelize to v6 [SECURITY] Update dependency sequelize to v4.44.3 [SECURITY] Apr 23, 2024
@renovate renovate bot changed the title Update dependency sequelize to v4.44.3 [SECURITY] Update dependency sequelize to v4.44.3 [SECURITY] - autoclosed Aug 2, 2024
@renovate renovate bot closed this Aug 2, 2024
@renovate renovate bot deleted the renovate/npm-sequelize-vulnerability branch August 2, 2024 02:10
@renovate renovate bot restored the renovate/npm-sequelize-vulnerability branch August 6, 2024 07:30
@renovate renovate bot changed the title Update dependency sequelize to v4.44.3 [SECURITY] - autoclosed Update dependency sequelize to v4.44.3 [SECURITY] Aug 6, 2024
@renovate renovate bot reopened this Aug 6, 2024
@renovate renovate bot force-pushed the renovate/npm-sequelize-vulnerability branch from f96fd47 to 20f2adb Compare August 6, 2024 07:32
@renovate renovate bot changed the title Update dependency sequelize to v4.44.3 [SECURITY] Update dependency sequelize to v4.44.4 [SECURITY] Aug 6, 2024
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.

0 participants