Example #1
0
        /* goodG2B() - use goodsource and badsink */
        private static void GoodG2B(HttpRequest req, HttpResponse resp)
        {
            string data;

            /* FIX: Use a hardcoded string */
            data = "foo";
            string[] dataArray = new string[5];
            dataArray[2] = data;
            CWE89_SQL_Injection__Web_QueryString_Web_ExecuteNonQuery_66b.GoodG2BSink(dataArray, req, resp);
        }
Example #2
0
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G(HttpRequest req, HttpResponse resp)
        {
            string data;

            data = ""; /* initialize data in case id is not in query string */
            /* POTENTIAL FLAW: Parse id param out of the URL querystring (without using getParameter()) */
            {
                if (req.QueryString["id"] != null)
                {
                    data = req.QueryString["id"];
                }
            }
            string[] dataArray = new string[5];
            dataArray[2] = data;
            CWE89_SQL_Injection__Web_QueryString_Web_ExecuteNonQuery_66b.GoodB2GSink(dataArray, req, resp);
        }