에디션 CE 및 EE에서 다음 문제에 대한 수정을위한 마 젠토 릴리스 패치 SUPEE-6482
마 젠토 커뮤니티 에디션 :
- Magento SOAP API에 자동로드 된 파일 포함
- WSDL 파일의 SSRF 취약점
마 젠토 엔터프라이즈 에디션
- Magento SOAP API에 자동로드 된 파일 포함
- WSDL 파일의 SSRF 취약점
- 검증되지 않은 헤더를 사용하는 사이트 간 스크립팅
Gift Registry 검색의 XSS
수업에서 변화를
Mage_Api_Model_Server_Adapter_Soap에서 변경
: $urlModel->getUrl('*/*/*');
if ( $withAuth ) {
- $phpAuthUser = $this->getController()->getRequest()->getServer('PHP_AUTH_USER', false);
- $phpAuthPw = $this->getController()->getRequest()->getServer('PHP_AUTH_PW', false);
- $scheme = $this->getController()->getRequest()->getScheme();
+ $phpAuthUser = rawurlencode($this->getController()->getRequest()->getServer('PHP_AUTH_USER', false));
+ $phpAuthPw = rawurlencode($this->getController()->getRequest()->getServer('PHP_AUTH_PW', false));
+ $scheme = rawurlencode($this->getController()->getRequest()->getScheme());
if ($phpAuthUser && $phpAuthPw) {
$wsdlUrl = sprintf("%s://%s:%s@%s", $scheme, $phpAuthUser, $phpAuthPw,
Mage_Catalog_Model_Product_Api_V2 에서 변경
public function create($type, $set, $sku, $productData, $store = null)
{
- if (!$type || !$set || !$sku) {
+ if (!$type || !$set || !$sku || !is_object($productData)) {
$this->_fault('data_invalid');
}
@@ -243,6 +243,9 @@ class Mage_Catalog_Model_Product_Api_V2 extends Mage_Catalog_Model_Product_Api
*/
protected function _prepareDataForSave ($product, $productData)
{
+ if (!is_object($productData)) {
+ $this->_fault('data_invalid');
+ }
if (property_exists($productData, 'website_ids') && is_array($productData->website_ids)) {
$product->setWebsiteIds($productData->website_ids);
}
http://www.amitbera.com/magento-security-patch-supee-6482/ 에서 더보기