I've sent that information to the support team.
A side question though. All of my sql code uses the
GeneralConnection cn = ConnectionHelper.GetConnection();
DataSet ds = null;
object[,] parameters = new object[1, 3];
parameters[0, 0] = "@specialID";
parameters[0, 1] = specialID;
ds = cn.ExecuteQuery("Proc_checkSpecialD", parameters, CMS.IDataConnectionLibrary.QueryTypeEnum.StoredProcedure, false);
format, and my stored procedures do not use exec(). Providing that what I just said is accurate, does that mean that my code is safe from blind sql injections and sql injections?