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 300124d commit 6ca5efaCopy full SHA for 6ca5efa
contrib/devtools/security-check.py
@@ -172,7 +172,7 @@ def check_NX(binary) -> bool:
172
'''
173
return binary.has_nx
174
175
-def check_control_flow(binary) -> bool:
+def check_MACHO_control_flow(binary) -> bool:
176
177
Check for control flow instrumentation
178
@@ -205,7 +205,7 @@ def check_control_flow(binary) -> bool:
205
('NX', check_NX),
206
('LAZY_BINDINGS', check_MACHO_LAZY_BINDINGS),
207
('Canary', check_MACHO_Canary),
208
- ('CONTROL_FLOW', check_control_flow),
+ ('CONTROL_FLOW', check_MACHO_control_flow),
209
]
210
211
CHECKS = {
0 commit comments