Пример #1
0
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B(HttpRequest req, HttpResponse resp)
        {
            string data = null;

            /* FIX: Use a hardcoded string */
            data = "foo";
            goodG2BPublicStatic = true;
            CWE117_Improper_Output_Neutralization_for_Logs__QueryString_Web_22b.GoodG2BSink(data, req, resp);
        }
Пример #2
0
        /* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2(HttpRequest req, HttpResponse resp)
        {
            string data = null;

            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"];
                }
            }
            goodB2G2PublicStatic = true;
            CWE117_Improper_Output_Neutralization_for_Logs__QueryString_Web_22b.GoodB2G2Sink(data, req, resp);
        }