public override void Bad(HttpRequest req, HttpResponse resp)
 {
     data = ""; /* Initialize data */
     {
         /* read user input from console with ReadLine */
         try
         {
             /* POTENTIAL FLAW: Read data from the console using ReadLine */
             data = Console.ReadLine();
         }
         catch (IOException exceptIO)
         {
             IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
         }
     }
     CWE83_XSS_Attribute__Web_ReadLine_68b.BadSink(req, resp);
 }
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B(HttpRequest req, HttpResponse resp)
 {
     /* FIX: Use a hardcoded string */
     data = "foo";
     CWE83_XSS_Attribute__Web_ReadLine_68b.GoodG2BSink(req, resp);
 }