Skip to content

Commit b192f8a

Browse files
author
sanex3339
committed
Added mangled-shuffled identifier names generator
1 parent b61f543 commit b192f8a

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

App/containers/OptionsContainer.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,13 @@ const TARGET_OPTIONS = [
3939
export const IDENTIFIER_NAMES_GENERATOR_DICTIONARY = 'dictionary';
4040
export const IDENTIFIER_NAMES_GENERATOR_HEXADECIMAL = 'hexadecimal';
4141
export const IDENTIFIER_NAMES_GENERATOR_MANGLED = 'mangled';
42+
export const IDENTIFIER_NAMES_GENERATOR_MANGLED_SHUFFLED = 'mangled-shuffled';
4243

4344
const IDENTIFIER_NAMES_GENERATOR_OPTIONS = [
4445
{text: 'dictionary', value: IDENTIFIER_NAMES_GENERATOR_DICTIONARY},
4546
{text: 'hexadecimal', value: IDENTIFIER_NAMES_GENERATOR_HEXADECIMAL},
4647
{text: 'mangled', value: IDENTIFIER_NAMES_GENERATOR_MANGLED},
48+
{text: 'mangled-shuffled', value: IDENTIFIER_NAMES_GENERATOR_MANGLED_SHUFFLED},
4749
];
4850

4951
const Options = ({dispatch, options}) =>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "javascript-obfuscator-web",
3-
"version": "3.7.0",
3+
"version": "3.8.0",
44
"description": "",
55
"engines": {
66
"node": ">=12.13.1"
@@ -32,7 +32,7 @@
3232
"graceful-fs": "4.1.9",
3333
"html-webpack-plugin": "^3.2.0",
3434
"inert": "5.1.0",
35-
"javascript-obfuscator": "1.4.0",
35+
"javascript-obfuscator": "1.5.2",
3636
"less": "2.7.1",
3737
"less-loader": "4.1.0",
3838
"pm2": "3.5.1",

templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h1>JavaScript Obfuscator Tool</h1>
4949
<p>
5050
A free and efficient obfuscator for JavaScript (including partial support of ES2019). Make your code harder to copy and
5151
prevent people from stealing your work. This tool is a Web UI to the excellent (and open source)
52-
<code><a href="https://github.com/javascript-obfuscator/javascript-obfuscator" target="_new">javascript-obfuscator</a>@1.4.0</code>
52+
<code><a href="https://github.com/javascript-obfuscator/javascript-obfuscator" target="_new">javascript-obfuscator</a>@1.5.2</code>
5353
created by Timofey Kachalov.
5454
</p>
5555
<div id="GithubBadges">

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4146,10 +4146,10 @@ isurl@^1.0.0-alpha5:
41464146
has-to-string-tag-x "^1.2.0"
41474147
is-object "^1.0.1"
41484148

4149-
javascript-obfuscator@1.4.0:
4150-
version "1.4.0"
4151-
resolved "https://registry.yarnpkg.com/javascript-obfuscator/-/javascript-obfuscator-1.4.0.tgz#311156cb50bc59adf5d21e89ebc2958eccb15cae"
4152-
integrity sha512-wBmiz9vY5hZJFAGWm2iRpFTSiO34660YKCSrOkgZw8AYFSjCb5Cziju68/Jc0FgmuxoeohGIvppgjfwqnY82Gw==
4149+
javascript-obfuscator@1.5.2:
4150+
version "1.5.2"
4151+
resolved "https://registry.yarnpkg.com/javascript-obfuscator/-/javascript-obfuscator-1.5.2.tgz#771742ec736b64a1f18003d920922e1417ffb7f7"
4152+
integrity sha512-D11n0jvo9j6rv+/qfutCXxkOx60gF+SnjqQG0TIkHN50LG+4BjRUK9YHK7BtZvH5tNXowTpCb0sB8wwv+YWJiQ==
41534153
dependencies:
41544154
"@gradecam/tsenum" "1.2.0"
41554155
"@nuxtjs/opencollective" "0.2.2"

0 commit comments

Comments
 (0)