Skip to content

Commit eadd0eb

Browse files
committed
setting requireValidLength defaults to true
1 parent 3dbd97a commit eadd0eb

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
@@ -43,7 +43,7 @@ public void registerOptions() {
4343
.setter(v -> minAlphanumericPercent = v);
4444
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".requireValidLength")
4545
.description("Only flag strings whose total length is divisible by 4; rejects structurally invalid Base64")
46-
.defaultValue(false)
46+
.defaultValue(true)
4747
.setter(v -> requireValidLength = v);
4848
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".skipCamelCase")
4949
.description("Skip short strings that look like camelCase identifiers (e.g. getContext, fillItem)")

0 commit comments

Comments
 (0)