raw.ctf

#!/bin/bash /ss/bin/ss.exe
<%
    Response().setIsRaw(1)

    println("Status: 200 OK")
    println("Content-Type: text/html")
    println()
%>

<html>
    <head>
        <title>Raw IO</title>
    </head>
    <body>
        This
        sentence
        should
        be
        displayed
        on
        a
        single
        line
        .
    </body>
</html>






