javascript-obfuscator JS混肴
- 混肴的作用
- 预览图
- mix.sh混肴脚本
- config.json
混肴的作用
防止浏览器的js/html/css代码被他人盗用。下述只实现了js的混肴。html/css可仿照js逻辑实现
预览图
mix.sh混肴脚本
#!/bin/bash # 检查 terser 是否可用
if ! command -v javascript-obfuscator &> /dev/null; then echo "javascript-obfuscator 不可用,请安装后再运行此脚本。执行安装:npm install -g javascript-obfuscator" exit 1
fi # 获取当前目录下的所有子目录(只考虑一级子目录)并自然排序
dirs=($(find . -maxdepth 1 -mindepth 1 -type d -exec basename {} \; | sort)) # 显示目录列表并让用户选择
for (( i=0; i<${#dirs[@]}; i++ )); do echo "$((i + 1)). ${dirs[$i]}"
done
read -p "请选择js存储目录(1-${#dirs[@]}):" choice1 # 检查输入是否有效
if ! [[ "$choice1" =~ ^[1-9][0-9]*$ ]] || [[ "$choice1" -gt ${#dirs[@]} ]]; then echo "无效的输入,请重新运行脚本" exit 1
fi # 转换为0-based索引
choice1=$((choice1-1))
selected_dir="./${dirs[$choice1]}" # 第二步:列出目录下的js文件并自然排序
files=($(find "$selected_dir/js" -type f -name "*.js" | sort)) # 显示文件列表并让用户选择
for (( i=0; i<${#files[@]}; i++ )); do filename=$(basename -- "${files[$i]}") echo "$(($i+1))). ${filename}"
done
read -p "请选择要混肴的js(1-${#files[@]})" choice2 # 检查输入是否有效
if ! [[ "$choice2" =~ ^[1-9][0-9]*$ ]] || [[ "$choice2" -gt ${#files[@]} ]]; then echo "无效的输入,请重新运行脚本" exit 1
fi # 转换为0-based索引
choice2=$((choice2-1))
full_file_path="${files[$choice2]}"
echo "混肴的js路径:$full_file_path"
# 第三步:执行混淆并保存到新位置
dir_part="${full_file_path%/*}" # 移除最后一个 / 及其后的内容
dir_part="${dir_part#./}" # 如果需要,移除开头的 ./ output_dir="./copy/$dir_part"
mkdir -p "$output_dir" # 确保目录存在
output_file="./copy/${full_file_path#./}" #去掉./前缀javascript-obfuscator "$full_file_path" --config "./config.json" --output "$output_file"echo "混淆后的文件已保存到:$output_file"#目录结构必须是/主目录/js/*.js
config.json
{ "compact": true, "mangle": true, "controlFlowFlattening": false, "numbersToExpressions": false, "splitStrings": false, "stringArray": false, "stringArrayThreshold": 0.75, "simplify": true, "deadCodeInjection": false, "debugProtection": false, "debugProtectionInterval": 0, "selfDefending": false, "reservedNames": [], "transformObjectKeys": true, "reservedStrings": [], "rotateStringArray": true, "renameGlobals": false, "seed": 0
}