Exemple #1
0
        /* goodG2B() - use GoodSource and BadSink */
        private static void GoodG2B()
        {
            sbyte data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            Dictionary <int, sbyte> dataDictionary = new Dictionary <int, sbyte>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE190_Integer_Overflow__SByte_max_square_74b.GoodG2BSink(dataDictionary);
        }
Exemple #2
0
        /* goodB2G() - use BadSource and GoodSink */
        private static void GoodB2G()
        {
            sbyte data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = sbyte.MaxValue;
            Dictionary <int, sbyte> dataDictionary = new Dictionary <int, sbyte>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE190_Integer_Overflow__SByte_max_square_74b.GoodB2GSink(dataDictionary);
        }
Exemple #3
0
        public override void Bad()
        {
            sbyte data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = sbyte.MaxValue;
            Dictionary <int, sbyte> dataDictionary = new Dictionary <int, sbyte>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE190_Integer_Overflow__SByte_max_square_74b.BadSink(dataDictionary);
        }