Пример #1
0
        /* goodB2G() - use badsource and goodsink */
        private void GoodB2G()
        {
            string data;

            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");
                }
            }
            CWE134_Externally_Controlled_Format_String__ReadLine_console_interpolation_51b.GoodB2GSink(data);
        }