mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-20 01:34:55 +08:00
pc_抖音破解
This commit is contained in:
parent
d5833b7d34
commit
832c0d3ae4
@ -1147,4 +1147,12 @@ window.byted_acrawler.init({
|
|||||||
function get_ac_signature(__ac_nonce){
|
function get_ac_signature(__ac_nonce){
|
||||||
var __ac_signature = window.byted_acrawler.sign("", __ac_nonce)
|
var __ac_signature = window.byted_acrawler.sign("", __ac_nonce)
|
||||||
return __ac_signature
|
return __ac_signature
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// console.log(get_ac_signature(1))
|
||||||
|
|
||||||
|
module.exports =
|
||||||
|
{
|
||||||
|
get_ac_signature
|
||||||
|
};
|
||||||
|
|
||||||
|
18
抖音js逆向学习/pc_抖音破解/node/server.js
Normal file
18
抖音js逆向学习/pc_抖音破解/node/server.js
Normal 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")
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user