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

Replace comma expressions by semicolons #60

Open
Zezombye opened this issue Sep 8, 2024 · 1 comment
Open

Replace comma expressions by semicolons #60

Zezombye opened this issue Sep 8, 2024 · 1 comment

Comments

@Zezombye
Copy link

Zezombye commented Sep 8, 2024

For example:

var i, n, r, Ya;
(Ya = [2, 0]), (r = e.length), (n = r << Ya[0]);

Should become:

var i, n, r, Ya;
Ya = [2, 0];
r = e.length;
n = r << Ya[0];

Or ideally:

var i;
var Ya = [2, 0];
var r = e.length;
var n = r << Ya[0];
@ben-sb
Copy link
Owner

ben-sb commented Sep 10, 2024

That's a good suggestion, I'll add it to the to-do list. In the meantime my other deobfuscator (online version) already has this feature implemented.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants