We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167b223 commit 4f3b750Copy full SHA for 4f3b750
1 file changed
src/main/java/jadx/plugins/stringdecoder/B64DeobfuscateOptions.java
@@ -23,7 +23,7 @@ public void registerOptions() {
23
.setter(v -> maxCommentLength = v);
24
intOption(JadxStringDecoderPlugin.PLUGIN_ID + ".minDecodedLength")
25
.description("Minimum decoded string length to add a comment (0 = disabled); helps reject short garbage decodes")
26
- .defaultValue(0)
+ .defaultValue(4)
27
.setter(v -> minDecodedLength = v);
28
// B64DeobfuscatePass options
29
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".enableB64DecodePass")
0 commit comments