VYPR
Critical severityNVD Advisory· Published Aug 12, 2022· Updated Apr 23, 2025

loopback-connector-postgresql Vulnerable to Improper Sanitization of `contains` Filter

CVE-2022-35942

Description

Improper input validation on the contains LoopBack filter may allow for arbitrary SQL injection. When the extended filter property contains is permitted to be interpreted by the Postgres connector, it is possible to inject arbitrary SQL which may affect the confidentiality and integrity of data stored on the connected database. A patch was released in version 5.5.1. This affects users who does any of the following: - Connect to the database via the DataSource with allowExtendedProperties: true setting OR - Uses the connector's CRUD methods directly OR - Uses the connector's other methods to interpret the LoopBack filter. Users who are unable to upgrade should do the following if applicable: - Remove allowExtendedProperties: true DataSource setting - Add allowExtendedProperties: false DataSource setting - When passing directly to the connector functions, manually sanitize the user input for the contains LoopBack filter beforehand.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
loopback-connector-postgresqlnpm
< 5.5.15.5.1

Affected products

1

Patches

1
d57406c67376

fix: improve filter sanitisation

1 file changed · +4 3
  • lib/postgresql.js+4 3 modified
    @@ -545,10 +545,11 @@ PostgreSQL.prototype.buildExpression = function(columnName, operator,
           return new ParameterizedSQL(columnName + regexOperator,
             [operatorValue.source]);
         case 'contains':
    -      return new ParameterizedSQL(columnName + ' @> array[' + operatorValue.map((v) => `'${v}'`) + ']::'
    -        + propertyDefinition.postgresql.dataType);
    +      return new ParameterizedSQL(columnName + ' @> array[' + operatorValue.map(() => '?') + ']::'
    +        + propertyDefinition.postgresql.dataType,
    +        operatorValue);
         case 'match':
    -      return new ParameterizedSQL(`to_tsvector(${columnName}) @@ to_tsquery('${operatorValue}')`);
    +      return new ParameterizedSQL(`to_tsvector(${columnName}) @@ to_tsquery(?)`, [operatorValue]);
         default:
           // invoke the base implementation of `buildExpression`
           return this.invokeSuper('buildExpression', columnName, operator,
    

Vulnerability mechanics

Generated on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

4

News mentions

0

No linked articles in our index yet.