Movatterモバイル変換


[0]ホーム

URL:


CodeQL documentation
CodeQL resources

User-controlled bypass of sensitive method

ID: java/user-controlled-bypassKind: path-problemSecurity severity: 7.8Severity: errorPrecision: mediumTags:   - security   - external/cwe/cwe-807   - external/cwe/cwe-290Query suites:   - java-security-extended.qls   - java-security-and-quality.qls

Click to see the query in the CodeQL repository

Many Java constructs enable code statements to be executed conditionally, for exampleif statements andfor statements. If these statements contain important authentication or login code, and the decision about whether to execute this code is based on user-controlled data, it may be possible for an attacker to bypass security systems by preventing this code from executing.

Recommendation

Never decide whether to authenticate a user based on data that may be controlled by that user. If necessary, ensure that the data is validated extensively when it is input before any authentication checks are performed.

It is still possible to have a system that “remembers” users, thus not requiring the user to login on every interaction. For example, personalization settings can be applied without authentication because this is not sensitive information. However, users should be allowed to take sensitive actions only when they have been fully authenticated.

Example

This example shows two ways of deciding whether to authenticate a user. The first way shows a decision that is based on the value of a cookie. Cookies can be easily controlled by the user, and so this allows a user to become authenticated without providing valid credentials. The second, more secure way shows a decision that is based on looking up the user in a security database.

publicbooleandoLogin(Stringuser,Stringpassword){CookieadminCookie=getCookies()[0];// BAD: login is executed only if the value of 'adminCookie' is 'false',// but 'adminCookie' is controlled by the userif(adminCookie.getValue()=="false")returnlogin(user,password);returntrue;}publicbooleandoLogin(Stringuser,Stringpassword){CookieadminCookie=getCookies()[0];// GOOD: use server-side information based on the credentials to decide// whether user has privilegesbooleanisAdmin=queryDbForAdminStatus(user,password);if(!isAdmin)returnlogin(user,password);returntrue;}

References


[8]ページ先頭

©2009-2025 Movatter.jp