结构: Simple
Abstraction: Variant
状态: Draft
被利用可能性: unkown
The application uses the getlogin() function in a multithreaded context, potentially causing it to return incorrect values.
The getlogin() function returns a pointer to a string that contains the name of the user associated with the calling process. The function is not reentrant, meaning that if it is called from another process, the contents are not locked out and the value of the string can be changed by another process. This makes it very risky to use because the username can be changed by other processes, so the results of the function cannot be trusted.
Language: [{'cwe_Name': 'C', 'cwe_Prevalence': 'Undetermined'}, {'cwe_Name': 'C++', 'cwe_Prevalence': 'Undetermined'}]
范围 | 影响 | 注释 |
---|---|---|
['Integrity', 'Access Control', 'Other'] | ['Modify Application Data', 'Bypass Protection Mechanism', 'Other'] |
策略:
Using names for security purposes is not advised. Names are easy to forge and can have overlapping user IDs, potentially causing confusion or impersonation.
策略:
Use getlogin_r() instead, which is reentrant, meaning that other processes are locked out from changing the username.
The following code relies on getlogin() to determine whether or not a user is trusted. It is easily subverted.
bad C
映射的分类名 | ImNode ID | Fit | Mapped Node Name |
---|---|---|---|
7 Pernicious Kingdoms | Often Misused: Authentication | ||
Software Fault Patterns | SFP3 | Use of an improper API |