/* 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);
     CWE78_OS_Command_Injection__Get_Cookies_Web_72b.GoodG2BSink(dataHashtable , req, resp );
 }
 public override void Bad(HttpRequest req, HttpResponse resp)
 {
     string data;
     data = ""; /* initialize data in case there are no cookies */
     /* Read data from cookies */
     {
         HttpCookieCollection cookieSources = req.Cookies;
         if (cookieSources != null)
         {
             /* POTENTIAL FLAW: Read data from the first cookie value */
             data = cookieSources[0].Value;
         }
     }
     Hashtable dataHashtable = new Hashtable(5);
     dataHashtable.Add(0, data);
     dataHashtable.Add(1, data);
     dataHashtable.Add(2, data);
     CWE78_OS_Command_Injection__Get_Cookies_Web_72b.BadSink(dataHashtable , req, resp );
 }