mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 09:53:47 +01:00
script rename control flow check to MACHO specific
This commit is contained in:
parent
300124dedf
commit
6ca5efa8ed
@ -172,7 +172,7 @@ def check_NX(binary) -> bool:
|
||||
'''
|
||||
return binary.has_nx
|
||||
|
||||
def check_control_flow(binary) -> bool:
|
||||
def check_MACHO_control_flow(binary) -> bool:
|
||||
'''
|
||||
Check for control flow instrumentation
|
||||
'''
|
||||
@ -205,7 +205,7 @@ BASE_MACHO = [
|
||||
('NX', check_NX),
|
||||
('LAZY_BINDINGS', check_MACHO_LAZY_BINDINGS),
|
||||
('Canary', check_MACHO_Canary),
|
||||
('CONTROL_FLOW', check_control_flow),
|
||||
('CONTROL_FLOW', check_MACHO_control_flow),
|
||||
]
|
||||
|
||||
CHECKS = {
|
||||
|
Loading…
Reference in New Issue
Block a user