Skip to content

Instantly share code, notes, and snippets.

@Storyyeller
Created November 16, 2014 07:07
Show Gist options
  • Save Storyyeller/fd97cccc02287dd40e43 to your computer and use it in GitHub Desktop.
Save Storyyeller/fd97cccc02287dd40e43 to your computer and use it in GitHub Desktop.
Java Obscuring
public class ObscuringTest {
public static ObscuringTest System, out;
public static void println(Object s) {java.lang.System.out.println("WTF?");}
public static void main(String[] args) {
// prints WTF?
System.out.println("Hello, World!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment