We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, thanks for the great project! I have encountered an issue when trying obfuscation with this obfuscator on some specific code.
One minimal example is:
import java.util.List; public class Main { private static final List<Integer> list = List.of(1, 2, 3); public static void main(String[] args) { Integer i = null; for (Integer j : list) { if (j == 0) { i = j; break; } } System.out.println(i); } }
The original program prints null. After obfuscation, the program prints 3 instead.
null
3
The problem should be in the syntax parsing and transforming part because it still happens when I turn off all obfuscation options.
Sample jar's for the code above, compiled by OpenJDK 17: sample.zip
The text was updated successfully, but these errors were encountered:
Thank you for reporting! Must be due to our IR framework. Will add this as a test case and figure out the source of the issue.
Sorry, something went wrong.
fix(obf): Fix test suite and added test for bug report in #47
184ed6a
8c14ee5
terminalsin
No branches or pull requests
Hi, thanks for the great project! I have encountered an issue when trying obfuscation with this obfuscator on some specific code.
One minimal example is:
The original program prints
null
. After obfuscation, the program prints3
instead.The problem should be in the syntax parsing and transforming part because it still happens when I turn off all obfuscation options.
Sample jar's for the code above, compiled by OpenJDK 17: sample.zip
The text was updated successfully, but these errors were encountered: