/[Apache-SVN]
ViewVC logotype

Revision 1705329


Jump to revision: Previous Next
Author: jleroux
Date: Fri Sep 25 16:27:12 2015 UTC (8 years, 7 months ago)
Changed paths: 55
Log Message:
I found a possible XSS attack through ProductContentWrapper.java.getProductContentAsText() which is notably used in several FTL files. This exists also in others *ContentWrapper.java.
Note that in supported releases it's hard to exploit, it's a Stored XSS https://www.owasp.org/index.php/Types_of_Cross-Site_Scripting which means you need 1st to somehow inject exploiting code in the DB.

This fixes it by changing the ContentWrapper interface
from
    public interface ContentWrapper {
        public StringUtil.StringWrapper get(String contentTypeId);
    }
to
    public interface ContentWrapper {
        public StringUtil.StringWrapper get(String contentTypeId, String encoderType) {
    }

And changing the Category, Party, Product, ProductPromo and WorkEffort ContentWrapperS accordingly. This means to use 2 types of encoderTypes: "html" and "url".
The "html"  encoderType will be used for all ProductContentTypes but those who contain URL in their ContentTypeIdS (actually end with, "_URL") which will use "url" encoderType.
It concerns not only the get() method but also methods like getPartyContentAsText(), getProductContentAsText(), etc.

It seems a big change but it's straightforward. It's normally complete. 

There are some (unrelated) tabs replaced by spaces here and there, and few trailing spaces removed but nothing big

Changed paths

Path Details
Directoryofbiz/trunk/applications/accounting/webapp/accounting/reports/SalesInvoiceByProductCategorySummary.ftl modified , text changed
Directoryofbiz/trunk/applications/content/src/org/ofbiz/content/content/ContentWrapper.java modified , text changed
Directoryofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderReturnServices.java modified , text changed
Directoryofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java modified , text changed
Directoryofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/InlineProductDetail.groovy modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductDetail.groovy modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/order/CompanyHeader.groovy modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/SplitShip.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/breadcrumbs.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/categorydetail.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/compareproducts.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/compareproductslist.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/configproductdetail.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/inlineProductDetail.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/productdetail.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/productsummary.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/quickaddsummary.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/order/editorderitems.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/order/orderinfo.ftl modified , text changed
Directoryofbiz/trunk/applications/order/webapp/ordermgr/order/orderitems.ftl modified , text changed
Directoryofbiz/trunk/applications/party/src/org/ofbiz/party/content/PartyContentWrapper.java modified , text changed
Directoryofbiz/trunk/applications/party/webapp/partymgr/party/editShoppingList.ftl modified , text changed
Directoryofbiz/trunk/applications/party/webapp/partymgr/party/profileblocks/SerializedInventory.ftl modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/category/CatalogUrlFilter.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/category/CategoryContentWrapper.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/category/CategoryServices.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/category/ftl/CatalogUrlSeoTransform.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductContentWrapper.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductEvents.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductPromoContentWrapper.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductSearch.java modified , text changed
Directoryofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductWorker.java modified , text changed
Directoryofbiz/trunk/applications/product/webapp/catalog/WEB-INF/actions/category/EditCategoryContentContent.groovy modified , text changed
Directoryofbiz/trunk/applications/product/webapp/catalog/product/AddAdditionalImages.ftl modified , text changed
Directoryofbiz/trunk/applications/product/widget/catalog/ProductForms.xml modified , text changed
Directoryofbiz/trunk/applications/workeffort/src/org/ofbiz/workeffort/content/WorkEffortContentWrapper.java modified , text changed
Directoryofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java modified , text changed
Directoryofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/productsearchExport.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/UpdateCart.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/cart/showcart.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/catalog/LayeredCategoryDetail.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/catalog/ProductCategoryLink.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/catalog/configproductdetail.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/catalog/miniproductsummary.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/catalog/productdetail.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/SerializedInventorySummary.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/SubscriptionSummary.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/order/splitship.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/shoppinglist/editShoppingList.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/solr/src/org/ofbiz/solr/ProductUtil.java modified , text changed
Directoryofbiz/trunk/specialpurpose/webpos/webapp/webpos/cart/ShowCart.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/webpos/webapp/webpos/cart/ShowCartItemSelected.ftl modified , text changed
Directoryofbiz/trunk/specialpurpose/webpos/webapp/webpos/catalog/CategoryDetail.ftl modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26