-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
94 lines (92 loc) · 2.79 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
* @file fis-optimizer-js-obfuscator
* @author [email protected]
*/
var JavaScriptObfuscator = require('javascript-obfuscator');
module.exports = function (content, file, conf) {
if (conf.obfuscatorLeval) {
if (conf.obfuscatorLeval === 'high') {
// High obfuscation, low performance
conf = Object.assign(
{
compact: true,
controlFlowFlattening: true,
controlFlowFlatteningThreshold: 1,
deadCodeInjection: true,
deadCodeInjectionThreshold: 1,
debugProtection: true,
debugProtectionInterval: true,
disableConsoleOutput: true,
identifierNamesGenerator: 'hexadecimal',
log: false,
renameGlobals: false,
rotateStringArray: true,
selfDefending: true,
stringArray: true,
stringArrayEncoding: 'rc4',
stringArrayThreshold: 1,
transformObjectKeys: true,
unicodeEscapeSequence: false
},
conf
);
} else if (conf.obfuscatorLeval === 'medium') {
// Medium obfuscation, optimal performance
conf = Object.assign(
{
compact: true,
controlFlowFlattening: true,
controlFlowFlatteningThreshold: 0.75,
deadCodeInjection: true,
deadCodeInjectionThreshold: 0.4,
debugProtection: false,
debugProtectionInterval: false,
disableConsoleOutput: true,
identifierNamesGenerator: 'hexadecimal',
log: false,
renameGlobals: false,
rotateStringArray: true,
selfDefending: true,
stringArray: true,
stringArrayEncoding: 'base64',
stringArrayThreshold: 0.75,
transformObjectKeys: true,
unicodeEscapeSequence: false
},
conf
);
} else if (conf.obfuscatorLeval === 'low') {
// Low obfuscation, High performance
conf = Object.assign(
{
compact: true,
controlFlowFlattening: false,
deadCodeInjection: false,
debugProtection: false,
debugProtectionInterval: false,
disableConsoleOutput: true,
identifierNamesGenerator: 'hexadecimal',
log: false,
renameGlobals: false,
rotateStringArray: true,
selfDefending: true,
stringArray: true,
stringArrayEncoding: false,
stringArrayThreshold: 0.75,
unicodeEscapeSequence: false
},
conf
);
}
}
try {
var obfuscationResult = JavaScriptObfuscator.obfuscate(content, conf);
content = obfuscationResult.getObfuscatedCode();
} catch (e) {
fis.log.error(
'Got Error ' + e.message + ' while obfuscator ' + file.subpath
);
fis.log.debug(e.stack);
}
return content;
};