You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
686 B
25 lines
686 B
<%@ page contentType="text/html; charset=UTF-8"%> |
|
<% |
|
String sso_Id = request.getParameter("sso_Id"); |
|
|
|
//28.크로스사이트 스크립트(Reflected)_CWE-80 : Add by KWON,HAN |
|
if (sso_Id !=null) { |
|
sso_Id = sso_Id.replaceAll("<","<"); |
|
sso_Id = sso_Id.replaceAll(">",">"); |
|
} |
|
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
|
%> |
|
|
|
<html> |
|
<head> |
|
<title></title> |
|
</head> |
|
<body> |
|
<form name="login" |
|
action="/servlet/kr.co.kihyun.beans.user.HttpSSOLogin" method="post"> |
|
<input type="hidden" name="id" value="<%=sso_Id%>"></form> |
|
<script> |
|
login.submit(); |
|
</script> |
|
</body> |
|
</html>
|
|
|