/* goodB2G() - use BadSource and GoodSink */
        private static void GoodB2G(HttpRequest req, HttpResponse resp)
        {
            string data;

            /* POTENTIAL FLAW: Read data from a querystring using Params.Get */
            data = req.Params.Get("name");
            Hashtable dataHashtable = new Hashtable(5);

            dataHashtable.Add(0, data);
            dataHashtable.Add(1, data);
            dataHashtable.Add(2, data);
            CWE117_Improper_Output_Neutralization_for_Logs__Params_Get_Web_72b.GoodB2GSink(dataHashtable, req, resp);
        }
        /* goodG2B() - use GoodSource and BadSink */
        private static void GoodG2B(HttpRequest req, HttpResponse resp)
        {
            string data;

            /* FIX: Use a hardcoded string */
            data = "foo";
            Hashtable dataHashtable = new Hashtable(5);

            dataHashtable.Add(0, data);
            dataHashtable.Add(1, data);
            dataHashtable.Add(2, data);
            CWE117_Improper_Output_Neutralization_for_Logs__Params_Get_Web_72b.GoodG2BSink(dataHashtable, req, resp);
        }