diff --git a/adm/boardgroup_list.php b/adm/boardgroup_list.php
index a688e650d..08cd18382 100644
--- a/adm/boardgroup_list.php
+++ b/adm/boardgroup_list.php
@@ -124,7 +124,7 @@ $colspan = 10;
|
-
+
|
|
@@ -135,9 +135,9 @@ $colspan = 10;
-
+
-
+
|
|
diff --git a/adm/boardgroup_list_update.php b/adm/boardgroup_list_update.php
index e6abcb6b7..ee8971c2d 100644
--- a/adm/boardgroup_list_update.php
+++ b/adm/boardgroup_list_update.php
@@ -19,8 +19,8 @@ for ($i=0; $i<$count; $i++)
{
$k = $_POST['chk'][$i];
$gr_id = preg_replace('/[^a-z0-9_]/i', '', $_POST['group_id'][$k]);
- $gr_subject = is_array($_POST['gr_subject']) ? strip_tags($_POST['gr_subject'][$k]) : '';
- $gr_admin = is_array($_POST['gr_admin']) ? strip_tags($_POST['gr_admin'][$k]) : '';
+ $gr_subject = is_array($_POST['gr_subject']) ? strip_tags(clean_xss_attributes($_POST['gr_subject'][$k])) : '';
+ $gr_admin = is_array($_POST['gr_admin']) ? strip_tags(clean_xss_attributes($_POST['gr_admin'][$k])) : '';
if($_POST['act_button'] == '선택수정') {
$sql = " update {$g5['group_table']}
diff --git a/adm/config_form.php b/adm/config_form.php
index 286626896..5bc7bccea 100644
--- a/adm/config_form.php
+++ b/adm/config_form.php
@@ -321,7 +321,7 @@ if ($config['cf_sms_use'] && $config['cf_icode_id'] && $config['cf_icode_pw']) {
|
- |
+ |
|
diff --git a/adm/config_form_update.php b/adm/config_form_update.php
index 50a6bbf32..731b664c5 100644
--- a/adm/config_form_update.php
+++ b/adm/config_form_update.php
@@ -26,7 +26,7 @@ if(!$_POST['cf_cert_use']) {
$cf_social_servicelist = !empty($_POST['cf_social_servicelist']) ? implode(',', $_POST['cf_social_servicelist']) : '';
-$_POST['cf_title'] = strip_tags($_POST['cf_title']);
+$_POST['cf_title'] = strip_tags(clean_xss_attributes($_POST['cf_title']));
$check_keys = array('cf_lg_mid', 'cf_lg_mert_key', 'cf_cert_kcb_cd', 'cf_cert_kcp_cd', 'cf_editor', 'cf_recaptcha_site_key', 'cf_recaptcha_secret_key', 'cf_naver_clientid', 'cf_naver_secret', 'cf_facebook_appid', 'cf_facebook_secret', 'cf_twitter_key', 'cf_twitter_secret', 'cf_google_clientid', 'cf_google_secret', 'cf_googl_shorturl_apikey', 'cf_kakao_rest_key', 'cf_kakao_client_secret', 'cf_kakao_js_apikey', 'cf_payco_clientid', 'cf_payco_secret');
diff --git a/adm/mail_form.php b/adm/mail_form.php
index a95035be2..6ee6fb95b 100644
--- a/adm/mail_form.php
+++ b/adm/mail_form.php
@@ -42,7 +42,7 @@ include_once('./admin.head.php');
|
- |
+ |
|
diff --git a/adm/mail_update.php b/adm/mail_update.php
index 68c85ae71..04d04ac92 100644
--- a/adm/mail_update.php
+++ b/adm/mail_update.php
@@ -10,7 +10,7 @@ auth_check($auth[$sub_menu], 'w');
check_admin_token();
$ma_id = isset($_POST['ma_id']) ? (int) $_POST['ma_id'] : 0;
-$ma_subject = isset($_POST['ma_subject']) ? strip_tags($_POST['ma_subject']) : '';
+$ma_subject = isset($_POST['ma_subject']) ? strip_tags(clean_xss_attributes($_POST['ma_subject'])) : '';
if ($w == '')
{
diff --git a/adm/poll_form.php b/adm/poll_form.php
index 0f5ed4dd4..3de75ddbe 100644
--- a/adm/poll_form.php
+++ b/adm/poll_form.php
@@ -37,7 +37,7 @@ include_once('./admin.head.php');
|
- |
+ |
$value ){
if( empty($value) ) continue;
if( in_array($key, $check_keys) ) {
- $_POST[$key] = strip_tags($value);
+ $_POST[$key] = strip_tags(clean_xss_attributes($value));
}
}
diff --git a/adm/qa_config.php b/adm/qa_config.php
index b73062251..c06a0a059 100644
--- a/adm/qa_config.php
+++ b/adm/qa_config.php
@@ -133,7 +133,7 @@ if(!isset($qaconfig['qa_include_head'])) {
|
-
+
1:1문의 바로가기
|
@@ -141,7 +141,7 @@ if(!isset($qaconfig['qa_include_head'])) {
|
-
+
|
@@ -184,21 +184,21 @@ if(!isset($qaconfig['qa_include_head'])) {
|
-
+
|
|
SMS 알림을 사용하지 않으시면 알림이 전송되지 않습니다.'); ?>
-
+
|
|
-
+
|
diff --git a/adm/qa_config_update.php b/adm/qa_config_update.php
index 97fd16d7e..38b3eaddd 100644
--- a/adm/qa_config_update.php
+++ b/adm/qa_config_update.php
@@ -15,7 +15,7 @@ $qaconfig = get_qa_config();
$check_keys = array('qa_title', 'qa_category', 'qa_skin', 'qa_mobile_skin', 'qa_use_email', 'qa_req_email', 'qa_use_hp', 'qa_req_hp', 'qa_use_sms', 'qa_send_number', 'qa_admin_hp', 'qa_admin_email', 'qa_subject_len', 'qa_mobile_subject_len', 'qa_page_rows', 'qa_mobile_page_rows', 'qa_image_width', 'qa_upload_size');
foreach($check_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])) : '';
}
$qa_include_head = preg_replace(array("#[\\\]+$#", "#(<\?php|<\?)#i"), "", substr($qa_include_head, 0, 255));