美文网首页
iOS逆向-砸壳下(ⅩI)

iOS逆向-砸壳下(ⅩI)

作者: 鼬殿 | 来源:发表于2019-12-17 15:04 被阅读0次

Cycript支持中文

先映射端口

$ sh usbConnect.sh
Forwarding local port 10010 to remote port 22

Command+t新开终端页面,将.inputrc隐藏文件copy到手机的~目录

cd 到隐藏文件.inputrc的文件夹
$ scp -P 10010 .inputrc root@localhost:~

command+shift+.查看隐藏文件

在手机的~查看

$ sh usbLocalhost.sh
$ cd ~
$ ls -a

Cycript 注入进程

$ ps -A | grep appName  //抓取手机上运行的APP进程
$ cycript -p APP进程ID(或者名称)

官网

Cycript 导入.cy 文件

CoderMJLee

Theos

Theos是一个越狱开发工具包,由DHowett开发的,主要目的是简化越狱程序的开发流程。
官方安装步骤

 $ brew install ldid xz
 $ cd /opt/theos/
 $ sudo git clone --recursive https://github.com/theos/theos.git
//查看
$ cd bin
$ ls  //可以看到nic.pl
配置环境变量
$ vim ~/.bash_profile
添加如下环境变量
export THEOS=/opt/theos
export PATH=$THEOS/bin/
在终端~下验证
$ nic.pl
NIC 2.0 - New Instance Creator
------------------------------
  [1.] iphone/activator_event
  [2.] iphone/application_modern
  [3.] iphone/application_swift
  [4.] iphone/flipswitch_switch
  [5.] iphone/framework
  [6.] iphone/library
  [7.] iphone/preference_bundle_modern
  [8.] iphone/tool
  [9.] iphone/tool_swift
  [10.] iphone/tweak
  [11.] iPhone/xpc_service

关于Theos的使用,lz碰到了一个错误,暂时没有找到解决办法就不贴了,有知道的希望能告诉一下,非常感谢

$ make install
==> Installing…
Selecting previously unselected package com.overseasgm.test.
(Reading database ... 2890 files and directories currently installed.)
Preparing to unpack /tmp/_theos_install.deb ...
Unpacking com.overseasgm.test (0.0.1-1+debug) ...
dpkg: dependency problems prevent configuration of com.overseasgm.test:
 com.overseasgm.test depends on mobilesubstrate; however:
  Package mobilesubstrate is not configured yet.

dpkg: error processing package com.overseasgm.test (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 com.overseasgm.test
make: *** [internal-install] Error 1

相关文章

  • iOS 逆向 - 使用 dumpdecrypted 给 APP

    iOS 逆向 - 使用 dumpdecrypted 给 APP 砸壳 对 Google Sheets 进行砸壳 i...

  • iOS逆向-砸壳下(ⅩI)

    Cycript支持中文 先映射端口 Command+t新开终端页面,将.inputrc隐藏文件copy到手机的~目...

  • IOS逆向_脱壳工具:caluth、dumpdecrypted;

    1、 加壳; 2、 砸壳; 3、IOS逆向常见的砸壳工具; 1、 加壳; 1.1 概念:利用特殊的算法,对...

  • iOS逆向-砸壳上(ⅩI)

    软件脱壳,顾名思义,就是对软件加壳的逆操作,把软件上存在的壳去掉(解密)。 砸壳原理 应用加壳(加密)提交给App...

  • iOS逆向----砸壳

    操作环境 iPhone6 Plus(系统8.1)越狱机 MacBook Pro(系统10.12.5) 在越狱iPh...

  • iOS 逆向: 砸壳

    简介 所谓的砸壳, 指的是将从 App Store 上面下载的 App 进行破解的过程. 从 App Store ...

  • ios逆向-砸壳

    一、准备条件 1.越狱手机,我的手机是iphone6(12.4.1) 2.clutch软件,这个可以从github...

  • iOS逆向-砸壳

    砸壳 1.Clutch下载release版本,复制到手机/usr/bin目录.①.scp命令复制 scp -P ...

  • iOS逆向工程

    iOS逆向工程之Clutch砸壳 前言: 砸壳也可以使用别的工具 这个使用最简单 强烈推荐,其他工具比较麻烦 Cl...

  • iOS逆向工程之Clutch砸壳(图文多)

    iOS逆向工程之Clutch砸壳前言: 砸壳也可以使用别的工具 这个使用最简单 强烈推荐,其他工具比较麻烦 Clu...

网友评论

      本文标题:iOS逆向-砸壳下(ⅩI)

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