Skip to content

Update dependency mongoose to v6 [SECURITY]#72

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-mongoose-vulnerability
Open

Update dependency mongoose to v6 [SECURITY]#72
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-mongoose-vulnerability

Conversation

@renovate

@renovate renovate Bot commented Dec 17, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
mongoose (source) ^5.13.3^6.13.9 age confidence

Mongoose search injection vulnerability

CVE-2025-23061 / GHSA-vg7j-7cwx-8wgw

More information

Details

Mongoose versions prior to 8.9.5, 7.8.4, and 6.13.6 are vulnerable to improper use of the $where operator. This vulnerability arises from the ability of the $where clause to execute arbitrary JavaScript code in MongoDB queries, potentially leading to code injection attacks and unauthorized access or manipulation of database data.

NOTE: this issue exists because of an incomplete fix for CVE-2024-53900.

Severity

  • CVSS Score: 9.0 / 10 (Critical)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Mongoose's Improper Sanitization of $nor in sanitizeFilter May Allow NoSQL Injection

CVE-2026-42334 / GHSA-wpg9-53fq-2r8h

More information

Details

Impact

This vulnerability allows bypassing Mongoose’s sanitizeFilter query sanitization mechanism via the $nor operator.

When sanitizeFilter is enabled, Mongoose wraps query operators in $eq to neutralize them. However, prior to the fix, $nor was not included in the set of logical operators that are recursively sanitized. Because $nor accepts an array (like $and and $or), and arrays do not trigger hasDollarKeys(), malicious operators such as $ne, $gt, or $regex could be injected inside a $nor clause without being sanitized.

This may lead to:

  • Authentication bypass
  • Unauthorized data access
  • Data exfiltration

Affected users:

Applications that:

  • Explicitly enable sanitizeFilter
  • Pass unsanitized user-controlled input directly into query methods (e.g., Model.findOne(req.body)) and rely on sanitizeFilter to strip out query selectors

Applications that validate input schemas, whitelist fields, or avoid passing raw request bodies into queries are not affected. For example, Model.findOne({ user: req.body.user, pwd: req.body.pwd }) is not affected.

Patches

Patches have been released for all supported Mongoose release lines:

  • ^6.13.9
  • ^7.8.9
  • ^8.22.1
  • ^9.1.6
Workarounds

Delete $nor keys, use an additional schema validation library, or write middleware to strip out $nor from query filters.

Resources

sanitizeFilter documentation: https://mongoosejs.com/docs/api/mongoose.html#Mongoose.prototype.sanitizeFilter()

Original blog post on sanitizeFilter: https://thecodebarbarian.com/whats-new-in-mongoose-6-sanitizefilter.html

Severity

  • CVSS Score: 7.5 / 10 (High)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Release Notes

Automattic/mongoose (mongoose)

v6.13.9

Compare Source

6.13.9 / 2026-02-04

  • fix: handle other top-level query operators in sanitizeFilter
  • types(aggregate): add $firstN, $lastN, $bottom, $bottomN, $minN and $maxN operators #​15303 #​15299
  • docs(compatibility): add note that Mongoose ^6.5 works with MongoDB server 7.x #​15427

v6.13.8

Compare Source

===================

  • chore: remove coverage output from bundle

v6.13.7

Compare Source

===================

  • chore: re-release to force npm audit to pick up 6.x fix for CVE-2025-23061

v6.13.6

Compare Source

===================

v6.13.5

Compare Source

===================

  • fix: disallow using $where in match

v6.13.4

Compare Source

===================

v6.13.3

Compare Source

===================

  • docs(migrating_to_6): document that Lodash _.isEmpty() with ObjectId() as a parameter returns true in Mongoose 6 #​11152

v6.13.2

Compare Source

===================

  • fix(document): make set() respect merge option on deeply nested objects #​14870 #​14878

v6.13.1

Compare Source

===================

v6.13.0

Compare Source

===================

  • feat(model): add throwOnValidationError option for opting into getting MongooseBulkWriteError if all valid operations succeed in bulkWrite() and insertMany() #​14599 #​14587 #​14572 #​13410

v6.12.9

Compare Source

===================

v6.12.8

Compare Source

===================

  • fix(document): handle virtuals that are stored as objects but getter returns string with toJSON #​14468 #​14446
  • fix(schematype): consistently set wasPopulated to object with value property rather than boolean #​14418
  • docs(model): add extra note about lean option for insertMany() skipping casting #​14415 #​14376

v6.12.7

Compare Source

===================

v6.12.6

Compare Source

===================

  • fix(collection): correctly handle buffer timeouts with find() #​14277
  • fix(document): allow calling push() with different $position arguments #​14254

v6.12.5

Compare Source

===================

  • perf(schema): remove unnecessary lookahead in numeric subpath check
  • fix(document): allow setting nested path to null #​14226
  • fix(document): avoid flattening dotted paths in mixed path underneath nested path #​14198 #​14178
  • fix: add ignoreAtomics option to isModified() for better backwards compatibility with Mongoose 5 #​14213

