美文网首页
注入与删除动态库

注入与删除动态库

作者: 不仅仅是个程序猿 | 来源:发表于2021-06-21 13:36 被阅读0次

    一 使用optool

    1. 注入动态库
      optool install -p "@executable_path/xx.dylib" -t xx.app/xx

    2. 签名动态库
      security find-identity -v -p codesigning //查看可用签名
      codesign -fs 证书串 xx.dylib //签名动态库

    3. 将签名后的dylib拷贝到.app包中

    4. 去除动态库
      optool uninstall -p "@executable_path/xx.dylib" -t xx.app/xx

    相关文章

      网友评论

          本文标题:注入与删除动态库

          本文链接:https://www.haomeiwen.com/subject/qscyyltx.html