Ejemplo n.º 1
0
        /* goodG2B() - use GoodSource and BadSink */
        private static void GoodG2B()
        {
            long data;

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

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE191_Integer_Underflow__Long_rand_sub_74b.GoodG2BSink(dataDictionary);
        }
Ejemplo n.º 2
0
        /* goodB2G() - use BadSource and GoodSink */
        private static void GoodB2G()
        {
            long data;

            /* POTENTIAL FLAW: Use a random value */
            data = IO.GetRandomLong();
            Dictionary <int, long> dataDictionary = new Dictionary <int, long>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE191_Integer_Underflow__Long_rand_sub_74b.GoodB2GSink(dataDictionary);
        }
Ejemplo n.º 3
0
        public override void Bad()
        {
            long data;

            /* POTENTIAL FLAW: Use a random value */
            data = IO.GetRandomLong();
            Dictionary <int, long> dataDictionary = new Dictionary <int, long>();

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