CWE-835 不可达退出条件的循环(无限循环)

admin 2021年12月12日05:46:37评论127 views字数 3088阅读10分17秒阅读模式

CWE-835 不可达退出条件的循环(无限循环)

Loop with Unreachable Exit Condition ('Infinite Loop')

结构: Simple

Abstraction: Base

状态: Incomplete

被利用可能性: unkown

基本描述

The program contains an iteration or loop with an exit condition that cannot be reached, i.e., an infinite loop.

扩展描述

If the loop can be influenced by an attacker, this weakness could allow attackers to consume excessive resources such as CPU or memory.

相关缺陷

  • cwe_Nature: ChildOf cwe_CWE_ID: 834 cwe_View_ID: 1000 cwe_Ordinal: Primary

  • cwe_Nature: ChildOf cwe_CWE_ID: 834 cwe_View_ID: 1003 cwe_Ordinal: Primary

  • cwe_Nature: ChildOf cwe_CWE_ID: 834 cwe_View_ID: 699 cwe_Ordinal: Primary

适用平台

Language: {'cwe_Class': 'Language-Independent', 'cwe_Prevalence': 'Undetermined'}

常见的影响

范围 影响 注释
Availability ['DoS: Resource Consumption (CPU)', 'DoS: Resource Consumption (Memory)', 'DoS: Amplification'] An infinite loop will cause unexpected consumption of resources, such as CPU cycles or memory. The software's operation may slow down, or cause a long time to respond.

示例代码

In the following code the method processMessagesFromServer attempts to establish a connection to a server and read and process messages from the server. The method uses a do/while loop to continue trying to establish the connection to the server when an attempt fails.

bad C

int processMessagesFromServer(char hostaddr, int port) {

...
int servsock;
int connected;
struct sockaddr_in servaddr;

// create socket to connect to server

servsock = socket( AF_INET, SOCK_STREAM, 0);
memset( &servaddr, 0, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_port = htons(port);
servaddr.sin_addr.s_addr = inet_addr(hostaddr);

do {


// establish connection to server

connected = connect(servsock, (struct sockaddr )&servaddr, sizeof(servaddr));

// if connected then read and process messages from server

if (connected > -1) {


// read and process messages

...

}

// keep trying to establish connection to the server

} while (connected
// close socket and return success or failure

...

}

However, this will create an infinite loop if the server does not respond. This infinite loop will consume system resources and can be used to create a denial of service attack. To resolve this a counter should be used to limit the number of attempts to establish a connection to the server, as in the following code.

good C

int processMessagesFromServer(char hostaddr, int port) {

...
// initialize number of attempts counter

int count = 0;
do {


// establish connection to server

connected = connect(servsock, (struct sockaddr )&servaddr, sizeof(servaddr));

// increment counter

count++;

// if connected then read and process messages from server

if (connected > -1) {


// read and process messages

...

}

// keep trying to establish connection to the server

// up to a maximum number of attempts

} while (connected
// close socket and return success or failure

...

}

For this example the method isReorderNeeded as part of a bookstore application that determines if a particular book needs to be reordered based on the current inventory count and the rate at which the book is being sold.

bad Java

public boolean isReorderNeeded(String bookISBN, int rateSold) {


boolean isReorder = false;

int minimumCount = 10;
int days = 0;

// get inventory count for book

int inventoryCount = inventory.getIventoryCount(bookISBN);

// find number of days until inventory count reaches minimum

while (inventoryCount > minimumCount) {


inventoryCount = inventoryCount - rateSold;
days++;

}

// if number of days within reorder timeframe

// set reorder return boolean to true

if (days > 0 && days isReorder = true;

}

return isReorder;

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

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2021年12月12日05:46:37
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   CWE-835 不可达退出条件的循环(无限循环)https://cn-sec.com/archives/613283.html

发表评论

匿名网友 填写信息