Beispiel #1
0
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            data = ""; /* Initialize data */
            /* read input from WebClient */
            {
                try
                {
                    using (WebClient client = new WebClient())
                    {
                        using (StreamReader sr = new StreamReader(client.OpenRead("http://www.example.org/")))
                        {
                            /* POTENTIAL FLAW: Read data from a web server with WebClient */

                            /* This will be reading the first "line" of the response body,
                             * which could be very long if there are no newlines in the HTML */
                            data = sr.ReadLine();
                        }
                    }
                }
                catch (IOException exceptIO)
                {
                    IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
                }
            }
            CWE606_Unchecked_Loop_Condition__NetClient_68b.GoodB2GSink();
        }
Beispiel #2
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* FIX: Use a hardcoded int as a string */
     data = "5";
     CWE606_Unchecked_Loop_Condition__NetClient_68b.GoodG2BSink();
 }