aboutsummaryrefslogtreecommitdiffstats
path: root/community/openjdk11/Alpine_Bug_10126.java
blob: 57746f3b95bcf789d831beb758277f704826011b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class Alpine_Bug_10126 {
    public static void main(String[] args) throws Exception {
        try (java.net.Socket sock = javax.net.ssl.SSLSocketFactory.getDefault().createSocket("bugs.alpinelinux.org", 443);
             java.io.InputStream in = sock.getInputStream();
             java.io.OutputStream out = sock.getOutputStream()) {
            out.write("GET / HTTP/1.0\n\nHost: bugs.alpinelinux.org\n\nConnection: close\n\n\n\n".getBytes());
            out.flush();
            while (in.read(new byte[1024]) != -1) ;
        }
        System.out.println("Secured connection performed successfully");
    }
}