import 'reflect-metadata'; import format from 'string-template'; import { assert } from 'chai'; import { ServiceIdentifiers } from '../../../../../../src/container/ServiceIdentifiers'; import { ICryptUtils } from '../../../../../../src/interfaces/utils/ICryptUtils'; import { IInversifyContainerFacade } from '../../../../../../src/interfaces/container/IInversifyContainerFacade'; import { IObfuscatedCode } from '../../../../../../src/interfaces/source-code/IObfuscatedCode'; import { IRandomGenerator } from '../../../../../../src/interfaces/utils/IRandomGenerator'; import { AtobTemplate } from '../../../../../../src/custom-nodes/string-array-nodes/templates/string-array-calls-wrapper/AtobTemplate'; import { GlobalVariableTemplate1 } from '../../../../../../src/custom-nodes/common/templates/GlobalVariableTemplate1'; import { Rc4Template } from '../../../../../../src/custom-nodes/string-array-nodes/templates/string-array-calls-wrapper/Rc4Template'; import { StringArrayBase64DecodeNodeTemplate } from '../../../../../../src/custom-nodes/string-array-nodes/templates/string-array-calls-wrapper/StringArrayBase64DecodeNodeTemplate'; import { StringArrayCallsWrapperTemplate } from '../../../../../../src/custom-nodes/string-array-nodes/templates/string-array-calls-wrapper/StringArrayCallsWrapperTemplate'; import { StringArrayRc4DecodeNodeTemplate } from '../../../../../../src/custom-nodes/string-array-nodes/templates/string-array-calls-wrapper/StringArrayRC4DecodeNodeTemplate'; import { NO_ADDITIONAL_NODES_PRESET } from '../../../../../../src/options/presets/NoCustomNodes'; import { InversifyContainerFacade } from '../../../../../../src/container/InversifyContainerFacade'; import { JavaScriptObfuscator } from '../../../../../../src/JavaScriptObfuscatorFacade'; import { readFileAsString } from '../../../../../helpers/readFileAsString'; describe('StringArrayCallsWrapperNodeTemplate', () => { const stringArrayName: string = 'stringArrayName'; const stringArrayCallsWrapperName: string = 'stringArrayCallsWrapperName'; let cryptUtils: ICryptUtils, randomGenerator: IRandomGenerator; before(() => { const inversifyContainerFacade: IInversifyContainerFacade = new InversifyContainerFacade(); inversifyContainerFacade.load('', '', {}); cryptUtils = inversifyContainerFacade.get(ServiceIdentifiers.ICryptUtils); randomGenerator = inversifyContainerFacade.get(ServiceIdentifiers.IRandomGenerator); }); describe('Variant #1: `base64` encoding', () => { const index: string = '0x0'; const expectedDecodedValue: string = 'test1'; let decodedValue: string; before(() => { const atobPolyfill = format(AtobTemplate(), { globalVariableTemplate: GlobalVariableTemplate1() }); const atobDecodeNodeTemplate: string = format( StringArrayBase64DecodeNodeTemplate(randomGenerator), { atobPolyfill, selfDefendingCode: '', stringArrayCallsWrapperName } ); const stringArrayCallsWrapperTemplate: string = format(StringArrayCallsWrapperTemplate(), { decodeNodeTemplate: atobDecodeNodeTemplate, stringArrayCallsWrapperName, stringArrayName }); decodedValue = Function(` var ${stringArrayName} = ['${cryptUtils.btoa('test1')}']; ${stringArrayCallsWrapperTemplate} return ${stringArrayCallsWrapperName}(${index}); `)(); }); it('should correctly return decoded value', () => { assert.deepEqual(decodedValue, expectedDecodedValue); }); }); describe('Variant #2: `rc4` encoding', () => { const index: string = '0x0'; const key: string = 'key'; const expectedDecodedValue: string = 'test1'; let decodedValue: string; before(() => { const atobPolyfill = format(AtobTemplate(), { globalVariableTemplate: GlobalVariableTemplate1() }); const rc4DecodeNodeTemplate: string = format( StringArrayRc4DecodeNodeTemplate(randomGenerator), { atobPolyfill, rc4Polyfill: Rc4Template(), selfDefendingCode: '', stringArrayCallsWrapperName } ); const stringArrayCallsWrapperTemplate: string = format(StringArrayCallsWrapperTemplate(), { decodeNodeTemplate: rc4DecodeNodeTemplate, stringArrayCallsWrapperName, stringArrayName }); decodedValue = Function(` var ${stringArrayName} = ['${cryptUtils.btoa(cryptUtils.rc4('test1', key))}']; ${stringArrayCallsWrapperTemplate} return ${stringArrayCallsWrapperName}('${index}', '${key}'); `)(); }); it('should correctly return decoded value', () => { assert.deepEqual(decodedValue, expectedDecodedValue); }); }); describe('Prevailing kind of variables', () => { describe('`var` kind', () => { let obfuscatedCode: string, stringArrayCallsWrapperRegExp: RegExp = /var (_0x(\w){4}) *= *function/; beforeEach(() => { const code: string = readFileAsString(__dirname + '/fixtures/prevailing-kind-of-variables-var.js'); const obfuscatedCodeObject: IObfuscatedCode = JavaScriptObfuscator.obfuscate( code, { ...NO_ADDITIONAL_NODES_PRESET, stringArray: true, stringArrayThreshold: 1 } ); obfuscatedCode = obfuscatedCodeObject.getObfuscatedCode(); }); it('Should return correct kind of variables for string array calls wrapper', () => { assert.match(obfuscatedCode, stringArrayCallsWrapperRegExp); }); it('Should does not break on obfuscating', () => { assert.doesNotThrow(() => obfuscatedCode); }); }); describe('`const` kind', () => { let obfuscatedCode: string, stringArrayCallsWrapperRegExp: RegExp = /const (_0x(\w){4}) *= *function/; beforeEach(() => { const code: string = readFileAsString(__dirname + '/fixtures/prevailing-kind-of-variables-const.js'); const obfuscatedCodeObject: IObfuscatedCode = JavaScriptObfuscator.obfuscate( code, { ...NO_ADDITIONAL_NODES_PRESET, stringArray: true, stringArrayThreshold: 1 } ); obfuscatedCode = obfuscatedCodeObject.getObfuscatedCode(); }); it('Should return correct kind of variables for string array calls wrapper', () => { assert.match(obfuscatedCode, stringArrayCallsWrapperRegExp); }); it('Should does not break on obfuscating', () => { assert.doesNotThrow(() => obfuscatedCode); }); }); describe('`let` kind', () => { let obfuscatedCode: string, stringArrayCallsWrapperRegExp: RegExp = /const (_0x(\w){4}) *= *function/; beforeEach(() => { const code: string = readFileAsString(__dirname + '/fixtures/prevailing-kind-of-variables-let.js'); const obfuscatedCodeObject: IObfuscatedCode = JavaScriptObfuscator.obfuscate( code, { ...NO_ADDITIONAL_NODES_PRESET, stringArray: true, stringArrayThreshold: 1 } ); obfuscatedCode = obfuscatedCodeObject.getObfuscatedCode(); }); it('Should return correct kind of variables for string array calls wrapper', () => { assert.match(obfuscatedCode, stringArrayCallsWrapperRegExp); }); it('Should does not break on obfuscating', () => { assert.doesNotThrow(() => obfuscatedCode); }); }); }); });