Update main.js

This commit is contained in:
smallfawn
2024-06-28 08:12:29 +08:00
committed by GitHub
parent 82b46221fa
commit 9d51594345

View File

@@ -1,4 +1,4 @@
const fs = require('fs')
const fs = require('fs')
const PluginCommon = require('./plugin/common.js')
const PluginJjencode = require('./plugin/jjencode.js')
const PluginSojson = require('./plugin/sojson.js')
@@ -7,13 +7,10 @@ const PluginObfuscator = require('./plugin/obfuscator.js')
const PluginAwsc = require('./plugin/awsc.js')
// 读取参数
let type = 'common'
let type = 'test'
let encodeFile = 'input.js'
let decodeFile = 'output.js'
for (let i = 2; i < process.argv.length; i += 2) {
if (process.argv[i] === '-t') {
type = process.argv[i + 1]
}
if (process.argv[i] === '-i') {
encodeFile = process.argv[i + 1]
}
@@ -28,23 +25,40 @@ console.log(`输出: ${decodeFile}`)
// 读取源代码
const sourceCode = fs.readFileSync(encodeFile, { encoding: 'utf-8' })
// 净化源代码
let code
if (type === 'sojson') {
code = PluginSojson(sourceCode)
} else if (type === 'sojsonv7') {
code = PluginSojsonV7(sourceCode)
} else if (type === 'obfuscator') {
code = PluginObfuscator(sourceCode)
} else if (type === 'awsc') {
code = PluginAwsc(sourceCode)
} else if (type === 'jjencode') {
code = PluginJjencode(sourceCode)
let processedCode = sourceCode;
let pluginUsed = '';
// 循环尝试不同的插件,直到源代码与处理后的代码不一致
const plugins = [
{ name: 'sojson', plugin: PluginSojson },
{ name: 'sojsonv7', plugin: PluginSojsonV7 },
{ name: 'obfuscator', plugin: PluginObfuscator },
{ name: 'awsc', plugin: PluginAwsc },
{ name: 'jjencode', plugin: PluginJjencode },
{ name: 'common', plugin: PluginCommon } // 最后一次使用通用插件
];
for (let plugin of plugins) {
const code = plugin.plugin(sourceCode);
if (code !== processedCode) {
processedCode = code;
pluginUsed = plugin.name;
break;
}
}
if (processedCode !== sourceCode) {
// 输出代码
fs.writeFile(decodeFile, processedCode, (err) => {
if (err) throw err;
console.log(`使用插件 ${pluginUsed} 成功处理并写入文件 ${decodeFile}`);
});
} else {
code = PluginCommon(sourceCode)
console.log(`所有插件处理后的代码与原代码一致,未写入文件。`);
}
// 输出代码
if (code) {
fs.writeFile(decodeFile, code, () => {})
fs.writeFile(decodeFile, code, () => { })
}