[KVE-2019-1582,1590,1594]영카트XSS취약점 수정

This commit is contained in:
thisgun
2020-02-12 12:17:36 +09:00
parent e40105045a
commit 7b220eaeb9
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ $check_sanitize_keys = array(
);
foreach( $check_sanitize_keys as $key ){
$$key = $_POST[$key] = isset($_POST[$key]) ? strip_tags($_POST[$key]) : '';
$$key = $_POST[$key] = isset($_POST[$key]) ? strip_tags(clean_xss_attributes($_POST[$key])) : '';
}
if(!$_POST['cz_subject'])