Skip to content

Latest commit

 

History

History
38 lines (34 loc) · 1.11 KB

README.md

File metadata and controls

38 lines (34 loc) · 1.11 KB

batchObfuscator

A simple batch obfuscator written in the JavaScript programming language.

Русская версия README.md

How to install?

To run batchObfuscator you must clone the repository with the git clone https://github.com/ethernalsteve/batchObfuscator.git or download the contents of this repository. Then run the file index.html

Use it in your project

Including

For use you need to download the file batchObfuscate.js.

Browser (Script tag)

<script src="./batchObfuscate.js"></script>

Node.JS

ES6 module syntax:
import batchObfuscate from "./batchObfuscate.js";
CommonJS syntax:
const batchObfuscate = require("./batchObfuscate.js");

Example

Simple obfuscation:

batchObfuscate("start calc.exe");

Obfuscation using a custom prefix:

batchObfuscate("shutdown /r", "abc");

Obfuscation using a custom prefix and disabling anti-debugging:

batchObfuscate("del *.* /q", "abc", false);