123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- import { injectable, inject } from 'inversify';
- import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
- import * as estraverse from 'estraverse';
- import * as ESTree from 'estree';
- import { TNodeWithBlockStatement } from '../../types/node/TNodeWithBlockStatement';
- import { IOptions } from '../../interfaces/options/IOptions';
- import { IObfuscationReplacer } from '../../interfaces/node-transformers/IObfuscationReplacer';
- import { IObfuscationReplacerWithStorage } from '../../interfaces/node-transformers/IObfuscationReplacerWithStorage';
- import { IVisitor } from '../../interfaces/IVisitor';
- import { NodeObfuscatorsReplacers } from '../../enums/container/NodeObfuscationReplacers';
- import { NodeType } from '../../enums/NodeType';
- import { AbstractNodeTransformer } from '../AbstractNodeTransformer';
- import { Node } from '../../node/Node';
- import { NodeUtils } from '../../node/NodeUtils';
- /**
- * replaces:
- * function foo () { //... };
- * foo();
- *
- * on:
- * function _0x12d45f () { //... };
- * _0x12d45f();
- */
- @injectable()
- export class FunctionDeclarationTransformer extends AbstractNodeTransformer {
- /**
- * @type {IObfuscationReplacerWithStorage}
- */
- private readonly identifierReplacer: IObfuscationReplacerWithStorage;
- /**
- * @type {Map<ESTree.Node, ESTree.Identifier[]>}
- */
- private readonly replaceableIdentifiers: Map <ESTree.Node, ESTree.Identifier[]> = new Map();
- /**
- * @param nodeObfuscatorsReplacersFactory
- * @param options
- */
- constructor (
- @inject(ServiceIdentifiers.Factory__IObfuscatorReplacer) nodeObfuscatorsReplacersFactory: (replacer: NodeObfuscatorsReplacers) => IObfuscationReplacer,
- @inject(ServiceIdentifiers.IOptions) options: IOptions
- ) {
- super(options);
- this.identifierReplacer = <IObfuscationReplacerWithStorage>nodeObfuscatorsReplacersFactory(NodeObfuscatorsReplacers.IdentifierReplacer);
- }
- /**
- * @return {IVisitor}
- */
- public getVisitor (): IVisitor {
- return {
- enter: (node: ESTree.Node, parentNode: ESTree.Node) => {
- if (Node.isFunctionDeclarationNode(node)) {
- return this.transformNode(node, parentNode);
- }
- }
- };
- }
- /**
- * @param functionDeclarationNode
- * @param parentNode
- * @returns {ESTree.Node}
- */
- public transformNode (functionDeclarationNode: ESTree.FunctionDeclaration, parentNode: ESTree.Node): ESTree.Node {
- const nodeIdentifier: number = this.nodeIdentifier++;
- const blockScopeOfFunctionDeclarationNode: TNodeWithBlockStatement = NodeUtils
- .getBlockScopesOfNode(functionDeclarationNode)[0];
- if (blockScopeOfFunctionDeclarationNode.type === NodeType.Program) {
- return functionDeclarationNode;
- }
- this.storeFunctionName(functionDeclarationNode, nodeIdentifier);
- this.replaceFunctionName(blockScopeOfFunctionDeclarationNode, nodeIdentifier);
- return functionDeclarationNode;
- }
- /**
- * @param functionDeclarationNode
- * @param nodeIdentifier
- */
- private storeFunctionName (functionDeclarationNode: ESTree.FunctionDeclaration, nodeIdentifier: number): void {
- this.identifierReplacer.storeNames(functionDeclarationNode.id.name, nodeIdentifier);
- }
- /**
- * @param scopeNode
- * @param nodeIdentifier
- */
- private replaceFunctionName (scopeNode: ESTree.Node, nodeIdentifier: number): void {
- let replaceableIdentifiersForCurrentScope: ESTree.Identifier[];
- // check for cached identifiers for current scope node. If exist - loop through them.
- if (this.replaceableIdentifiers.has(scopeNode)) {
- replaceableIdentifiersForCurrentScope = <ESTree.Identifier[]>this.replaceableIdentifiers.get(scopeNode);
- replaceableIdentifiersForCurrentScope.forEach((replaceableIdentifier: ESTree.Identifier) => {
- replaceableIdentifier.name = this.identifierReplacer.replace(replaceableIdentifier.name, nodeIdentifier);
- });
- return;
- }
- replaceableIdentifiersForCurrentScope = [];
- estraverse.replace(scopeNode, {
- enter: (node: ESTree.Node, parentNode: ESTree.Node): any => {
- if (Node.isReplaceableIdentifierNode(node, parentNode)) {
- const newNodeName: string = this.identifierReplacer.replace(node.name, nodeIdentifier);
- if (node.name !== newNodeName) {
- node.name = newNodeName;
- } else {
- replaceableIdentifiersForCurrentScope.push(node);
- }
- }
- }
- });
- this.replaceableIdentifiers.set(scopeNode, replaceableIdentifiersForCurrentScope);
- }
- }
|