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

            /* FIX: Use a hardcoded class name */
            data = "Testing.test";
            CWE470_Unsafe_Reflection__Web_QueryString_Web_52b.GoodG2BSink(data, req, resp);
        }
Пример #2
0
        public override void Bad(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"];
                }
            }
            CWE470_Unsafe_Reflection__Web_QueryString_Web_52b.BadSink(data, req, resp);
        }