UNPKG

anobis

Version:
126 lines (105 loc) 4.13 kB
import { injectable, inject } from 'inversify'; import { ServiceIdentifiers } from '../../container/ServiceIdentifiers'; import * as format from 'string-template'; 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 { IStorage } from '../../interfaces/storages/IStorage'; import { initializable } from '../../decorators/Initializable'; import { NO_CUSTOM_NODES_PRESET } from '../../options/presets/NoCustomNodes'; import { SelfDefendingTemplate } from '../../templates/custom-nodes/string-array-nodes/string-array-rotate-function-node/SelfDefendingTemplate'; import { StringArrayRotateFunctionTemplate } from '../../templates/custom-nodes/string-array-nodes/string-array-rotate-function-node/StringArrayRotateFunctionTemplate'; import { AbstractCustomNode } from '../AbstractCustomNode'; import { JavaScriptObfuscator } from '../../JavaScriptObfuscator'; import { NodeUtils } from '../../node/NodeUtils'; import { Utils } from '../../utils/Utils'; @injectable() export class StringArrayRotateFunctionNode extends AbstractCustomNode { /** * @type {IEscapeSequenceEncoder} */ private readonly escapeSequenceEncoder: IEscapeSequenceEncoder; /** * @type {IRandomGenerator} */ private readonly randomGenerator: IRandomGenerator; /** * @type {IStorage <string>} */ @initializable() private stringArrayStorage: IStorage <string>; /** * @type {string} */ @initializable() private stringArrayName: string; /** * @param {number} */ @initializable() private stringArrayRotateValue: number; /** * @param {IRandomGenerator} randomGenerator * @param {IEscapeSequenceEncoder} escapeSequenceEncoder * @param {IOptions} options */ constructor ( @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator, @inject(ServiceIdentifiers.IEscapeSequenceEncoder) escapeSequenceEncoder: IEscapeSequenceEncoder, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { super(options); this.randomGenerator = randomGenerator; this.escapeSequenceEncoder = escapeSequenceEncoder; } /** * @param {IStorage<string>} stringArrayStorage * @param {string} stringArrayName * @param {number} stringArrayRotateValue */ public initialize ( stringArrayStorage: IStorage <string>, stringArrayName: string, stringArrayRotateValue: number ): void { this.stringArrayStorage = stringArrayStorage; this.stringArrayName = stringArrayName; this.stringArrayRotateValue = stringArrayRotateValue; } /** * @returns {TStatement[]} */ protected getNodeStructure (): TStatement[] { return NodeUtils.convertCodeToStructure(this.getTemplate()); } /** * @returns {string} */ protected getTemplate (): string { const timesName: string = this.randomGenerator.getRandomVariableName(6); const whileFunctionName: string = this.randomGenerator.getRandomVariableName(6); let code: string = ''; if (this.options.selfDefending) { code = format(SelfDefendingTemplate(this.escapeSequenceEncoder), { timesName, whileFunctionName }); } else { code = `${whileFunctionName}(++${timesName})`; } return JavaScriptObfuscator.obfuscate( format(StringArrayRotateFunctionTemplate(), { code, timesName, stringArrayName: this.stringArrayName, stringArrayRotateValue: Utils.decToHex(this.stringArrayRotateValue), whileFunctionName }), { ...NO_CUSTOM_NODES_PRESET, seed: this.options.seed } ).getObfuscatedCode(); } }