I used a decompiler to find the following function in compiled code:
public static void sub_e5b()
{
var_972 = null;
System.gc();
vservConfigHashTable = new Hashtable();
vservConfigHashTable.put("appId_end", "498");
vservConfigHashTable.put("showAt", "both");
vservConfigHashTable.put("categoryId", "22");
vservConfigHashTable.put("viewMandatory_end", "true");
(new VSERV_BCI_CLASS_000(var_93a, vservConfigHashTable)).showAtEnd();
}
Now I want to change the "true"
value to "false"
.
What tools and/or techniques could be used to make this change?