{财新网}網站參數分析

滲透逆向 · 29 天前 · 13 人浏览
{财新网}網站參數分析

可以看到需要分析的參數為一個
2024-12-19T22:57:02.png
斷點后進去,最後轉爲nodejs格式
2024-12-19T22:59:59.png


const crypto = require('crypto'); // Node.js 内置模块用于加密

function encrypt(t) {
    const key = Buffer.from("G3JH98Y8MY9GWKWG", 'utf8'); // 密钥
    const cipher = crypto.createCipheriv('aes-128-ecb', key, null); // 使用 AES-128-ECB 加密模式
    cipher.setAutoPadding(true); // 启用 PKCS7 填充

    let encrypted = cipher.update(t, 'utf8', 'base64'); // 加密输入字符串并输出为 base64
    encrypted += cipher.final('base64'); // 结束加密过程

    return encodeURIComponent(encrypted); // 对加密后的字符串进行 URL 编码
}

function encode(t) {
    return encodeURIComponent(t);
}

// 示例用法
const encrypted = encrypt('17302630121');
console.log(encrypted);
本站立足于美利堅合衆國,請讀者自覺遵守當地法律!如有違規,本站不承擔任何法律責任! This site is based in the United States of America, readers are requested to abide by local laws! If there are any violations, this site does not bear any legal responsibility! Theme Jasmine by Kent Liao