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
| /* | |
| * Recommend run with node v8.9.x or higher version | |
| * npm install lodash crypto-js request-promise request | |
| * node hack.js | |
| */ | |
| const version = 5 // the version of t1t | |
| const score = 370 // the score you wanna get | |
| const playTimeSeconds = score * 0.01 // simulate the playing time (seconds) |
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
| // ==UserScript== | |
| // @name weixin_tiaotiao | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://mp.weixin.qq.com/ | |
| // @grant GM_xmlhttpRequest | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/aes.js |
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
| //刷帖子抢楼 | |
| var louceng = 256; | |
| var postid = 400319; | |
| var times = 0; | |
| var timer1; | |
| var isfast = false; | |
| var isveryfast = false; |