You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 18, 2021. It is now read-only.
It would be nice to declare in the code itself different options for obfuscation. For example:
/* jsobfu memory_sensitive: true */
for (var i = 0; i < 0x1337b33f; i++) {
heapSprayChunk("AAAAA");
}
/* jsobfu memory_sensitive: false */
/* jsobfu enabled: false */
// this comment will be in the output
/* jsobfu enabled: true */
// this comment will not.
The text was updated successfully, but these errors were encountered:
This turns out to be very hard to implement. Rkelly throws away context-specific details about comments (it preserves line number and char, but these are not so useful in a visitor-based transformer). The best plan I can think of (e.g., that does not involve adding a ton of edge cases everywhere) would involve forking rkelly and making it treat comments like a syntax node.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It would be nice to declare in the code itself different options for obfuscation. For example:
The text was updated successfully, but these errors were encountered: