otool
-f
print the fat headers-a
print the archive header-h
print the mach header-l
print the load commands-L
print shared libraries used-D
print shared library id name-t
print the text section (disassemble with -v)-x
print all text sections (disassemble with -v)-p
start dissassemble from routine name -s
print contents of section -d
print the data section-o
print the Objective-C segment-r
print the relocation entries-S
print the table of contents of a library (obsolete)-T
print the table of contents of a dynamic shared library (obsolete)-M
print the module table of a dynamic shared library (obsolete)-R
print the reference table of a dynamic shared library (obsolete)-I
print the indirect symbol table-H
print the two-level hints table (obsolete)-G
print the data in code table-v
print verbosely (symbolically) when possible-V
print disassembled operands symbolically-c
print argument strings of a core file-X
print no leading addresses or headers-m
don't use archive(member) syntax-B
force Thumb disassembly (ARM objects only)-q
use llvm's disassembler (the default)-Q
use otool(1)'s disassembler-mcpu=arg
usearg
as the cpu for disassembly-j
print opcode bytes-P
print the info plist section as strings-C
print linker optimization hints--version
print the version
示例
1 2 3 4 5 6 7 |
otool -h libuecm.dylib # 显示如下 libuecm.dylib: Mach header magic cputype cpusubtype caps filetype ncmds sizeofcmds flags 0xfeedfacf 16777223 3 0x00 6 16 1640 0x00118085 |
1 |
otool -l EnSoftwareColl.dylib |
1 |
otool -L /path/to/executable |
1 |
otool -tV /path/to/executable |
1 2 |
# 有没有加密 otool -l clion | grep crypt |
install_name_tool
change
1 |
install_name_tool -change old_path new_path executable |
- 上述命令是macOS 上的一个命令行工具,它允许您更改可执行文件或共享库所依赖的动态链接库的路径。
old_path
是当前依赖库的路径new_path
是要替换为的新路径executable
是要修改的可执行文件或共享库的路径
spctl
验证文件来源
1 |
spctl --assess --verbose --type <file> |
1 2 3 4 5 6 |
spctl --assess --verbose --type execute /Applications/CLion.app/Contents/MacOS/clion # spctl --assess --verbose --type install /path/to/Installer.pkg res: /Applications/CLion.app/Contents/MacOS/clion: accepted source=Notarized Developer ID |
控制执行权限
1 |
spctl --add --label <label> --path <file> |
1 2 |
$ spctl --add --label "MyApp" --path /Applications/MyApp.app # 该命令会将 /Applications/MyApp.app 添加到允许执行的列表中,并分配一个标签 "MyApp" |
查询当前安全策略状态
1 |
spctl --status |
1 2 |
assessment enabled # 结果显示安全评估功能处于启用状态 |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ macOS应用记述一10/26
- ♥ Cef:介绍06/29
- ♥ 各平台调试方法总结记述一09/25
- ♥ Macos网络信息相关06/06
- ♥ Macos屏保相关08/22
- ♥ 51CTO:C++网络通信引擎架构与实现一09/09