123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- import { inject, injectable, } from 'inversify';
- import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
- import * as estraverse from 'estraverse';
- import * as ESTree from 'estree';
- import { TIdentifierObfuscatingReplacerFactory } from "../../types/container/node-transformers/TIdentifierObfuscatingReplacerFactory";
- import { TNodeWithLexicalScope } from '../../types/node/TNodeWithLexicalScope';
- import { TReplaceableIdentifiers } from '../../types/node-transformers/TReplaceableIdentifiers';
- import { TReplaceableIdentifiersNames } from '../../types/node-transformers/TReplaceableIdentifiersNames';
- import { IIdentifierObfuscatingReplacer } from '../../interfaces/node-transformers/obfuscating-transformers/obfuscating-replacers/IIdentifierObfuscatingReplacer';
- import { IOptions } from '../../interfaces/options/IOptions';
- import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator';
- import { IVisitor } from '../../interfaces/node-transformers/IVisitor';
- import { IdentifierObfuscatingReplacer } from "../../enums/node-transformers/obfuscating-transformers/obfuscating-replacers/IdentifierObfuscatingReplacer";
- import { NodeType } from '../../enums/node/NodeType';
- import { TransformationStage } from '../../enums/node-transformers/TransformationStage';
- import { AbstractNodeTransformer } from '../AbstractNodeTransformer';
- import { NodeGuards } from '../../node/NodeGuards';
- import { NodeLexicalScopeUtils } from '../../node/NodeLexicalScopeUtils';
- import { NodeMetadata } from '../../node/NodeMetadata';
- /**
- * replaces:
- * class Foo { //... };
- * new Foo();
- *
- * on:
- * class _0x12d45f { //... };
- * new _0x12d45f();
- */
- @injectable()
- export class ClassDeclarationTransformer extends AbstractNodeTransformer {
- /**
- * @type {IIdentifierObfuscatingReplacer}
- */
- private readonly identifierObfuscatingReplacer: IIdentifierObfuscatingReplacer;
- /**
- * @type {Map<ESTree.Node, ESTree.Identifier[]>}
- */
- private readonly replaceableIdentifiers: TReplaceableIdentifiers = new Map();
- /**
- * @param {TIdentifierObfuscatingReplacerFactory} identifierObfuscatingReplacerFactory
- * @param {IRandomGenerator} randomGenerator
- * @param {IOptions} options
- */
- constructor (
- @inject(ServiceIdentifiers.Factory__IIdentifierObfuscatingReplacer)
- identifierObfuscatingReplacerFactory: TIdentifierObfuscatingReplacerFactory,
- @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator,
- @inject(ServiceIdentifiers.IOptions) options: IOptions
- ) {
- super(randomGenerator, options);
- this.identifierObfuscatingReplacer = identifierObfuscatingReplacerFactory(
- IdentifierObfuscatingReplacer.BaseIdentifierObfuscatingReplacer
- );
- }
- /**
- * @param {TransformationStage} transformationStage
- * @returns {IVisitor | null}
- */
- public getVisitor (transformationStage: TransformationStage): IVisitor | null {
- switch (transformationStage) {
- case TransformationStage.Obfuscating:
- return {
- enter: (node: ESTree.Node, parentNode: ESTree.Node | null) => {
- if (
- parentNode
- && NodeGuards.isClassDeclarationNode(node)
- && !NodeGuards.isExportNamedDeclarationNode(parentNode)
- ) {
- return this.transformNode(node, parentNode);
- }
- }
- };
- default:
- return null;
- }
- }
- /**
- * @param {ClassDeclaration} classDeclarationNode
- * @param {NodeGuards} parentNode
- * @returns {NodeGuards}
- */
- public transformNode (classDeclarationNode: ESTree.ClassDeclaration, parentNode: ESTree.Node): ESTree.Node {
- const lexicalScopeNode: TNodeWithLexicalScope | undefined = NodeLexicalScopeUtils.getLexicalScope(classDeclarationNode);
- if (!lexicalScopeNode) {
- return classDeclarationNode;
- }
- const isGlobalDeclaration: boolean = lexicalScopeNode.type === NodeType.Program;
- if (!this.options.renameGlobals && isGlobalDeclaration) {
- return classDeclarationNode;
- }
- this.storeClassName(classDeclarationNode, lexicalScopeNode, isGlobalDeclaration);
- // check for cached identifiers for current scope node. If exist - loop through them.
- if (this.replaceableIdentifiers.has(lexicalScopeNode)) {
- this.replaceScopeCachedIdentifiers(classDeclarationNode, lexicalScopeNode);
- } else {
- this.replaceScopeIdentifiers(lexicalScopeNode);
- }
- return classDeclarationNode;
- }
- /**
- * @param {ClassDeclaration} classDeclarationNode
- * @param {TNodeWithLexicalScope} lexicalScopeNode
- * @param {boolean} isGlobalDeclaration
- */
- private storeClassName (
- classDeclarationNode: ESTree.ClassDeclaration,
- lexicalScopeNode: TNodeWithLexicalScope,
- isGlobalDeclaration: boolean
- ): void {
- if (isGlobalDeclaration) {
- this.identifierObfuscatingReplacer.storeGlobalName(classDeclarationNode.id.name, lexicalScopeNode);
- } else {
- this.identifierObfuscatingReplacer.storeLocalName(classDeclarationNode.id.name, lexicalScopeNode);
- }
- }
- /**
- * @param {ClassDeclaration} classDeclarationNode
- * @param {TNodeWithLexicalScope} lexicalScopeNode
- */
- private replaceScopeCachedIdentifiers (
- classDeclarationNode: ESTree.ClassDeclaration,
- lexicalScopeNode: TNodeWithLexicalScope
- ): void {
- const cachedReplaceableIdentifiersNamesMap: TReplaceableIdentifiersNames =
- <TReplaceableIdentifiersNames>this.replaceableIdentifiers.get(lexicalScopeNode);
- const cachedReplaceableIdentifiers: ESTree.Identifier[] | undefined = cachedReplaceableIdentifiersNamesMap
- .get(classDeclarationNode.id.name);
- if (!cachedReplaceableIdentifiers) {
- return;
- }
- const cachedReplaceableIdentifierLength: number = cachedReplaceableIdentifiers.length;
- for (let i: number = 0; i < cachedReplaceableIdentifierLength; i++) {
- const replaceableIdentifier: ESTree.Identifier = cachedReplaceableIdentifiers[i];
- const newReplaceableIdentifier: ESTree.Identifier = this.identifierObfuscatingReplacer
- .replace(replaceableIdentifier.name, lexicalScopeNode);
- replaceableIdentifier.name = newReplaceableIdentifier.name;
- NodeMetadata.set(replaceableIdentifier, { renamedIdentifier: true });
- }
- }
- /**
- * @param {TNodeWithLexicalScope} lexicalScopeNode
- */
- private replaceScopeIdentifiers (lexicalScopeNode: TNodeWithLexicalScope): void {
- const storedReplaceableIdentifiersNamesMap: TReplaceableIdentifiersNames = new Map();
- estraverse.replace(lexicalScopeNode, {
- enter: (node: ESTree.Node, parentNode: ESTree.Node | null): void => {
- if (
- parentNode
- && NodeGuards.isReplaceableIdentifierNode(node, parentNode)
- && !NodeMetadata.isRenamedIdentifier(node)
- ) {
- const newIdentifier: ESTree.Identifier = this.identifierObfuscatingReplacer
- .replace(node.name, lexicalScopeNode);
- const newIdentifierName: string = newIdentifier.name;
- if (node.name !== newIdentifierName) {
- node.name = newIdentifierName;
- NodeMetadata.set(node, { renamedIdentifier: true });
- } else {
- const storedReplaceableIdentifiers: ESTree.Identifier[] =
- storedReplaceableIdentifiersNamesMap.get(node.name) || [];
- storedReplaceableIdentifiers.push(node);
- storedReplaceableIdentifiersNamesMap.set(node.name, storedReplaceableIdentifiers);
- }
- }
- }
- });
- this.replaceableIdentifiers.set(lexicalScopeNode, storedReplaceableIdentifiersNamesMap);
- }
- }
|