We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b1206f commit 16ad3fdCopy full SHA for 16ad3fd
1 file changed
contrib/devtools/security-check.py
@@ -119,8 +119,9 @@ def check_ELF_CONTROL_FLOW(binary) -> bool:
119
120
def check_ELF_FORTIFY(binary) -> bool:
121
122
- # bitcoin-util does not currently contain any fortified functions
123
- if 'Bitcoin Core bitcoin-util utility version ' in binary.strings:
+ # bitcoin-util and elements-util do not currently contain any fortified functions
+ # (the utility binaries are intentionally kept minimal)
124
+ if any('bitcoin-util utility version' in s for s in binary.strings):
125
return True
126
127
chk_funcs = set()
0 commit comments