Avoid NoSQL injection through API requests | CAST Appmarq

Avoid NoSQL injection through API requests

CRITICAL

Rule Definition
The software constructs all or part of No-SQL command via user-controllable inputs. These inputs are not neutralized or are incorrectly neutralized. As a consequence, the No-SQL command may be completely altered.

Remediation
Use authorized sanitization methods. Do not expose sensible methods.

Violation Code Sample
String input; // value given by an API request
            
List<Database> databaseList0 = documentClient
    .queryDatabases(
        "SELECT * FROM root r WHERE r.id='" + input
            + "'", null).getQueryIterable().toList();
Fixed Code Sample
String input; // value given by an API request, but sanitized, or constant value
            
List<Database> databaseList0 = documentClient
    .queryDatabases(
        "SELECT * FROM root r WHERE r.id='" + input
            + "'", null).getQueryIterable().toList();

Reference
CWE-943: Improper Neutralization of Special Elements in Data Query Logic https://cwe.mitre.org/data/definitions/943.html Open Web Application Security Project (OWASP) https://www.owasp.org/index.php/Top_10-2017_A1-Injection

Related Technologies

Health Factor

  Total Quality Index


Technical Criterion
CWE-89 - Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')

About CAST Appmarq

CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.

Benchmark Statistics

Global Compliance

nan%

Total Violations
0
Total Opportunities
0
Average Violations / App.
nan
The compliance score represents 1 minus the ratio between the number of times a rule has been violated compared to the number of opportunities in a set of applications that the rule could have been violated.

Industry Insights

Select from drop-down

99.96%

Software ISV

99.99%

Don't Know

99.42%