Skip to content

Commit 6717c0c

Browse files
committed
Minimum percentage of alphanumeric chars in decoded string defaulting to 35%
1 parent 7458b88 commit 6717c0c

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
@@ -33,7 +33,7 @@ public void registerOptions() {
3333
.setter(v -> minPrintablePercent = v);
3434
intOption(JadxStringDecoderPlugin.PLUGIN_ID + ".minAlphanumericPercent")
3535
.description("Minimum percentage of alphanumeric chars in decoded string (0 = disabled); helps reject symbol-heavy garbage decodes")
36-
.defaultValue(0)
36+
.defaultValue(35)
3737
.setter(v -> minAlphanumericPercent = v);
3838
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".requirePadding")
3939
.description("Only flag strings that end with '=' padding; reduces false positives from identifiers and short words")

0 commit comments

Comments
 (0)