redirect.ctf
#!/bin/sh /ss/bin/ss.exe
<%
response().redirect("./hello.ctf")
%>
==================================================
hello.ctf
#!/bin/sh /ss/bin/ss.exe
<%
args = args()
if args.length() < 2 then
name = ""
else
name = args.elementAt(1)
end
%>
Hello <%=name%>
Hello <%=name%>