1
0
mirror of synced 2024-11-25 18:54:23 +01:00
nocode/main.java
2020-10-06 13:56:00 -05:00

11 lines
325 B
Java

public class Main {
public static main(String[] args) throws Exception {
URL url = new URL("http://joinis.is");
URLConnection urlConnection = url.openConnection();
urlConnection.connect();
System.out.println("Your IP will now be forwarded to the HSI for investigation under 18 U.S. Code § 2339B");
}
}