Created
August 31, 2015 09:09
-
-
Save jsyeo/1f33806b3b9043b8bf29 to your computer and use it in GitHub Desktop.
Inner Class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String argv[]) { | |
class Inner { | |
Inner() { | |
vulnerableMethod(); | |
} | |
} | |
Inner i = new Inner(); | |
} | |
private static void vulnerableMethod() { | |
System.out.println("ur powned"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment