js-deobfuscator
Advanced tools
Comparing version 1.0.14 to 1.0.15
{ | ||
"name": "js-deobfuscator", | ||
"version": "1.0.14", | ||
"version": "1.0.15", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -8,2 +8,4 @@ # General purpose JavaScript deobfuscator | ||
Install via `npm install js-deobfuscator` | ||
## Features | ||
@@ -205,2 +207,26 @@ * Unpacks arrays containing literals (strings, numbers etc) and replaces all references to them | ||
## Config | ||
```typescript | ||
interface Config { | ||
arrays: { | ||
unpackArrays: boolean; | ||
removeArrays: boolean; | ||
}; | ||
proxyFunctions: { | ||
replaceProxyFunctions: boolean; | ||
removeProxyFunctions: boolean; | ||
}; | ||
expressions: { | ||
simplifyExpressions: boolean; | ||
removeDeadBranches: boolean; | ||
}; | ||
miscellaneous: { | ||
beautify: boolean; | ||
simplifyProperties: boolean; | ||
renameHexIdentifiers: boolean; | ||
}; | ||
} | ||
``` | ||
## To Run | ||
@@ -207,0 +233,0 @@ Put the obfuscated script in input/source.js and run:<br/> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1645478
236