Mac系統10.11(10.12)之後/usr/bin 不能拷貝進去class-dump該怎麼辦
阿新 • • 發佈:2019-02-11
最近在研究class-dump 反編譯軟體,發現安裝的時候有些問題.
/us/bin 沒有許可權 . 但文件說明需要把class-dump檔案放進去
但是可以在~/.bash_profile 環境配置檔案下新增 “指引”路徑.
在終端下,新建一個資料夾把 class-dump 放進去
如終端建立: $mkdir ~/bin2.開啟~/.bash_profile檔案,配置環境變數 (雙擊開啟就可以) 把export PATH=
HOME/bin/: PATH 放到第一行中3.在Terminal中執行source命令 $ source ~/.bash_profile
完成以上步驟,在terminal中執行class-dump實驗一下,應該就可以了。
class-dump 3.5 (64 bit)
Usage: class-dump [options] <mach-o-file>
where options are:
-a show instance variable offsets
-A show implementation addresses
--arch <arch> choose a specific architecture from a universal binary (ppc, ppc64, i386, x86_64, armv6, armv7, armv7s, arm64)
-C <regex> only display classes matching regular expression
-f <str> find string in method name
-H generate header files in current directory, or directory specified with -o
-I sort classes, categories, and protocols by inheritance (overrides -s)
-o <dir> output directory used for -H
-r recursively expand frameworks and fixed VM shared libraries
-s sort classes and categories by name
-S sort methods by name
-t suppress header in output, for testing
--list-arches list the arches in the file, then exit
--sdk-ios specify iOS SDK version (will look in /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS<version>.sdk
--sdk-mac specify Mac OS X version (will look in /Developer/SDKs/MacOSX<version>.sdk
--sdk-root specify the full SDK root path (or use --sdk-ios/--sdk-mac for a shortcut)
使用 :
命令如下:class-dump -H /iPhone.app -o /Users/apple/Desktop/heads
解釋:
/iPhone.app 是app的路徑
/Users/apple/Desktop/heads 是存放dump出來標頭檔案的資料夾路徑
注意: 字尾不是ipa檔案 是app(選擇開啟方式 解壓 後有app檔案)