Esempio n. 1
0
 /* goodB2G() - use badsource and goodsink */
 private static void GoodB2G(HttpRequest req, HttpResponse resp)
 {
     data = ""; /* Initialize data */
     /* Read data using a listening tcp connection */
     {
         TcpListener listener = null;
         try
         {
             listener = new TcpListener(IPAddress.Parse("10.10.1.10"), 39543);
             listener.Start();
             using (TcpClient tcpConn = listener.AcceptTcpClient())
             {
                 /* read input from socket */
                 using (StreamReader sr = new StreamReader(tcpConn.GetStream()))
                 {
                     /* POTENTIAL FLAW: Read data using a listening tcp connection */
                     data = sr.ReadLine();
                 }
             }
         }
         catch (IOException exceptIO)
         {
             IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
         }
         finally
         {
             if (listener != null)
             {
                 try
                 {
                     listener.Stop();
                 }
                 catch (SocketException se)
                 {
                     IO.Logger.Log(NLog.LogLevel.Warn, se, "Error closing TcpListener");
                 }
             }
         }
     }
     CWE89_SQL_Injection__Web_Listen_tcp_ExecuteNonQuery_68b.GoodB2GSink(req, resp);
 }
Esempio n. 2
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B(HttpRequest req, HttpResponse resp)
 {
     /* FIX: Use a hardcoded string */
     data = "foo";
     CWE89_SQL_Injection__Web_Listen_tcp_ExecuteNonQuery_68b.GoodG2BSink(req, resp);
 }