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
|
|
|
}
|
|
|
|
|
|
|
|
}
|