Пример #1
0
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            string data;

            /* FIX: Use a hardcoded string */
            data = "foo";
            CWE134_Externally_Controlled_Format_String__ReadLine_console_interpolation_51b.GoodG2BSink(data);
        }
Пример #2
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);
        }