Skip to content

Tamper Protection

Latest
Compare
Choose a tag to compare
@MichaelXF MichaelXF released this 22 Aug 21:45
· 1 commit to master since this release
c5e5ec5

Tamper Protection

Tamper Protection safeguards the runtime behavior from being altered by JavaScript pitfalls.

Learn more here.


  • Rename Variables improvements:

  • A new exposed function, __JS_CONFUSER_VAR__, can be used to access renamed variables. Learn more here.

// Input
var name = "John Doe";
eval("console.log(" + __JS_CONFUSER_VAR__(name) + ")");

// Output
var CA1HU0 = 'John Doe';
eval('console.log(' + 'CA1HU0' + ')');