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

            /* FIX: Set data to an integer represented as a string */
            data = "10";
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE94_Improper_Control_of_Generation_of_Code__QueryString_Web_67b.GoodG2BSink(dataContainer, req, resp);
        }
Beispiel #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"];
                }
            }
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE94_Improper_Control_of_Generation_of_Code__QueryString_Web_67b.GoodB2GSink(dataContainer, req, resp);
        }