LinkSwift

(。>ᴗ•)✧《也許同類型中最好用?》系列 - 一個基於 JavaScript 的網盤檔案下載地址獲取工具✨,基於【網盤直鏈下載助手】改編 | 支援 百度網盤 / 阿里雲盤 / 中國移動雲盤 / 天翼雲盤 / 迅雷雲盤 / 夸克網盤 / UC網盤 / 123雲盤 八大平台 | 開源・自用・除廣 | 改介面・擴功能・修Bug | 既超越原版,亦是同類中最好用版本!👋

< 腳本LinkSwift的回應

評論:負評 - 腳本失效或無法使用

§
發表於:2025-06-24

The script contains a function named idontknow at the end, which appears to intentionally obfuscate a string input using a Fisher-Yates shuffle algorithm. This function is used to generate a seemingly random class name (mount = idontknow("LinkSwift")), which is then used to create a unique HTML element (). This obfuscation serves no clear functional purpose and makes the code harder to audit, potentially hiding malicious or unintended behavior.
Evidence:
Function definition:
function idontknow(input) {
let charArray = input.split("");
for (let i = charArray.length - 1; i > 0; i--) {
let j = Math.floor(Math.random() * (i + 1));
[charArray[i], charArray[j]] = [charArray[j], charArray[i]];
}
return charArray.join("");
}
Usage: let mount = idontknow("LinkSwift"); and <${mount} class="${mount}" />.

發表回覆

登入以回覆