123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- import * as estraverse from 'estraverse';
- import * as ESTree from 'estree';
- import { ICustomNode } from "../interfaces/custom-nodes/ICustomNode";
- import { IOptions } from "../interfaces/IOptions";
- import { NodeType } from "../enums/NodeType";
- import { AbstractNodeObfuscator } from './AbstractNodeObfuscator';
- import { IdentifierReplacer } from "./replacers/IdentifierReplacer";
- import { Nodes } from "../Nodes";
- import { NodeUtils } from "../NodeUtils";
- /**
- * replaces:
- * var variable = 1;
- * variable++;
- *
- * on:
- * var _0x12d45f = 1;
- * _0x12d45f++;
- *
- */
- export class VariableDeclarationObfuscator extends AbstractNodeObfuscator {
- /**
- * @type {IdentifierReplacer}
- */
- private identifierReplacer: IdentifierReplacer;
- /**
- * @param nodes
- * @param options
- */
- constructor(nodes: Map <string, ICustomNode>, options: IOptions) {
- super(nodes, options);
- this.identifierReplacer = new IdentifierReplacer(this.nodes, this.options);
- }
- /**
- * @param variableDeclarationNode
- * @param parentNode
- */
- public obfuscateNode (variableDeclarationNode: ESTree.VariableDeclaration, parentNode: ESTree.Node): void {
- if (parentNode.type === NodeType.Program) {
- return;
- }
- this.storeVariableNames(variableDeclarationNode);
- this.replaceVariableNames(variableDeclarationNode, parentNode);
- }
- /**
- * @param variableDeclarationNode
- */
- private storeVariableNames (variableDeclarationNode: ESTree.VariableDeclaration): void {
- variableDeclarationNode.declarations
- .forEach((declarationNode: ESTree.VariableDeclarator) => {
- NodeUtils.typedReplace(declarationNode.id, NodeType.Identifier, {
- leave: (node: ESTree.Identifier) => this.identifierReplacer.storeNames(node.name)
- });
- });
- }
- /**
- * @param variableDeclarationNode
- * @param variableParentNode
- */
- private replaceVariableNames (variableDeclarationNode: ESTree.VariableDeclaration, variableParentNode: ESTree.Node): void {
- let scopeNode: ESTree.Node = variableDeclarationNode.kind === 'var' ? NodeUtils.getBlockScopeOfNode(
- variableDeclarationNode
- ) : variableParentNode,
- isNodeAfterVariableDeclaratorFlag: boolean = false;
- estraverse.replace(scopeNode, {
- enter: (node: ESTree.Node, parentNode: ESTree.Node): any => {
- if (
- Nodes.isArrowFunctionExpressionNode(node) ||
- Nodes.isFunctionDeclarationNode(node) ||
- Nodes.isFunctionExpressionNode(node)
- ) {
- estraverse.replace(node, {
- enter: (node: ESTree.Node, parentNode: ESTree.Node): any => {
- if (Nodes.isReplaceableIdentifierNode(node, parentNode)) {
- node.name = this.identifierReplacer.replace(node.name);
- }
- }
- });
- }
- if (Nodes.isVariableDeclarationNode(node) && node === variableDeclarationNode) {
- isNodeAfterVariableDeclaratorFlag = true;
- }
- if (Nodes.isReplaceableIdentifierNode(node, parentNode) && isNodeAfterVariableDeclaratorFlag) {
- node.name = this.identifierReplacer.replace(node.name);
- }
- }
- });
- }
- }
|