Beispiel #1
0
        /* goodG2B() - use goodsource and badsink */
        private 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;
            CWE190_Integer_Overflow__Long_rand_add_51b.GoodG2BSink(data);
        }
Beispiel #2
0
        /* goodB2G() - use badsource and goodsink */
        private void GoodB2G()
        {
            long data;

            /* POTENTIAL FLAW: Use a random value */
            data = IO.GetRandomLong();
            CWE190_Integer_Overflow__Long_rand_add_51b.GoodB2GSink(data);
        }
Beispiel #3
0
        public override void Bad()
        {
            long data;

            /* POTENTIAL FLAW: Use a random value */
            data = IO.GetRandomLong();
            CWE190_Integer_Overflow__Long_rand_add_51b.BadSink(data);
        }