mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-04 23:03:48 +08:00
fastmoss Fm-Sign加密字段破解
This commit is contained in:
parent
52ba10e568
commit
bc4c5c5df6
36
fastmoss/test.js
Normal file
36
fastmoss/test.js
Normal file
@ -0,0 +1,36 @@
|
||||
const crypto = require('crypto');
|
||||
|
||||
function encryptMD5(data) {
|
||||
const hash = crypto.createHash('md5');
|
||||
hash.update(data);
|
||||
return hash.digest('hex');
|
||||
}
|
||||
|
||||
function encryptParams(g) {
|
||||
var O = {
|
||||
"salt": "asjdfoaur3ur829322"
|
||||
}
|
||||
, X = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : ""
|
||||
, J = Object.keys(g).sort()
|
||||
, me = "";
|
||||
J.forEach(function (Rn) {
|
||||
me += Rn + g[Rn] + O.salt
|
||||
});
|
||||
|
||||
for (var Ce = encryptMD5(me + X), Ze = "", Sn = 0, Ke = Ce.length - 1; Sn < Ce.length && !(Sn >= Ke); Sn++,
|
||||
Ke--)
|
||||
Ze += (parseInt(Ce[Sn], 16) ^ parseInt(Ce[Ke], 16)).toString(16);
|
||||
var dn = Ze + Ce.substring(Sn);
|
||||
return dn
|
||||
}
|
||||
|
||||
|
||||
g = {
|
||||
"_time": 1720545957, // Math.floor(Date.now() / 1000) 时间戳
|
||||
"cnonce": 53701680 // Math.floor(10000000 + Math.random() * 90000000) 随机数
|
||||
};
|
||||
|
||||
da = ''; // 有点接口是带d加盐的{"type":{"headers":{"lang":"ZH_CN"}}}
|
||||
|
||||
console.log(encryptParams(g, da));
|
||||
|
Loading…
Reference in New Issue
Block a user