Skip to content

Releases: nklapste/jadx-string-decoder

Release list

v0.1.0

Choose a tag to compare

@nklapste nklapste released this 29 May 03:03

Maintenance release.

Features:

  • int[] field detection — the byte-array scan now covers int[] fields

Bug Fixes:

  • Base64 comments are no longer dropped in chained expressions
  • Empty strings passed to Base64.decode no 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

Choose a tag to compare

@nklapste nklapste released this 22 May 23:25

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.