CWE-697 不充分的比较

admin 2021年11月8日20:02:20评论48 views字数 1821阅读6分4秒阅读模式

CWE-697 不充分的比较

Incorrect Comparison

结构: Simple

Abstraction: Class

状态: Incomplete

被利用可能性: unkown

基本描述

The software compares two entities in a security-relevant context, but the comparison is incorrect, which may lead to resultant weaknesses.

扩展描述

This weakness class covers several possibilities:

常见的影响

范围 影响 注释
Other Varies by Context

示例代码

Consider an application in which Truck objects are defined to be the same if they have the same make, the same model, and were manufactured in the same year.

bad Java

public class Truck {

private String make;
private String model;
private int year;

public boolean equals(Object o) {

if (o == null) return false;
if (o == this) return true;
if (!(o instanceof Truck)) return false;

Truck t = (Truck) o;

return (this.make.equals(t.getMake()) && this.model.equals(t.getModel()));

}

}

Here, the equals() method only checks the make and model of the Truck objects, but the year of manufacture is not included.

This example defines a fixed username and password. The AuthenticateUser() function is intended to accept a username and a password from an untrusted user, and check to ensure that it matches the username and password. If the username and password match, AuthenticateUser() is intended to indicate that authentication succeeded.

bad C


/ Ignore CWE-259 (hard-coded password) and CWE-309 (use of password system for authentication) for this example. /

char username = "admin";
char
pass = "password";

int AuthenticateUser(char inUser, char inPass) {

if (strncmp(username, inUser, strlen(inUser))) {

logEvent("Auth failure of username using strlen of inUser");
return(AUTH_FAIL);

}
if (! strncmp(pass, inPass, strlen(inPass))) {

logEvent("Auth success of password using strlen of inUser");
return(AUTH_SUCCESS);

}
else {

logEvent("Auth fail of password using sizeof");
return(AUTH_FAIL);

}

}

int main (int argc, char **argv) {

int authResult;

if (argc ExitError("Usage: Provide a username and password");

}
authResult = AuthenticateUser(argv[1], argv[2]);
if (authResult == AUTH_SUCCESS) {

DoAuthenticatedTask(argv[1]);

}
else {

ExitError("Authentication failed");

}

}文章来源于互联网:scap中文网

免责声明:文章中涉及的程序(方法)可能带有攻击性,仅供安全研究与教学之用,读者将其信息做其他用途,由读者承担全部法律及连带责任,本站不承担任何法律及连带责任;如有问题可邮件联系(建议使用企业邮箱或有效邮箱,避免邮件被拦截,联系方式见首页),望知悉。
  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2021年11月8日20:02:20
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   CWE-697 不充分的比较https://cn-sec.com/archives/613630.html
                  免责声明:文章中涉及的程序(方法)可能带有攻击性,仅供安全研究与教学之用,读者将其信息做其他用途,由读者承担全部法律及连带责任,本站不承担任何法律及连带责任;如有问题可邮件联系(建议使用企业邮箱或有效邮箱,避免邮件被拦截,联系方式见首页),望知悉.

发表评论

匿名网友 填写信息