v6.12.4

Compare Source

===================

  • fix: upgrade mongodb driver -> 4.17.2
  • fix(document): avoid treating nested projection as inclusive when applying defaults #​14173 #​14115
  • fix: account for null values when assigning isNew property #​14172 #​13883

v6.12.3

Compare Source

===================

  • fix(ChangeStream): correctly handle hydrate option when using change stream as stream instead of iterator #​14052
  • fix(schema): fix dangling reference to virtual in tree after removeVirtual() #​14019 #​13085
  • fix(document): avoid unmarking modified on nested path if no initial value stored and already modified #​14053 #​14024
  • fix(document): consistently avoid marking subpaths of nested paths as modified #​14053 #​14022

v6.12.2

Compare Source

===================

v6.12.1

Compare Source

===================

v6.12.0

Compare Source

===================

  • feat: use mongodb driver v4.17.1
  • fix(model): make Model.bulkWrite() with empty array and ordered false not throw an error #​13664
  • fix(document): correctly handle inclusive/exclusive projections when applying subdocument defaults #​13763 #​13720

v6.11.6

Compare Source

===================

v6.11.5

Compare Source

===================

  • fix(schema): make Schema.prototype.clone() avoid creating different copies of subdocuments and single nested paths underneath single nested paths #​13671 #​13626
  • fix: custom debug function not processing all args #​13418

v6.11.4

Compare Source

===================

  • perf: speed up mapOfSubdocs benchmark by 4x by avoiding unnecessary O(n^2) loop in getPathsToValidate() #​13614

v6.11.3

Compare Source

===================

  • fix: avoid prototype pollution on init
  • fix(schema): correctly handle uuids with populate() #​13317 #​13595

v6.11.2

Compare Source

===================

v6.11.1

Compare Source

===================

  • fix(query): apply schema-level paths before calculating projection for findOneAndUpdate() #​13348 #​13340
  • fix: add SUPPRESS_JEST_WARNINGS environment variable to hide jest warnings #​13384 #​13373
  • types(model): allow overwriting expected param type for bulkWrite() #​13292 hasezoey

v6.11.0

Compare Source

===================

v6.10.5

Compare Source

===================

  • perf(document): avoid unnecessary loops, conditionals, string manipulation on Document.prototype.get() for 10x speedup on top-level properties #​12953
  • fix(model): execute valid write operations if calling bulkWrite() with ordered: false #​13218 #​13176
  • fix(array): pass-through all parameters #​13202 #​13201 hasezoey
  • fix: improve error message when sorting by empty string #​13249 #​10182
  • docs: add version support and check version docs #​13251 #​13193

v6.10.4

Compare Source

===================

  • fix(document): apply setters on resulting value when calling Document.prototype.$inc() #​13178 #​13158
  • fix(model): add results property to unordered insertMany() to make it easy to identify exactly which documents were inserted #​13163 #​12791
  • docs(guide+schematypes): add UUID to schematypes guide #​13184

v6.10.3

Compare Source

===================

v6.10.2

Compare Source

===================

  • fix(document): avoid setting array default if document array projected out by sibling projection #​13135 #​13043 #​13003
  • fix(documentarray): set correct document array path if making map of document arrays #​13133
  • fix: undo accidental change to engines in package.json #​13124 lorand-horvath
  • docs: quick improvement to Model.init() docs #​13054

v6.10.1

Compare Source

===================

v6.10.0

Compare Source

===================

v6.9.3

Compare Source

==================

v6.9.2

Compare Source

==================

v6.9.1

Compare Source

==================

  • fix(document): isModified should not be triggered when setting a nested boolean to the same value as previously #​12994 lpizzinidev
  • fix(document): save newly set defaults underneath single nested subdocuments #​13002 #​12905
  • fix(update): handle custom discriminator model name when casting update #​12947 wassil
  • fix(connection): handles unique autoincrement ID for connections #​12990 lpizzinidev
  • fix(types): fix type of options of Model.aggregate #​12933 ghost91-
  • fix(types): fix "near" aggregation operator input type #​12954 Jokero
  • fix(types): add missing Top operator to AccumulatorOperator type declaration #​12952 lpizzinidev
  • docs(transactions): added example for Connection.transaction() method #​12943 #​12934 lpizzinidev
  • docs(populate): fix out of date comment referencing onModel property #​13000
  • docs(transactions): fix typo in transactions.md #​12995 Parth86

v6.9.0

Compare Source

==================

v6.8.4

Compare Source

==================

v6.8.3

Compare Source

