当前位置:首页 > PHP教程 > php高级应用 > 列表

php微信小程序解包过程实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2022-04-20 12:03:36 浏览: 评论:0 

这篇文章主要介绍了php微信小程序解包过程实例详解,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下。

这个解包只能看个大概

1.找到小程序压缩包

1.1、手机root或安装模拟器(我用的是夜神)

1.2、在模拟器上安装微信(用android5系统的模拟器,低版本小程序容易打不开)

1.3、打开登陆微信后,打开小程序

1.4、打开模拟器自带的文件管理器来到目录:/data/data/com.tencent.mm/MicroMsg/{{一串32位的16进制字符串文件夹}}/appbrand/pkg/

1.5、里面有很多wxapkg文件,找到最新修改日期的文件比如 -357038350_91.wxapkg,前面打勾选中

1.6、文件管理器回到/mnt/shared/Other目录,粘贴即可,打开安卓模拟器上我的电脑 =〉打开电脑文件夹找到粘贴的文件-357038350_91.wxapkg 夜神教程链接:跳转查看

2.对压缩包解包

详细参考:https://codechina.csdn.net/mirrors/leo9960/wechat-app-unpack?utm_source=csdn_github_accelerator

我用的php类:

使用方法:cmd =>cd php文件目录 =〉php wx_unpak.php 357038350_91.wxapkg

