在iphone上安装GCC编译环境

前几天测试了一下iphone上的那个短信漏洞,由于iphone4s的基带版本比较高,无法通过工具破解,所以在4s上发送欺骗短信暂时不行。

老外给出的命令行下发送工具sendrawpdu,强调了需要在iphone4上面运行,由于需要编译,我又没有mac系统,只能在手机上编译了,应该这套安装包是ios设备可以通用的。

iphone with gcc
基本上是木有什么难度的,相信手机ssh大家都会了吧,不会可以参考http://www.nigesb.com/install-metasploit-and-nmap-on-iphone4s.html。ssh上去之后把我们需要的安装包传上去,全都打包了,地址如下:

http://pan.baidu.com/share/link?shareid=125151&uk=2905237318

传上去以后用命令行解压一下,进入解压出来的目录,执行命令批量安装:

dpkg –i fake-libgcc_1.0_iphoneos-arm.deb

运行完之后基本上是没问题了,测试一下吧,写个简单的程序hello.c:

#include <stdio.h> 
int main() 
{ 
printf("hello, world\n"); 
return 0; 
}

然后

gcc –o hello hello.c
./hello
本文标题:在iphone上安装GCC编译环境
本文链接:https://www.nigesb.com/setup-gcc-environment-for-iphone.html
订阅本站:http://www.nigesb.com/feed
转载请注明来源,如果喜欢本站可以Feed订阅本站。

发表评论?

2 条评论。

  1. 其实一代也可以的不过硬件要换成tty.debug

发表评论


注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>