Reverse Engineering : Java code
Challenge This was a easy challenge from HSCTF 8. We were given source code of a program which we had to reverse engineer and find the flag. import java.util.Scanner; public class WarmupRev { public static String cold(String t) { return t.substring(17) + t.substring(0, 17); } public static String cool(String t) { String s = ""; for (int i = 0; i < t.length(); i++) if (i % 2 == 0) s += (char) (t....