The web application does not sufficiently verify inputs that are assumed to be immutable but are actually externally controllable, such as hidden form fields.
If a web product does not properly protect assumed-immutable values from modification in hidden form fields, parameters, cookies, or URLs, this can lead to modification of critical data. Web applications often mistakenly make the assumption that data passed to the client in hidden fields or cookies is not susceptible to tampering. Improper validation of data that are user-controllable can lead to the application processing incorrect, and often malicious, input. For example, custom cookies commonly store session data or persistent data across sessions. This kind of session data is normally involved in security related decisions on the server side, such as user authentication and access control. Thus, the cookies might contain sensitive data such as user credentials and privileges. This is a dangerous practice, as it can often lead to improper reliance on the value of the client-provided cookie by the server side application.
Threat Mapped score: 0.0
Industry: Finiancial
Threat priority: Unclassified
CVE: CVE-2002-0108
Forum product allows spoofed messages of other users via hidden form fields for name and e-mail address.
CVE: CVE-2000-0253
Shopping cart allows price modification via hidden form field.
CVE: CVE-2000-0254
Shopping cart allows price modification via hidden form field.
CVE: CVE-2000-0926
Shopping cart allows price modification via hidden form field.
CVE: CVE-2000-0101
Shopping cart allows price modification via hidden form field.
CVE: CVE-2000-0102
Shopping cart allows price modification via hidden form field.
CVE: CVE-2000-0758
Allows admin access by modifying value of form field.
CVE: CVE-2002-1880
Read messages by modifying message ID parameter.
CVE: CVE-2000-1234
Send email to arbitrary users by modifying email parameter.
CVE: CVE-2005-1652
Authentication bypass by setting a parameter.
CVE: CVE-2005-1784
Product does not check authorization for configuration change admin script, leading to password theft via modified e-mail address field.
CVE: CVE-2005-2314
Logic error leads to password disclosure.
CVE: CVE-2005-1682
Modification of message number parameter allows attackers to read other people's messages.
Phase | Note |
---|---|
Implementation | OMISSION: This weakness is caused by missing a security tactic during the architecture and design phase. |
Intro: In this example, a web application uses the value of a hidden form field (accountID) without having done any input validation because it was assumed to be immutable.
String accountID = request.getParameter("accountID"); User user = getUserFromID(Long.parseLong(accountID));
Intro: Hidden fields should not be trusted as secure parameters.
Body: An attacker can intercept and alter hidden fields in a post to the server as easily as user input fields. An attacker can simply parse the HTML for the substring:
<input type="hidden"