123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- import { inject, injectable, } from 'inversify';
- import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
- import { TIdentifierNamesGeneratorFactory } from '../../types/container/generators/TIdentifierNamesGeneratorFactory';
- import { TStatement } from '../../types/node/TStatement';
- import { IEscapeSequenceEncoder } from '../../interfaces/utils/IEscapeSequenceEncoder';
- import { IOptions } from '../../interfaces/options/IOptions';
- import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator';
- import { ICustomNodeFormatter } from '../../interfaces/custom-nodes/ICustomNodeFormatter';
- import { ObfuscationTarget } from '../../enums/ObfuscationTarget';
- import { StringArrayEncoding } from '../../enums/StringArrayEncoding';
- import { initializable } from '../../decorators/Initializable';
- import { NO_ADDITIONAL_NODES_PRESET } from '../../options/presets/NoCustomNodes';
- import { AtobTemplate } from '../../templates/AtobTemplate';
- import { GlobalVariableNoEvalTemplate } from '../../templates/GlobalVariableNoEvalTemplate';
- import { Rc4Template } from '../../templates/Rc4Template';
- import { SelfDefendingTemplate } from '../../templates/string-array-nodes/string-array-calls-wrapper/SelfDefendingTemplate';
- import { StringArrayBase64DecodeNodeTemplate } from '../../templates/string-array-nodes/string-array-calls-wrapper/StringArrayBase64DecodeNodeTemplate';
- import { StringArrayCallsWrapperTemplate } from '../../templates/string-array-nodes/string-array-calls-wrapper/StringArrayCallsWrapperTemplate';
- import { StringArrayRc4DecodeNodeTemplate } from '../../templates/string-array-nodes/string-array-calls-wrapper/StringArrayRC4DecodeNodeTemplate';
- import { AbstractCustomNode } from '../AbstractCustomNode';
- import { JavaScriptObfuscator } from '../../JavaScriptObfuscatorFacade';
- import { NodeUtils } from '../../node/NodeUtils';
- @injectable()
- export class StringArrayCallsWrapper extends AbstractCustomNode {
- /**
- * @type {IEscapeSequenceEncoder}
- */
- private readonly escapeSequenceEncoder: IEscapeSequenceEncoder;
- /**
- * @type {string}
- */
- @initializable()
- private stringArrayName!: string;
- /**
- * @type {string}
- */
- @initializable()
- private stringArrayCallsWrapperName!: string;
- /**
- * @param {TIdentifierNamesGeneratorFactory} identifierNamesGeneratorFactory
- * @param {ICustomNodeFormatter} customNodeFormatter
- * @param {IRandomGenerator} randomGenerator
- * @param {IOptions} options
- * @param {IEscapeSequenceEncoder} escapeSequenceEncoder
- */
- public constructor (
- @inject(ServiceIdentifiers.Factory__IIdentifierNamesGenerator)
- identifierNamesGeneratorFactory: TIdentifierNamesGeneratorFactory,
- @inject(ServiceIdentifiers.ICustomNodeFormatter) customNodeFormatter: ICustomNodeFormatter,
- @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator,
- @inject(ServiceIdentifiers.IOptions) options: IOptions,
- @inject(ServiceIdentifiers.IEscapeSequenceEncoder) escapeSequenceEncoder: IEscapeSequenceEncoder
- ) {
- super(identifierNamesGeneratorFactory, customNodeFormatter, randomGenerator, options);
- this.escapeSequenceEncoder = escapeSequenceEncoder;
- }
- /**
- * @param {string} stringArrayName
- * @param {string} stringArrayCallsWrapperName
- */
- public initialize (
- stringArrayName: string,
- stringArrayCallsWrapperName: string
- ): void {
- this.stringArrayName = stringArrayName;
- this.stringArrayCallsWrapperName = stringArrayCallsWrapperName;
- }
- /**
- * @param {string} nodeTemplate
- * @returns {TStatement[]}
- */
- protected getNodeStructure (nodeTemplate: string): TStatement[] {
- return NodeUtils.convertCodeToStructure(nodeTemplate);
- }
- /**
- * @returns {string}
- */
- protected getNodeTemplate (): string {
- const decodeNodeTemplate: string = this.getDecodeStringArrayTemplate();
- return JavaScriptObfuscator.obfuscate(
- this.customNodeFormatter.formatTemplate(StringArrayCallsWrapperTemplate(), {
- decodeNodeTemplate,
- stringArrayCallsWrapperName: this.stringArrayCallsWrapperName,
- stringArrayName: this.stringArrayName
- }),
- {
- ...NO_ADDITIONAL_NODES_PRESET,
- identifierNamesGenerator: this.options.identifierNamesGenerator,
- identifiersDictionary: this.options.identifiersDictionary,
- seed: this.randomGenerator.getRawSeed()
- }
- ).getObfuscatedCode();
- }
- /**
- * @returns {string}
- */
- private getDecodeStringArrayTemplate (): string {
- const globalVariableTemplate: string = this.options.target !== ObfuscationTarget.BrowserNoEval
- ? this.getGlobalVariableTemplate()
- : GlobalVariableNoEvalTemplate();
- const atobPolyfill: string = this.customNodeFormatter.formatTemplate(AtobTemplate(), { globalVariableTemplate });
- let decodeStringArrayTemplate: string = '';
- let selfDefendingCode: string = '';
- if (this.options.selfDefending) {
- selfDefendingCode = this.customNodeFormatter.formatTemplate(
- SelfDefendingTemplate(
- this.randomGenerator,
- this.escapeSequenceEncoder
- ),
- {
- stringArrayCallsWrapperName: this.stringArrayCallsWrapperName,
- stringArrayName: this.stringArrayName
- }
- );
- }
- switch (this.options.stringArrayEncoding) {
- case StringArrayEncoding.Rc4:
- decodeStringArrayTemplate = this.customNodeFormatter.formatTemplate(
- StringArrayRc4DecodeNodeTemplate(this.randomGenerator),
- {
- atobPolyfill,
- rc4Polyfill: Rc4Template(),
- selfDefendingCode,
- stringArrayCallsWrapperName: this.stringArrayCallsWrapperName
- }
- );
- break;
- case StringArrayEncoding.Base64:
- decodeStringArrayTemplate = this.customNodeFormatter.formatTemplate(
- StringArrayBase64DecodeNodeTemplate(this.randomGenerator),
- {
- atobPolyfill,
- selfDefendingCode,
- stringArrayCallsWrapperName: this.stringArrayCallsWrapperName
- }
- );
- }
- return decodeStringArrayTemplate;
- }
- }
|