==================

  • perf: improve performance of assignRawDocsToIdStructure for faster populate on large docs #​12867 Uzlopak
  • fix(model): ensure consistent ordering of validation errors in insertMany() with ordered: false and rawResult: true #​12866
  • fix: avoid passing final callback to pre hook, because calling the callback can mess up hook execution #​12836
  • fix(types): avoid inferring timestamps if methods, virtuals, or statics set #​12871
  • fix(types): correctly infer string enums on const arrays #​12870 JavaScriptBach
  • fix(types): allow virtuals to be invoked in the definition of other virtuals #​12874 sffc
  • fix(types): add type def for Aggregate#model without arguments #​12864 hasezoey
  • docs(discriminators): add section about changing discriminator key #​12861
  • docs(typescript): explain that virtuals inferred from schema only show up on Model, not raw document type #​12860 #​12684

v6.8.2

Compare Source

==================

  • fix(schema): propagate strictQuery to implicitly created schemas for embedded discriminators #​12827 #​12796
  • fix(model): respect discriminators with Model.validate() #​12824 #​12621
  • fix(query): fix unexpected validation error when doing findOneAndReplace() with a nullish value #​12826 #​12821
  • fix(discriminator): apply built-in plugins to discriminator schema even if mergeHooks and mergePlugins are both false #​12833 #​12696
  • fix(types): add option "overwriteModels" as a schema option #​12817 #​12816 hasezoey
  • fix(types): add property "defaultOptions" #​12818 hasezoey
  • docs: make search bar respect documentation version, so you can search 5.x docs #​12548
  • docs(typescript): make note about recommending strict mode when using auto typed schemas #​12825 #​12420
  • docs: add section on sorting to query docs #​12588 IslandRhythms
  • test(query.test): add write-concern option #​12829 hasezoey

v6.8.1

Compare Source

==================

v6.8.0

Compare Source

==================

v6.7.5

Compare Source

==================

v6.7.4

Compare Source

==================

v6.7.3

Compare Source

==================

v6.7.2

Compare Source

==================

[v6.7.1](https://redirect.github.com/Automat

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR is behind base branch, 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-mongoose-vulnerability branch from 3255137 to d129860 Compare December 18, 2024 01:20
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Dec 18, 2024
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from d129860 to 1666912 Compare December 22, 2024 16:02
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Dec 22, 2024
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 1666912 to 8eb8496 Compare December 22, 2024 18:57
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Dec 22, 2024
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 8eb8496 to 54f1d66 Compare January 14, 2025 15:26
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Jan 14, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 54f1d66 to 0311f70 Compare January 14, 2025 21:29
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Jan 14, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 0311f70 to 674a903 Compare January 17, 2025 12:42
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Jan 17, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 674a903 to a6efe02 Compare January 17, 2025 20:40
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Jan 17, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch 2 times, most recently from 236b576 to 4635dca Compare January 23, 2025 20:32
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Jan 23, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 4635dca to 2f81c78 Compare January 24, 2025 00:53
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Jan 24, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 2f81c78 to 94da444 Compare January 30, 2025 14:37
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Jan 30, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 94da444 to 0c9fc7b Compare January 30, 2025 18:20
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Jan 30, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 0c9fc7b to e44bac6 Compare February 9, 2025 12:52
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Feb 9, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from e44bac6 to 7f4e9a8 Compare February 9, 2025 17:26
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Feb 9, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 7f4e9a8 to ca1698d Compare March 3, 2025 16:53
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Mar 3, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from ca1698d to 550687c Compare March 3, 2025 23:44
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from aa0c976 to 3954983 Compare March 17, 2025 23:41
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Mar 17, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 3954983 to f122069 Compare April 1, 2025 14:39
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Apr 1, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from f122069 to cd55b4d Compare April 1, 2025 18:54
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Apr 1, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from cd55b4d to b61112f Compare April 8, 2025 10:24
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Apr 8, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from b61112f to 3a7d9f5 Compare April 8, 2025 17:20
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Apr 8, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 3a7d9f5 to ecced5d Compare April 24, 2025 09:39
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] Apr 24, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from ecced5d to 35b97f7 Compare April 24, 2025 17:03
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] Apr 24, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 35b97f7 to a33d016 Compare May 7, 2025 10:56
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] May 7, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from a33d016 to f125477 Compare May 7, 2025 17:08
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] May 7, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from f125477 to da30e6f Compare May 13, 2025 14:31
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] May 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from da30e6f to 4db74b0 Compare May 13, 2025 19:49
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] May 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 4db74b0 to 7dfc95f Compare May 19, 2025 18:12
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] May 19, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 7dfc95f to 78b42a6 Compare May 19, 2025 22:55
@renovate renovate Bot changed the title Update dependency mongoose to v8 [SECURITY] Update dependency mongoose to v6 [SECURITY] May 19, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from 78b42a6 to abe6537 Compare May 28, 2025 15:43
@renovate renovate Bot changed the title Update dependency mongoose to v6 [SECURITY] Update dependency mongoose to v8 [SECURITY] May 28, 2025
@renovate renovate Bot force-pushed the renovate/npm-mongoose-vulnerability branch from abe6537 to 9fb76f0 Compare May 28, 2025 20:50
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