File tree Expand file tree Collapse file tree
src/main/java/jadx/plugins/stringdecoder Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public class JadxStringDecoderPlugin implements JadxPlugin {
2828 public JadxPluginInfo getPluginInfo () {
2929 return JadxPluginInfoBuilder .pluginId (PLUGIN_ID )
3030 .name ("String Decoder" )
31- .description ("Detect likely Base64- encoded string constants and add decoded value as a comment" )
31+ .description ("Detect encoded string constants and note their decoded values in a comment" )
3232 .homepage ("https://github.com/nklapste/jadx-string-decoder" )
3333 .requiredJadxVersion ("1.5.1, r2333" )
3434 .build ();
@@ -88,7 +88,7 @@ public String getTitle() {
8888 @ Override
8989 public JComponent buildComponent () {
9090 if (panel == null ) {
91- Set <String > generalSuffixes = Set .of ("maxCommentLength" , "minDecodedLength" );
91+ Set <String > generalSuffixes = Set .of ("minInputLength" , " maxCommentLength" , "minDecodedLength" );
9292 List <OptionDescription > allOpts = options .getOptionsDescriptions ();
9393 List <OptionDescription > generalOpts = allOpts .stream ()
9494 .filter (o -> generalSuffixes .stream ().anyMatch (s -> o .name ().endsWith ("." + s )))
You can’t perform that action at this time.
0 commit comments