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

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

            /* POTENTIAL FLAW: Use the minimum size of the data type */
            data = ushort.MinValue;
            CWE191_Integer_Underflow__UInt16_min_multiply_53b.GoodB2GSink(data);
        }
Beispiel #3
0
        public override void Bad()
        {
            ushort data;

            /* POTENTIAL FLAW: Use the minimum size of the data type */
            data = ushort.MinValue;
            CWE191_Integer_Underflow__UInt16_min_multiply_53b.BadSink(data);
        }