Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix '$' issues when using javascriptobfuscator_unpacker #1928

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions js/src/unpackers/javascriptobfuscator_unpacker.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ var JavascriptObfuscator = {
str = matches[1];
str = "'" + str.replace(/'/g, "\\'") + "'";
}

return str;
},

Expand Down Expand Up @@ -97,7 +98,8 @@ var JavascriptObfuscator = {


_unescape: function(str) {
// inefficient if used repeatedly or on small strings, but wonderful on single large chunk of text
str = str.replace("$", "$$$$");
// inefficient if used repeatedly or on small strings, but wonderful on single large chunk of text
for (var i = 32; i < 128; i++) {
str = str.replace(new RegExp('\\\\x' + i.toString(16), 'ig'), String.fromCharCode(i));
}
Expand Down Expand Up @@ -129,4 +131,4 @@ var JavascriptObfuscator = {
}


};
};