Skip to content

Commit 4f3b750

Browse files
committed
setting minDecodedLength to default to 4
1 parent 167b223 commit 4f3b750

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/jadx/plugins/stringdecoder/B64DeobfuscateOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void registerOptions() {
2323
.setter(v -> maxCommentLength = v);
2424
intOption(JadxStringDecoderPlugin.PLUGIN_ID + ".minDecodedLength")
2525
.description("Minimum decoded string length to add a comment (0 = disabled); helps reject short garbage decodes")
26-
.defaultValue(0)
26+
.defaultValue(4)
2727
.setter(v -> minDecodedLength = v);
2828
// B64DeobfuscatePass options
2929
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".enableB64DecodePass")

0 commit comments

Comments
 (0)