Created
January 25, 2018 17:08
-
-
Save bruienne/5f84cfa559ca957dc2943c33a3098149 to your computer and use it in GitHub Desktop.
Revisions
-
bruienne created this gist
Jan 25, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ #!/usr/bin/python from macholib import MachO import macholib import os import sys path = sys.argv[1] for root, dirs, files in os.walk(path): for file in files: abs_path = os.path.join(root,file) if os.access(abs_path, os.X_OK): try: macho = MachO.MachO(abs_path) except (ValueError, KeyError): break if len(macho.headers) == 1: if not isinstance(macho.headers[0].mach_header(), macholib.mach_o.mach_header_64): print('%s' % abs_path)