-----------------------------------------
脆弱性のあるファイル
-----------------------------------------
1系 html/products/detail_image.php
-----------------------------------------
対策
-----------------------------------------
74-75行目あたりを変更する。
html/products/detail_image.php
=========================================
変更前
=========================================
$objQuery = new SC_Query();
$col = "name, $image_key";
=========================================
変更後
=========================================
$objQuery = new SC_Query();
$col = "name, $image_key";
if(!sfColumnExists("dtb_products",$_GET['image'])){
sfDispSiteError(PRODUCT_NOT_FOUND);
}