Releases: nklapste/jadx-string-decoder
Releases · nklapste/jadx-string-decoder
Release list
v0.1.0
Maintenance release.
Features:
int[]field detection — the byte-array scan now coversint[]fields
Bug Fixes:
- Base64 comments are no longer dropped in chained expressions
- Empty strings passed to
Base64.decodeno longer produce a blank// b64:comment // bytes:comments now appear on inner-class fields- Comments no longer land on the wrong line or get lost when a value flows through a constructor
- Line-wrapped (PEM/MIME) Base64 is no longer rejected by the valid-length filter
v0.0.0
Initial release.
Features:
- Base64 string detection — scans string constants in method bodies and field initializers. When a string appears to be Base64-encoded, a
// b64: <decoded>comment is added inline. - Byte array string detection — scans
byte[]fields initialized with literal byte arrays. When the bytes decode as valid UTF-8 with sufficient printable characters, a// bytes: "<string>"comment is added inline.