Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-deobfuscator

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-deobfuscator - npm Package Compare versions

Comparing version 1.0.14 to 1.0.15

2

package.json
{
"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/>

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc