forked from javascript-obfuscator/javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaScriptObfuscatorCLI.ts
More file actions
306 lines (270 loc) · 10.6 KB
/
JavaScriptObfuscatorCLI.ts
File metadata and controls
306 lines (270 loc) · 10.6 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import * as commander from 'commander';
import * as path from 'path';
import { TInputCLIOptions } from '../types/options/TInputCLIOptions';
import { TInputOptions } from '../types/options/TInputOptions';
import { TObject } from '../types/TObject';
import { IInitializable } from '../interfaces/IInitializable';
import { IObfuscationResult } from '../interfaces/IObfuscationResult';
import { initializable } from '../decorators/Initializable';
import { DEFAULT_PRESET } from '../options/presets/Default';
import { ArraySanitizer } from './sanitizers/ArraySanitizer';
import { BooleanSanitizer } from './sanitizers/BooleanSanitizer';
import { SourceMapModeSanitizer } from './sanitizers/SourceMapModeSanitizer';
import { StringArrayEncodingSanitizer } from './sanitizers/StringArrayEncodingSanitizer';
import { CLIUtils } from './utils/CLIUtils';
import { JavaScriptObfuscator } from '../JavaScriptObfuscator';
export class JavaScriptObfuscatorCLI implements IInitializable {
/**
* @type {string[]}
*/
private readonly arguments: string[];
/**
* @type {string[]}
*/
private readonly rawArguments: string[];
/**
* @type {commander.CommanderStatic}
*/
@initializable()
private commands: commander.CommanderStatic;
/**
* @type {TInputCLIOptions}
*/
@initializable()
private inputCLIOptions: TInputCLIOptions;
/**
* @type {string}
*/
@initializable()
private inputPath: string;
/**
* @type {string}
*/
@initializable()
private sourceCode: string = '';
/**
* @param {string[]} argv
*/
constructor (argv: string[]) {
this.rawArguments = argv;
this.arguments = argv.slice(2);
}
/**
* @param {TObject} options
* @returns {TInputOptions}
*/
private static filterOptions (options: TObject): TInputOptions {
const filteredOptions: TInputOptions = {};
for (const option in options) {
if (!options.hasOwnProperty(option) || options[option] === undefined) {
continue;
}
filteredOptions[option] = options[option];
}
return filteredOptions;
}
public initialize (): void {
this.inputPath = this.arguments[0] || '';
this.commands = <commander.CommanderStatic>(new commander.Command());
this.configureCommands();
this.configureHelp();
this.inputCLIOptions = this.commands.opts();
}
public run (): void {
const canShowHelp: boolean = !this.arguments.length || this.arguments.includes('--help');
if (canShowHelp) {
return this.commands.outputHelp();
}
this.sourceCode = CLIUtils.readSourceCode(this.inputPath);
this.processSourceCode();
}
/**
* @returns {TInputOptions}
*/
private buildOptions (): TInputOptions {
const inputCLIOptions: TInputOptions = JavaScriptObfuscatorCLI.filterOptions(this.inputCLIOptions);
const configFilePath: string|undefined = this.inputCLIOptions.config;
const configFileLocation: string = configFilePath ? path.resolve(configFilePath, '.') : '';
const configFileOptions: TInputOptions = configFileLocation ? CLIUtils.getUserConfig(configFileLocation) : {};
return {
...DEFAULT_PRESET,
...configFileOptions,
...inputCLIOptions
};
}
private configureCommands (): void {
this.commands
.usage('<inputPath> [options]')
.version(
CLIUtils.getPackageConfig().version,
'-v, --version'
)
.option(
'-o, --output <path>',
'Output path for obfuscated code'
)
.option(
'--compact <boolean>',
'Disable one line output code compacting',
BooleanSanitizer
)
.option(
'--config <boolean>',
'Name of js / json config file'
)
.option(
'--controlFlowFlattening <boolean>',
'Enables control flow flattening',
BooleanSanitizer
)
.option(
'--controlFlowFlatteningThreshold <number>',
'The probability that the control flow flattening transformation will be applied to the node',
parseFloat
)
.option(
'--deadCodeInjection <boolean>',
'Enables dead code injection',
BooleanSanitizer
)
.option(
'--deadCodeInjectionThreshold <number>',
'The probability that the dead code injection transformation will be applied to the node',
parseFloat
)
.option(
'--debugProtection <boolean>',
'Disable browser Debug panel (can cause DevTools enabled browser freeze)',
BooleanSanitizer
)
.option(
'--debugProtectionInterval <boolean>',
'Disable browser Debug panel even after page was loaded (can cause DevTools enabled browser freeze)',
BooleanSanitizer
)
.option(
'--disableConsoleOutput <boolean>',
'Allow console.log, console.info, console.error and console.warn messages output into browser console',
BooleanSanitizer
)
.option(
'--domainLock <list>',
'Blocks the execution of the code in domains that do not match the passed RegExp patterns (comma separated)',
ArraySanitizer
)
.option(
'--log <boolean>', 'Enables logging of the information to the console',
BooleanSanitizer
)
.option(
'--mangle <boolean>', 'Enables mangling of variable names',
BooleanSanitizer
)
.option(
'--reservedNames <list>',
'Disable obfuscation of variable names, function names and names of function parameters that match the passed RegExp patterns (comma separated)',
ArraySanitizer
)
.option(
'--renameGlobals <boolean>', 'Allows to enable obfuscation of global variable and function names with declaration.',
BooleanSanitizer
)
.option(
'--rotateStringArray <boolean>', 'Disable rotation of unicode array values during obfuscation',
BooleanSanitizer
)
.option(
'--seed <number>',
'Sets seed for random generator. This is useful for creating repeatable results.',
parseFloat
)
.option(
'--selfDefending <boolean>',
'Disables self-defending for obfuscated code',
BooleanSanitizer
)
.option(
'--sourceMap <boolean>',
'Enables source map generation',
BooleanSanitizer
)
.option(
'--sourceMapBaseUrl <string>',
'Sets base url to the source map import url when `--sourceMapMode=separate`'
)
.option(
'--sourceMapFileName <string>',
'Sets file name for output source map when `--sourceMapMode=separate`'
)
.option(
'--sourceMapMode <string> [inline, separate]',
'Specify source map output mode',
SourceMapModeSanitizer
)
.option(
'--stringArray <boolean>',
'Disables gathering of all literal strings into an array and replacing every literal string with an array call',
BooleanSanitizer
)
.option(
'--stringArrayEncoding <boolean|string> [true, false, base64, rc4]',
'Encodes all strings in strings array using base64 or rc4 (this option can slow down your code speed',
StringArrayEncodingSanitizer
)
.option(
'--stringArrayThreshold <number>',
'The probability that the literal string will be inserted into stringArray (Default: 0.8, Min: 0, Max: 1)',
parseFloat
)
.option(
'--unicodeEscapeSequence <boolean>',
'Allows to enable/disable string conversion to unicode escape sequence',
BooleanSanitizer
)
.parse(this.rawArguments);
}
private configureHelp (): void {
this.commands.on('--help', () => {
console.log(' Examples:\n');
console.log(' %> javascript-obfuscator in.js --compact true --selfDefending false');
console.log(' %> javascript-obfuscator in.js --output out.js --compact true --selfDefending false');
console.log('');
});
}
private processSourceCode (): void {
const options: TInputOptions = this.buildOptions();
const outputCodePath: string = CLIUtils.getOutputCodePath(this.inputCLIOptions.output, this.inputPath);
if (options.sourceMap) {
this.processSourceCodeWithSourceMap(outputCodePath, options);
} else {
this.processSourceCodeWithoutSourceMap(outputCodePath, options);
}
}
/**
* @param {string} outputCodePath
* @param {TInputOptions} options
*/
private processSourceCodeWithoutSourceMap (outputCodePath: string, options: TInputOptions): void {
const obfuscatedCode: string = JavaScriptObfuscator.obfuscate(this.sourceCode, options).getObfuscatedCode();
CLIUtils.writeFile(outputCodePath, obfuscatedCode);
}
/**
* @param {string} outputCodePath
* @param {TInputOptions} options
*/
private processSourceCodeWithSourceMap (outputCodePath: string, options: TInputOptions): void {
const outputSourceMapPath: string = CLIUtils.getOutputSourceMapPath(
outputCodePath,
options.sourceMapFileName || ''
);
options = {
...options,
sourceMapFileName: path.basename(outputSourceMapPath)
};
const obfuscationResult: IObfuscationResult = JavaScriptObfuscator.obfuscate(this.sourceCode, options);
CLIUtils.writeFile(outputCodePath, obfuscationResult.getObfuscatedCode());
if (options.sourceMapMode === 'separate' && obfuscationResult.getSourceMap()) {
CLIUtils.writeFile(outputSourceMapPath, obfuscationResult.getSourceMap());
}
}
}