restforce vulnerable to Improper Input Validation
Critical severity
GitHub Reviewed
Published
Aug 3, 2018
to the GitHub Advisory Database
•
Updated Jun 9, 2023
Description
Published by the National Vulnerability Database
Aug 3, 2018
Published to the GitHub Advisory Database
Aug 3, 2018
Reviewed
Jun 16, 2020
Last updated
Jun 9, 2023
A flaw in how restforce constructs URLs may allow an attacker to inject additional parameters into Salesforce API requests.
Impact
This flaw is only exploitable in applications that pass user input directly to restforce's select, find, describe, update, upsert, and destroy methods.
Vulnerable code might look like:
In such an application, attackers could pass
0016000000MRatd/describe
as a request parameter, causing the server to make a request to a different endpoint than the server is designed to handle. Since the Salesforce REST API supports overriding HTTP methods via a request parameter, an attacker could also cause the client'sselect()
method to modify data, by passing0016000000MRatd/?_HttpMethod=PATCH&other-query-params=...
.Workarounds
If possible, applications should track salesforce IDs internally, rather than passing user-supplied IDs to salesforce. Such practice mitigates this vulnerability, and in general is desirable for ensuring strong access control.
References