public override void Bad(HttpRequest req, HttpResponse resp)
 {
     string data;
     data = ""; /* Initialize data */
     /* Read data using an outbound tcp connection */
     {
         try
         {
             /* Read data using an outbound tcp connection */
             using (TcpClient tcpConn = new TcpClient("host.example.org", 39544))
             {
                 /* read input from socket */
                 using (StreamReader sr = new StreamReader(tcpConn.GetStream()))
                 {
                     /* POTENTIAL FLAW: Read data using an outbound tcp connection */
                     data = sr.ReadLine();
                 }
             }
         }
         catch (IOException exceptIO)
         {
             IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
         }
     }
     Hashtable dataHashtable = new Hashtable(5);
     dataHashtable.Add(0, data);
     dataHashtable.Add(1, data);
     dataHashtable.Add(2, data);
     CWE470_Unsafe_Reflection__Web_Connect_tcp_72b.BadSink(dataHashtable , req, resp );
 }
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B(HttpRequest req, HttpResponse resp)
 {
     string data;
     /* FIX: Use a hardcoded class name */
     data = "Testing.test";
     Hashtable dataHashtable = new Hashtable(5);
     dataHashtable.Add(0, data);
     dataHashtable.Add(1, data);
     dataHashtable.Add(2, data);
     CWE470_Unsafe_Reflection__Web_Connect_tcp_72b.GoodG2BSink(dataHashtable , req, resp );
 }