|
| 1 | +# CWE-252: Unchecked Return Value |
| 2 | + |
| 3 | +Return values of methods and functions should always be checked to ensure operations have been performed correctly. |
| 4 | + |
| 5 | +When immutable objects are used, methods that aim to modify them have to create a new object with the desired changed and return it. For the results of such methods to take place, the developer must remember to assign the new value to a variable, otherwise it won't be accessible. They can also be used to handle unexpected behaviors by returning specific values (such as `None` or a other default values) that may require additional safety checks. |
| 6 | + |
| 7 | +## Non-Compliant Code Example - Immutable objects |
| 8 | + |
| 9 | +This non-compliant code example shows a common mistake when trying to update an immutable object. Since `str` is an immutable type, `str.replace()` creates a new `str` object with the desired change [[Python Docs - str.replace](https://docs.python.org/3.9/library/stdtypes.html#str.replace)]. This object must be then assigned, typically in place of the original string. If not, the new value remains unused. |
| 10 | + |
| 11 | +*[noncompliant01.py](noncompliant01.py):* |
| 12 | + |
| 13 | +```python |
| 14 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 15 | +# SPDX-License-Identifier: MIT |
| 16 | +""" Non-compliant Code Example """ |
| 17 | + |
| 18 | + |
| 19 | +def silly_string(user_input): |
| 20 | + """Function that changes the content of a string""" |
| 21 | + user_input.replace("un", "very ") |
| 22 | + return user_input |
| 23 | + |
| 24 | + |
| 25 | +##################### |
| 26 | +# exploiting above code example |
| 27 | +##################### |
| 28 | +print(silly_string("unsafe string")) |
| 29 | + |
| 30 | +``` |
| 31 | + |
| 32 | +Despite calling `silly_string()`, "unsafe string" is printed instead of the expected "very safe string" as the return value of `str.replace()` has been ignored. |
| 33 | + |
| 34 | +## Compliant Solution - Immutable objects |
| 35 | + |
| 36 | +This compliant solution correctly returns the value from `str.replace()` and then prints it: |
| 37 | + |
| 38 | +*[compliant01.py](compliant01.py):* |
| 39 | + |
| 40 | +```python |
| 41 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 42 | +# SPDX-License-Identifier: MIT |
| 43 | +""" Compliant Code Example """ |
| 44 | + |
| 45 | + |
| 46 | +def silly_string(user_input): |
| 47 | + """Function that changes the content of a string""" |
| 48 | + return user_input.replace("un", "very ") |
| 49 | + |
| 50 | + |
| 51 | +##################### |
| 52 | +# exploiting above code example |
| 53 | +##################### |
| 54 | +print(silly_string("unsafe string")) |
| 55 | + |
| 56 | +``` |
| 57 | + |
| 58 | +## Non-Compliant Code Example - Invalid value handling |
| 59 | + |
| 60 | +Return values are also important when they may be used as an alternative to raising exceptions. `str.find()`, unlike `str.index()` returns -1 [[Python Docs - str.find](https://docs.python.org/3/library/stdtypes.html#str.find)] instead of raising a `ValueError` [[Python Docs - str.index](https://docs.python.org/3/library/stdtypes.html#str.index)] when it cannot find the given sub-string. |
| 61 | +This non-compliant code example shows that using this value will point to the last element of the string regardless of what it is. |
| 62 | + |
| 63 | +*[noncompliant02.py](noncompliant02.py):* |
| 64 | + |
| 65 | +```python |
| 66 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 67 | +# SPDX-License-Identifier: MIT |
| 68 | +""" Non-compliant Code Example """ |
| 69 | + |
| 70 | + |
| 71 | +def find_in_string(full_string, sub_string): |
| 72 | + """Function that searches for a sub-string in a given string""" |
| 73 | + index = full_string.find(sub_string) |
| 74 | + print(f"Sub-string '{sub_string}' appears in '{full_string}' at index {index}'") |
| 75 | + |
| 76 | + |
| 77 | +##################### |
| 78 | +# exploiting above code example |
| 79 | +##################### |
| 80 | +my_string = "Secure Python coding" |
| 81 | +find_in_string(my_string, "Python") |
| 82 | +find_in_string(my_string, "I'm evil") |
| 83 | + |
| 84 | +``` |
| 85 | + |
| 86 | +Even though `I'm evil` is clearly not a part of "Secure Python coding", the `find_in_string()` method will suggest otherwise. |
| 87 | + |
| 88 | +## Compliant Solution - Invalid value handling |
| 89 | + |
| 90 | +Since `str.find()` indicates the fact that the sub-string couldn't be found with a negative index, a simple `if` check is enough to tackle the issue from the previous code example. |
| 91 | + |
| 92 | +*[compliant02.py](compliant02.py):* |
| 93 | + |
| 94 | +```python |
| 95 | +# SPDX-FileCopyrightText: OpenSSF project contributors |
| 96 | +# SPDX-License-Identifier: MIT |
| 97 | +""" Non-compliant Code Example """ |
| 98 | + |
| 99 | + |
| 100 | +def find_in_string(full_string, sub_string): |
| 101 | + """Function that searches for a sub-string in a given string""" |
| 102 | + index = full_string.find(sub_string) |
| 103 | + if index >= 0: |
| 104 | + print(f"Sub-string '{sub_string}' appears in '{full_string}' at index {index}'") |
| 105 | + else: |
| 106 | + print(f"There is no '{sub_string}' in '{full_string}'") |
| 107 | + |
| 108 | + |
| 109 | +##################### |
| 110 | +# exploiting above code example |
| 111 | +##################### |
| 112 | +my_string = "Secure Python coding" |
| 113 | +find_in_string(my_string, "Python") |
| 114 | +find_in_string(my_string, "I'm evil") |
| 115 | + |
| 116 | +``` |
| 117 | + |
| 118 | +Now, the latter print will correctly indicate the lack of `I'm evil` in `Secure Python coding`. |
| 119 | + |
| 120 | +## Automated Detection |
| 121 | + |
| 122 | +|Tool|Version|Checker|Description| |
| 123 | +|:---|:---|:---|:---| |
| 124 | +|Bandit|1.7.4 on Python 3.10.4|Not Available|| |
| 125 | +|Flake8|8-4.0.1 on Python 3.10.4|Not Available|| |
| 126 | + |
| 127 | +## Related Guidelines |
| 128 | + |
| 129 | +||| |
| 130 | +|:---|:---| |
| 131 | +|[MITRE CWE](http://cwe.mitre.org/)|Pillar: [CWE-703: Improper Check or Handling of Exceptional Conditions (4.13) (mitre.org)](https://cwe.mitre.org/data/definitions/703.html)| |
| 132 | +|[MITRE CWE](http://cwe.mitre.org/)|Base: [CWE-252: Unchecked Return Value](https://cwe.mitre.org/data/definitions/252.html)| |
| 133 | +|[SEI CERT Coding Standard for Java](https://wiki.sei.cmu.edu/confluence/display/java/SEI+CERT+Oracle+Coding+Standard+for+Java)|[EXP00-J. Do not ignore values returned by methods](https://wiki.sei.cmu.edu/confluence/display/java/EXP00-J.+Do+not+ignore+values+returned+by+methods)| |
| 134 | +|[SEI CERT C Coding Standard](https://wiki.sei.cmu.edu/confluence/display/c/SEI+CERT+C+Coding+Standard)|[EXP12-C. Do not ignore values returned by functions](https://wiki.sei.cmu.edu/confluence/display/c/EXP12-C.+Do+not+ignore+values+returned+by+functions)| |
| 135 | +|ISO/IEC TR 24772:2019|Passing Parameters and Return Values \[CSJ\]| |
| 136 | + |
| 137 | +## Bibliography |
| 138 | + |
| 139 | +||| |
| 140 | +|:---|:---| |
| 141 | +|[[Python Docs - str.replace](https://docs.python.org/3.9/library/stdtypes.html#str.replace)]<br>[[Python Docs - str.find](https://docs.python.org/3/library/stdtypes.html#str.find)]<br>[[Python Docs - str.index](https://docs.python.org/3/library/stdtypes.html#str.index)]|Python Software Foundation. (2025). Built-in Types [online]. Available from: [https://docs.python.org/3.9/library/stdtypes.html](https://docs.python.org/3.9/library/stdtypes.html) \[accessed 17 June 2025\] | |
0 commit comments