苹果ipa文件中信息的提取与加密文…

                              

                        苹果ipa文件中信息的提取与加密文件的反编译

 
 

一.info.plist文件的反编译与提取信息

    在ipa文件中,有一个info.plist文件,这是一个xml格式的文件,ipa程序的程序名称,icon图标名称等等信息都记录在其中,可是info.plist在ipa打包的时候被加密了,怎么用程序打开呢?这里提供一个Java程序的jar包 http://download.csdn.net/detail/caoyuan10036/4076690

       这样使用就可以实现info.plist的反编译

[java] view plain copy print ?
  1. File file = new File("d:\\angryInfo.plist");  //需要反编译的plist文件   
  2. File file1 = new File("d:\\angryInfo1.plist");  //生成解密过的plist文件   
  3.     
  4. PropertyListParser.convertToXml(file, file1) ;    
File file = new File("d:\\angryInfo.plist"); //需要反编译的plist文件 File file1 = new File("d:\\angryInfo1.plist"); //生成解密过的plist文件 PropertyListParser.convertToXml(file, file1) ;

二.icon.png的反编译

    同info.plist文件一样,ipa打包时,icon图标也被加密了,这里也提供一个jar包http://download.csdn.net/detail/caoyuan10036/4076690,这个jar包可以实现icon图标转换成Windows下可以看的图片了.具体方法在上述地址中有例子程序。


三.iTunesArtwork

   这个文件没有扩展名,自己加上.png就可显示图片了,这是ipa程序的大图标.

 
 
苹果ipa文件中信息的提取与加密文件的反编译 - yangle20081982 - yangle20081982的官方博客
请问 对于ipa里面的nib文件现在有没有办法反编译呢,或者这个原理是什么呢

你可能感兴趣的:(苹果ipa文件中信息的提取与加密文…)