我主要是想用其中的一些图片,很多图片都被base64了放到js(app-service.js)和样式(app-wxss.js)文件中了;需要我们匹配组装一下

  1. <?php 
  2. $str = file_get_contents('_-357038350_97.wxapkg.unpacked/app-service.js'); 
  3. $preg = '/(data:image.*?)\"/'
  4. $len = strlen('data:image/png;base64,'); 
  5. if(preg_match_all($preg$str$arr)){ 
  6.   foreach($arr[1] as $k => $img){ 
  7.     file_put_contents('./images/'.$k.'.png',base64_decode(substr($img,$len))); 
  8.     //echo substr($img,$len);exit; 
  9.   } 
  10. else { 
  11.   echo 'no'
  12.  
  13. $str = file_get_contents('_-357038350_97.wxapkg.unpacked/app-wxss.js'); 
  14. $preg = '/\((data:image.*?)\)/'
  15. $len = strlen('data:image/png;base64,'); 
  16. if(preg_match_all($preg$str$arr)){ 
  17.   foreach($arr[1] as $k => $img){ 
  18.     file_put_contents('./images/a2_'.$k.'.png',base64_decode(substr($img,$len))); 
  19.     //echo substr($img,$len);exit; 
  20.   } 
  21. else { 
  22.   echo 'no'

wx_unpak.php

  1. <?php 
  2. /** 
  3. 源文件目录 
  4.   /data/data/com.tencent.mm/MicroMsg/{{一串32位的16进制字符串文件夹}}/appbrand/pkg/ 
  5.   /data/data/com.eg.android.AlipayGphone, 在files/nebulaInstallApps/目录下存储了所有加载过的小程序 
  6.  * [php] /path/to/unpack-wxapkg.php <xxx.wxapkg> 
  7.  * php unpak.php _1123949441_351.wxapkg 
  8.  */ 
  9.  
  10. function unpack_wxapkg($file$targetDir
  11.   if (!is_dir($targetDir)){ 
  12.     mkdir($targetDir); 
  13.   } 
  14.  
  15.   echo "Reading file.\n"
  16.   $file = file_get_contents($file); 
  17.   $ptr = 18; 
  18.  
  19.   $headerStruct = new StructDef([ 
  20.     'mask1' => 'ushort'
  21.     'info1' => 'ulong'
  22.     'indexInfoLength' => 'ulong'
  23.     'bodyInfoLength' => 'ushort'
  24.     'mask2' => 'ushort'
  25.     'fileCount' => 'ulong'
  26.   ]); 
  27.  
  28.   echo "Parsing file header...\n"
  29.  
  30.   $header = $headerStruct->unpack($file); 
  31. //  print_r(['header' => $header]); 
  32.  
  33.   $unpackULong = function () use (&$file, &$ptr) { 
  34.     $ret = unpack_ulong(substr($file$ptr, 4)); 
  35.     $ptr += 4; 
  36.     return $ret
  37.   }; 
  38.  
  39.   $unpackUShort = function () use (&$file, &$ptr) { 
  40.     $ret = unpack_ushort(substr($file$ptr, 2)); 
  41.     $ptr += 2; 
  42.     return $ret
  43.   }; 
  44.  
  45.  
  46.   $unpackStr = function ($lenuse (&$file, &$ptr) { 
  47.     $ret = substr($file$ptr$len); 
  48.     $ptr += $len
  49.     return $ret
  50.   }; 
  51.  
  52.  
  53.   $fileCount = $header['fileCount']; 
  54.  
  55.   echo "Got $fileCount files.\n"
  56.  
  57.   $unpackedFiles = []; 
  58.  
  59.   for ($i = 0; $i < $fileCount$i++) { 
  60.     $nameLength = $unpackULong(); 
  61.     $f = [ 
  62.       'nameLength' => $nameLength
  63.       'name' => $unpackStr($nameLength), 
  64.       'offset' => $unpackULong(), 
  65.       'size' => $unpackULong(), 
  66.     ]; 
  67.  
  68.     echo "Unpacking file {$f['name']} ({$f['size']}bytes)...\n"
  69.  
  70.     $f['content'] = substr($file$f['offset'], $f['size']); 
  71.     $unpackedFiles[] = $f
  72.  
  73.     $destFile = $targetDir . $f['name']; 
  74.     $destDir = dirname($destFile); 
  75.     if (!is_dir($destDir)){ 
  76.       mkdir($destDir, 0777, true); 
  77.     } 
  78.  
  79.     file_put_contents($targetDir . $f['name'], $f['content']); 
  80.   } 
  81.  
  82.  
  83. //  print_r(['unpackedFiles' => $unpackedFiles]); 
  84.  
  85.  
  86.  
  87.   echo "All done.\n"
  88.  
  89. function unpack_ulong($str
  90.   $x = unpack('N'$str); 
  91.   return $x[1]; 
  92.  
  93. function unpack_ushort($str
  94.   $x = unpack('n'$str); 
  95.   return $x[1]; 
  96.  
  97. class StructDef 
  98.   protected $def
  99.   protected $unpackFormat
  100.  
  101.   public function __construct($def
  102.   { 
  103.     $this->def = $def
  104.     $this->unpackFormat = self::convertStructDefToUnpackFormat($def); 
  105.   } 
  106.  
  107.   public function unpack($data
  108.   { 
  109.     return unpack($this->unpackFormat, $data); 
  110.   } 
  111.  
  112.   protected static function convertStructDefToUnpackFormat($def
  113.   { 
  114.     $defTypeToUnpackType = [ 
  115.       'byte' => 'C'
  116.       'uchar' => 'C'
  117.       'u8' => 'C'
  118.       'ushort' => 'n'
  119.       'u16' => 'n'
  120.       'ulong' => 'N'
  121.       'u32' => 'N'
  122.     ]; 
  123.  
  124.     $ret = []; 
  125.     foreach ($def as $key => $type) { 
  126.       $ret[] = $defTypeToUnpackType[$type] . $key
  127.     } 
  128.  
  129.     return implode('/'$ret); 
  130.   } 
  131.  
  132. $packageFile = $argv[1]; 
  133.  
  134. //支持目录下文件批量解压 
  135.  if (is_dir($packageFile)){ 
  136.   $handle = opendir($packageFile); 
  137.   if($handle){ 
  138.     while(($fl = readdir($handle)) !== false){ 
  139.       $temp = $packageFile.DIRECTORY_SEPARATOR.$fl
  140.       //如果不加 $fl!='.' && $fl != '..' 则会造成把$dir的父级目录也读取出来 
  141.       if(is_file($temp)){ 
  142.         if($fl!='.' && $fl != '..'){ 
  143.           $targetDir = $temp . '.unpacked'
  144.           unpack_wxapkg($temp$targetDir); 
  145.         } 
  146.       } 
  147.     } 
  148.   }  
  149. }else if (is_file($packageFile)){ 
  150.   $targetDir = $packageFile . '.unpacked'
  151.   unpack_wxapkg($packageFile$targetDir); 
  152. }else
  153.   echo <<<HELP 
  154. Usage: 
  155.   [php] {$argv[0]} <xxx.wxapkg> 
  156.   - Unpack the `xxx.wxapkg` to `xxx.wxapkg.unpacked` directory. 
  157. HELP; 
  158.  
  159.   exit(1); 
  160.  
  161. exit(0);

Tags: php微信小程序解包过程

分享到: