From b476c02ee2b9f655b13fc7d08794151dcab5401d Mon Sep 17 00:00:00 2001 From: zero Date: Wed, 20 May 2009 05:11:37 +0000 Subject: [PATCH] =?UTF-8?q?applet=20=ED=83=9C=EA=B7=B8=EC=97=90=20?= =?UTF-8?q?=EB=8C=80=ED=95=B4=20=EA=B4=80=EB=A6=AC=EC=9E=90=EA=B0=80=20?= =?UTF-8?q?=EC=9E=91=EC=84=B1=ED=95=9C=20=EA=B8=80=EC=9D=B4=20=EC=95=84?= =?UTF-8?q?=EB=8B=88=EB=9D=BC=EB=A9=B4=20=ED=83=9C=EA=B7=B8=20=EB=8F=99?= =?UTF-8?q?=EC=9E=91=EC=9D=84=20=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8F=84?= =?UTF-8?q?=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6343 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- config/func.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/func.inc.php b/config/func.inc.php index fcfdf6234..f220ef427 100644 --- a/config/func.inc.php +++ b/config/func.inc.php @@ -524,7 +524,7 @@ **/ function removeHackTag($content) { // 특정 태그들을 일반 문자로 변경 - $content = preg_replace('/<(\/?)(iframe|script|meta|style)/is', '<$1$2', $content); + $content = preg_replace('/<(\/?)(iframe|script|meta|style|applet)/is', '<$1$2', $content); // XSS 사용을 위한 이벤트 제거 $content = preg_replace_callback("!<([a-z]+)(.*?)>!is", removeJSEvent, $content);