Bu aralar bu kodun peşine düştüm fakat bir türlü sitedeki veriyi çözemedim

function vipRequest(th) { if (indexAyarlar.Key == null) { var url = "/veri.php?"; $("#indexPreloader").fadeIn('slow'); cordova.plugin.http.clearCookies(); var options = { method: 'post', data: { getcksdfmnbtre: "" }, headers: { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/210100101 Firefox/76.0", } }; cordova.plugin.http.sendRequest(url, options, function (response) { try { let encrypted = response.data; let password = 'Sanane1s*-5d' let decrypted = CryptoJS.AES.decrypt(encrypted, password, { format: CryptoJSAesJson }).toString(CryptoJS.enc.Utf8) indexAyarlar.Key = JSON.parse(decrypted); GetLink(th.dataset.kanalid, th.dataset.title); } catch (e) { $("#indexPreloader").fadeOut('slow'); } }, function (response) { $("#indexPreloader").fadeOut('slow'); }); } else { GetLink(th.dataset.kanalid, th.dataset.title); } }