Beispiel #1
0
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            int data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            CWE129_Improper_Validation_of_Array_Index__negative_fixed_array_read_no_check_54b.GoodG2BSink(data);
        }
Beispiel #2
0
        /* goodB2G() - use badsource and goodsink */
        private void GoodB2G()
        {
            int data;

            /* POTENTIAL FLAW: Set data to a negative value */
            data = -1;
            CWE129_Improper_Validation_of_Array_Index__negative_fixed_array_read_no_check_54b.GoodB2GSink(data);
        }
Beispiel #3
0
        public override void Bad()
        {
            int data;

            /* POTENTIAL FLAW: Set data to a negative value */
            data = -1;
            CWE129_Improper_Validation_of_Array_Index__negative_fixed_array_read_no_check_54b.BadSink(data);
        }