Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/infallibless/js-obf
encrypt your code
https://github.com/infallibless/js-obf
js obf
Last synced: about 2 months ago
JSON representation
encrypt your code
- Host: GitHub
- URL: https://github.com/infallibless/js-obf
- Owner: infallibless
- Created: 2024-11-11T10:13:19.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-11T10:14:16.000Z (about 2 months ago)
- Last Synced: 2024-11-11T11:25:18.395Z (about 2 months ago)
- Topics: js, obf
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# JS-OBF - JavaScript Obfuscator
JS-OBF is a simple yet effective JavaScript obfuscation tool designed to help protect your JavaScript code from unauthorized access, analysis, or tampering. This tool allows you to obfuscate your JavaScript code by reading configuration options from a JSON file, obfuscating the input JavaScript file, and then saving the obfuscated code to a new file.
## Features
- **Obfuscate JavaScript Code**: Easily obfuscate any JavaScript code.
- **Customizable Options**: Configure the obfuscation process using an external JSON file.
- **CLI-based**: Command-line interface for simplicity and flexibility.## Requirements
- **Node.js**: This tool is built using Node.js. Make sure you have it installed on your system.
- **JavaScript Obfuscator**: The tool uses the `javascript-obfuscator` package to perform the obfuscation.## Installation
To get started with JS-OBF, follow these steps:
1. Clone this repository:
```bash
git clone https://github.com/infallibless/js-obf.git
cd js-obf
```2. Install the required dependencies:
```bash
npm install
```## Usage
To obfuscate a JavaScript file, use the following command in the terminal:
```bash
node obfuscator.js
```- ``: The JavaScript file you want to obfuscate. (default: `x.txt`)
- ``: The name of the obfuscated file to be generated. (default: `obf.js`)
- ``: The JSON configuration file that defines the obfuscation options. (default: `options.json`)### Example
```bash
node obfuscator.js input.js obfuscated.js options.json
```This will obfuscate `input.js` using the settings defined in `options.json` and save the result to `obfuscated.js`.
## Configuration (`options.json`)
You can customize the obfuscation behavior by defining various options in a `JSON` configuration file. Hereβs an example of what the `options.json` file might look like:
```json
{
"compact": true,
"controlFlowFlattening": true,
"controlFlowFlatteningThreshold": 1,
"deadCodeInjection": true,
"deadCodeInjectionThreshold": 0.4,
"debugProtection": true,
"debugProtectionInterval": 1000,
"identifierNamesGenerator": "mangled",
"identifierNamesBlacklist": ["pedo", "child"],
"numbersToExpressions": true,
"renameGlobals": false,
"rotateStringArray": true,
"stringArray": true,
"stringArrayEncoding": ["base64"],
"stringArrayThreshold": 0.75,
"simplify": true,
"selfDefending": true,
"sourceMap": true,
"sourceMapMode": "separate",
"unicodeEscapeSequence": false
}
```For more information on available options, refer to the [JavaScript Obfuscator documentation](https://github.com/javascript-obfuscator/javascript-obfuscator#options).
## Contribution
Feel free to contribute to this project! Open an issue or submit a pull request if you have any improvements, fixes, or ideas.
---
Happy coding and stay secure! π