import { inject, injectable, } from 'inversify'; import { ServiceIdentifiers } from '../../../container/ServiceIdentifiers'; import { TCustomNodeFactory } from '../../../types/container/custom-nodes/TCustomNodeFactory'; import { TIdentifierNamesGeneratorFactory } from '../../../types/container/generators/TIdentifierNamesGeneratorFactory'; import { TInitialData } from '../../../types/TInitialData'; import { TNodeWithStatements } from '../../../types/node/TNodeWithStatements'; import { ICustomNode } from '../../../interfaces/custom-nodes/ICustomNode'; import { IOptions } from '../../../interfaces/options/IOptions'; import { IRandomGenerator } from '../../../interfaces/utils/IRandomGenerator'; import { ICallsGraphData } from '../../../interfaces/analyzers/calls-graph-analyzer/ICallsGraphData'; import { initializable } from '../../../decorators/Initializable'; import { CustomNode } from '../../../enums/custom-nodes/CustomNode'; import { ObfuscationEvent } from '../../../enums/event-emitters/ObfuscationEvent'; import { AbstractCustomNodeGroup } from '../../AbstractCustomNodeGroup'; import { NodeAppender } from '../../../node/NodeAppender'; import { NodeCallsControllerFunctionNode } from '../../node-calls-controller-nodes/NodeCallsControllerFunctionNode'; import { SelfDefendingUnicodeNode } from '../SelfDefendingUnicodeNode'; @injectable() export class SelfDefendingCustomNodeGroup extends AbstractCustomNodeGroup { /** * @type {ObfuscationEvent} */ protected appendEvent: ObfuscationEvent = ObfuscationEvent.AfterObfuscation; /** * @type {Map} */ @initializable() protected customNodes!: Map ; /** * @type {TCustomNodeFactory} */ private readonly customNodeFactory: TCustomNodeFactory; /** * @param {TCustomNodeFactory} customNodeFactory * @param {TIdentifierNamesGeneratorFactory} identifierNamesGeneratorFactory * @param {IRandomGenerator} randomGenerator * @param {IOptions} options */ public constructor ( @inject(ServiceIdentifiers.Factory__ICustomNode) customNodeFactory: TCustomNodeFactory, @inject(ServiceIdentifiers.Factory__IIdentifierNamesGenerator) identifierNamesGeneratorFactory: TIdentifierNamesGeneratorFactory, @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { super(identifierNamesGeneratorFactory, randomGenerator, options); this.customNodeFactory = customNodeFactory; } /** * @param {TNodeWithStatements} nodeWithStatements * @param {ICallsGraphData[]} callsGraphData */ public appendCustomNodes (nodeWithStatements: TNodeWithStatements, callsGraphData: ICallsGraphData[]): void { const randomCallsGraphIndex: number = this.getRandomCallsGraphIndex(callsGraphData.length); // selfDefendingUnicodeNode append this.appendCustomNodeIfExist(CustomNode.SelfDefendingUnicodeNode, (customNode: ICustomNode) => { NodeAppender.appendToOptimalBlockScope( callsGraphData, nodeWithStatements, customNode.getNode(), randomCallsGraphIndex ); }); // nodeCallsControllerFunctionNode append this.appendCustomNodeIfExist(CustomNode.NodeCallsControllerFunctionNode, (customNode: ICustomNode) => { const targetNodeWithStatements: TNodeWithStatements = callsGraphData.length ? NodeAppender.getOptimalBlockScope(callsGraphData, randomCallsGraphIndex, 1) : nodeWithStatements; NodeAppender.prepend(targetNodeWithStatements, customNode.getNode()); }); } public initialize (): void { this.customNodes = new Map (); if (!this.options.selfDefending) { return; } const callsControllerFunctionName: string = this.identifierNamesGenerator.generate(); const selfDefendingUnicodeNode: ICustomNode> = this.customNodeFactory(CustomNode.SelfDefendingUnicodeNode); const nodeCallsControllerFunctionNode: ICustomNode> = this.customNodeFactory(CustomNode.NodeCallsControllerFunctionNode); selfDefendingUnicodeNode.initialize(callsControllerFunctionName); nodeCallsControllerFunctionNode.initialize(this.appendEvent, callsControllerFunctionName); this.customNodes.set(CustomNode.SelfDefendingUnicodeNode, selfDefendingUnicodeNode); this.customNodes.set(CustomNode.NodeCallsControllerFunctionNode, nodeCallsControllerFunctionNode); } }