1
0
mirror of synced 2024-11-25 18:54:23 +01:00
nocode/main.java

11 lines
325 B
Java
Raw Normal View History

2020-10-06 20:52:41 +02:00
public class Main {
2020-10-06 20:56:00 +02:00
public static main(String[] args) throws Exception {
2020-10-06 20:52:41 +02:00
URL url = new URL("http://joinis.is");
2020-10-06 20:56:00 +02:00
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");
2020-10-06 20:52:41 +02:00
}
}