We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
requireValidLength
true
1 parent 3dbd97a commit eadd0ebCopy full SHA for eadd0eb
1 file changed
src/main/java/jadx/plugins/stringdecoder/B64DeobfuscateOptions.java
@@ -43,7 +43,7 @@ public void registerOptions() {
43
.setter(v -> minAlphanumericPercent = v);
44
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".requireValidLength")
45
.description("Only flag strings whose total length is divisible by 4; rejects structurally invalid Base64")
46
- .defaultValue(false)
+ .defaultValue(true)
47
.setter(v -> requireValidLength = v);
48
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".skipCamelCase")
49
.description("Skip short strings that look like camelCase identifiers (e.g. getContext, fillItem)")
0 commit comments