ConfusionJs
ConfusionjS is a javascript obfuscation middleware library for nodejs.
In order to use confusionjs into your nodejs express app, install the module into project like so:
Install using npm:
$ npm install --save confusionjs
Install using Yarn:
$ yarn add confusionjs
Usage
In Node.js Express App:
// Load expressconst express = ;// Load Confusionjsconst confuse = ; const app = ; let options = root:"./static" store:"confused" cache:true debug:true; app;
Note:
Install ConfusionJs for use in the Node.js > 8
Why ConfisionJs?
JavaScript code running in the browser is visible to anybody who wishes to see it. This can sometimes pause a security threat to your application as people with malicious intent can steal or compromise your source code.
ConfusionJs limits those threats by obfuscating the javascript code so that it becomes difficult to read or decipher.
consider the following script as example:
{ ;};
In a normal setup, the code will just be delivered as is and anybody will be able to see the code.
However, Confusionjs takes the raw code and obfuscates it into a more hard to read and decipher syntax such as the one below:
var _0x4f62 = 'FhxUT' 'btlxw'; { var { while --_0x360049 _0x30ac87'push'_0x30ac87'shift'; }; ;}_0x4f62 0x18f;var { _0x11e762 = _0x11e762 - 0x0; var _0x58af7a = _0x4f62_0x11e762; return _0x58af7a;}; { var _0x178c8d = { return ; } 'FhxUT': 'hit' ; _0x178c8dalert _0x178c8d;};
options
The following options are currently accepted when instantiating confusionjs:
-
root : A string. this represents the root of your static or public folder e.g "./static" or "./public"
-
store: A string. a folder where to store the obfuscated javascript files
-
cache: A boolean. determines wether or not confusionjs should create a new confused file everytime a js file is requested
-
debug: A boolean. wether to log to console any debug information e.g when a file is cahed or served from cache
Author
The Author of this library is Lee M. Lwando
Other Social Links:
Twitter
Facebook
Email
Mobile
Contribution
Feel free to create Pull Requests 😄
License
Copyright (c) 2018 Lee M. Lwando; Copyright (c) 2018 MicroTech Cloud Solutions;
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.