Esempio n. 1
0
        /* goodB2G() - use BadSource and GoodSink */
        private static void GoodB2G()
        {
            float data;

            data = -1.0f; /* Initialize data */
            {
                /* read user input from console with ReadLine */
                try
                {
                    /* POTENTIAL FLAW: Read data from the console using ReadLine */
                    string stringNumber = Console.ReadLine();
                    if (stringNumber != null) // avoid NPD incidental warnings
                    {
                        try
                        {
                            data = int.Parse(stringNumber.Trim());
                        }
                        catch (FormatException exceptNumberFormat)
                        {
                            IO.Logger.Log(NLog.LogLevel.Warn, exceptNumberFormat, "Number format exception parsing data from string");
                        }
                    }
                }
                catch (IOException exceptIO)
                {
                    IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
                }
            }
            Dictionary <int, float> dataDictionary = new Dictionary <int, float>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE369_Divide_by_Zero__float_console_readLine_divide_74b.GoodB2GSink(dataDictionary);
        }
Esempio n. 2
0
        /* goodG2B() - use GoodSource and BadSink */
        private static void GoodG2B()
        {
            float data;

            /* FIX: Use a hardcoded number that won't a divide by zero */
            data = 2.0f;
            Dictionary <int, float> dataDictionary = new Dictionary <int, float>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE369_Divide_by_Zero__float_console_readLine_divide_74b.GoodG2BSink(dataDictionary);
        }