Exemplo n.º 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;
            sbyte[] dataArray = new sbyte[5];
            dataArray[2] = data;
            CWE190_Integer_Overflow__SByte_max_square_66b.GoodG2BSink(dataArray);
        }
Exemplo n.º 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;
            sbyte[] dataArray = new sbyte[5];
            dataArray[2] = data;
            CWE190_Integer_Overflow__SByte_max_square_66b.GoodB2GSink(dataArray);
        }
Exemplo n.º 3
0
        public override void Bad()
        {
            sbyte data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = sbyte.MaxValue;
            sbyte[] dataArray = new sbyte[5];
            dataArray[2] = data;
            CWE190_Integer_Overflow__SByte_max_square_66b.BadSink(dataArray);
        }