-----------------------------------------
脆弱性のあるファイル
-----------------------------------------
data/class/pages/product/LC_Page_Products_DetailImage.php
-----------------------------------------
対策
-----------------------------------------
74-75行目あたりを変更する。
=========================================
2系 変更前
=========================================
$objQuery = new SC_Query();
$col = "name, $image_key";
=========================================
2系 変更後
=========================================
$objQuery = new SC_Query();
// カラムが存在していなければエラー画面を表示
if(!$objDb->sfColumnExists("dtb_products",$image_key)){
SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND);
}
$col = "name, $image_key";