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

dataunlocker

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dataunlocker

DataUnlocker's command line interface utilities

  • 2.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-53.33%
Maintainers
0
Weekly downloads
 
Created
Source

DataUnlocker's CLI

🛡️ DataUnlocker's command line interface utilities.

Requirements

Requires NodeJS v16+ to be installed, which comes with npx CLI runner.

Usage

$ npx -y dataunlocker patch

Patches a core JavaScript file of your web application.

DataUnlocker Defender tightly integrates with your web app's JavaScript code, specifically, your build artifacts or JavaScript libraries that your web app relies on. By design, each dataunlocker patch run should be embedded into your build pipeline to generate the newly obfuscated JavaScript file on every build run.

Follow these steps to install DataUnlocker Defender in your web app:

  1. Get your DataUnlocker ID from DataUnlocker Admin.
  2. Locate a core file (for example, file.js) which is loaded on all pages of your web application.
  3. Patch it using the following command, ideally in your deployment pipeline.
npx -y dataunlocker patch file.js

This command requires you to input your unique DataUnlocker domain ID, either by env var DATAUNLOCKER_ID:

export DATAUNLOCKER_ID=000000000000000000000000

or via the --id flag:

npx -y dataunlocker patch file.js --id 000000000000000000000000

As a result, file.js will be replaced with its obfuscated version with DataUnlocker Defender baked in. A backup of the original file.js will be placed next to it, named file.js.backup by default.

Note:

  • You can skip creating a backup file with --no-backup option.
  • You can set a name for a backup file with --backup filename.js option.
  • You can specify which endpoint to use for the patched code with --endpoint example.com/abcdef option (specify the endpoint URI without the protocol).
  • If the backup file exists, its content will be used for patching.

Example

$ npx -y dataunlocker patch file.js --id 000000000000000000000000

💜 DataUnlocker CLI v2.0.1
🔧 ID=000000000000000000000000

Backup file: does not exist
 ↳ Backing up local/test.js -> local/test.js.backup...
 ✔ Backed up to local/test.js.backup
Patching
 ↳ Using original file contents (local/test.js)
 ↳ Using the latest healthy endpoint (automatic)
 ↳ local/test.js will be overwritten
 ↳ Patching, please wait...
 ↳ Writing local/test.js...
 ✔ Done!

Keywords

FAQs

Package last updated on 26 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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