示例#1
0
        /* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            ulong 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__UInt64_rand_sub_71b.GoodG2BSink((Object)data);
        }
示例#2
0
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            ulong data;

            /* POTENTIAL FLAW: Use a random value */
            data = IO.GetRandomULong();
            CWE191_Integer_Underflow__UInt64_rand_sub_71b.GoodB2GSink((Object)data);
        }
示例#3
0
        public override void Bad()
        {
            ulong data;

            /* POTENTIAL FLAW: Use a random value */
            data = IO.GetRandomULong();
            CWE191_Integer_Underflow__UInt64_rand_sub_71b.BadSink((Object)data);
        }