You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

tmx-deobfuscator

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tmx-deobfuscator

Quick and easy deobfuscation of ThreatMetrix dynamic files with no worries

1.1.0
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

TMX-Deobfuscator

Description

tmx-deobfuscator is a quick and easy solution for deobfuscating ThreatMetrix dynamic files with no worries.

Installation

Install globally via npm:

npm install -g tmx-deobfuscator

Usage

You can use tmx-deobfuscator both programmatically in code or via CLI.

In Code

const tmx_deobfuscator = require("tmx-deobfuscator");

const deobfuscated_code = tmx_deobfuscator.deobfuscate("example.js");

console.log(deobfuscated_code);

You can also specify an output file:

const tmx_deobfuscator = require("tmx-deobfuscator");

tmx_deobfuscator.deobfuscate("example.js", "example_deobfuscated.js");

Or directly pass the code as a string:

const tmx_deobfuscator = require("tmx-deobfuscator");

let code = require("fs").readFileSync("example.js", "utf8");

const deobfuscated_code = tmx_deobfuscator.deobfuscate(code);

CLI

tmx_deobfuscator <input_file> -o <output_file>

Contributing

Contributions, issues and feature requests are welcome. Feel free to check issues page if you want to contribute.

License

This project is licensed under the MIT License.

Connect with me

Stay connected and follow me on:

For any questions or feedback, feel free to reach out!

FAQs

Package last updated on 24 Jun 2023

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