我必须从这个javascript中找到密钥。
function generateKey() {
var i = 1;
var x = 64;
var n = 5493;
while (i <= 25) {
x = (x * i) % n;
i++;
}
key = "flag_" + Math.abs(x);
}
generateKey();
// Encode the message using the 'key'
function encode() {
var input = $("#inputmessage").val();
var output = CryptoJS.AES.encrypt(input, key);
$("#outputmessage").val(output);
}
&#13;