Git Product home page Git Product logo

Comments (5)

relative avatar relative commented on July 17, 2024

Changing variable names is a feature I could implement but manual variable renaming is much faster and more reliable (with VSCode you can select a symbol and press f2 to change the var name and all references)

Other idea is remove function used to decript

Afaik setting removeReferences will remove the functions

from synchrony.

anka-213 avatar anka-213 commented on July 17, 2024

I find that first automatically renaming all the variables to something shorter is very helpful, since you can get a better quick overview and see what variables are the same at a glance before doing the manual renaming.

from synchrony.

bbday avatar bbday commented on July 17, 2024

the only issue is use "global" value check, instead rename only inside function (local) i mean it do like this:

function A1(a,b) { 
  var c = 1+2;
  var d = 3+ 4;
  return c+d+a+b
 }
 
 function B1(f,g) { 
  var h = 2+2;
  var i = 6+7;
  return h+i+f+g
 }

when should be

 function A1(a,b) { 
  var c = 1+2;
  var d = 3+ 4;
  return c+d+a+b
 }
 
 function B1(a,b) { 
  var c = 2+2;
  var d= 6+7;
  return c+d+a+b
 }

Then is more easy overview changes and make diff cause you have always same "local variables" name, because if you add new function between A1 - B1, it will use new variables name

from synchrony.

relative avatar relative commented on July 17, 2024

Other idea is remove function used to decript

This has been implemented in 2.0.1

Variable renaming is a lot easier (you can do it from the deobfuscator web ui because it uses monaco (vsc's editor), by pressing f2 after selecting a symbol.

however there are plans to implement automatic identifier renaming with type inference in an upcoming version

from synchrony.

relative avatar relative commented on July 17, 2024

implemented in https://github.com/relative/synchrony/releases/tag/2.3.0.

update with npm i --global [email protected] and run
synchrony deobfuscate --rename ./file.js

from synchrony.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.