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}" />.

发布留言

登录以发布留言。