Contents:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$pinyintable = array(); | |
$pinyintable['丂'] = 'kao'; | |
$pinyintable['丄'] = 'shang'; | |
$pinyintable['丅'] = 'xia'; | |
$pinyintable['丆'] = 'mo'; | |
$pinyintable['丏'] = 'mian'; | |
$pinyintable['丒'] = 'chou'; | |
$pinyintable['丗'] = 'shi'; | |
$pinyintable['丟'] = 'diu'; | |
$pinyintable['丠'] = 'qiu'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var CryptoJS = require('crypto-js') | |
var request = require('request-promise') | |
/* | |
* npm install crypto-js request-promise | |
* node wx_t1t_hack.js | |
*/ | |
// export function testEncription(msg, fullKey) { | |
// var fullKey = fullKey.slice(0, 16) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# lrdcq | |
# usage python2 unwxapkg.py filename | |
import sys, os | |
import struct | |
class WxapkgFile(object): | |
nameLen = 0 |