Al Brookbanks Posted November 18, 2009 Share Posted November 18, 2009 CubeCart 4.3.7 has been released which patches a possible SQL injection vulnerability found by Sangte Amtham. It is very straightforward to patch this vulnerability... Method 1: Upload the attached file over your existing includes/content/viewProd.inc.php file. viewProd.inc.php Method 2: Open includes/content/viewProd.inc.php and find at around line 34:$_GET['productId'] = sanitizeVar($_GET['productId']); Replace with: $_GET['productId'] = (int)sanitizeVar($_GET['productId']); Security is our number one concern and we are pleased that we have been able to release a patch to this issue the same day it has been made aware to us. Please subscribe to this forum or follow us on Twitter to learn of important CubeCart announcements quickly. Link to comment Share on other sites More sharing options...
Recommended Posts