pc_抖音破解

This commit is contained in:
aiyingfeng 2023-08-02 20:57:50 +08:00
parent d5833b7d34
commit 832c0d3ae4
2 changed files with 27 additions and 1 deletions

View File

@ -1148,3 +1148,11 @@ function get_ac_signature(__ac_nonce){
var __ac_signature = window.byted_acrawler.sign("", __ac_nonce)
return __ac_signature
}
// console.log(get_ac_signature(1))
module.exports =
{
get_ac_signature
};

View File

@ -0,0 +1,18 @@
const express = require('express');
const app = express();
const encryption = require("./_ac_signature");
var bodyParser = require('body-parser');
app.use(bodyParser());
app.post('/_ac_signature', function (req, res) {
let result = '';
let _ac_nonce = req.body._ac_nonce;
result = encryption.get_ac_signature(_ac_nonce);
res.send(result.toString());
});
app.listen(3005, () => {
console.log("开启服务,端口 3005")
});