Пример #1
0
        /* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2()
        {
            int?data = null;

            /* POTENTIAL FLAW: data is null */
            data = null;
            goodB2G2PublicStatic = true;
            CWE476_NULL_Pointer_Dereference__Integer_22b.GoodB2G2Sink(data);
        }
Пример #2
0
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            int?data = null;

            /* FIX: hardcode data to non-null */
            data = Int32.Parse("5");
            goodG2BPublicStatic = true;
            CWE476_NULL_Pointer_Dereference__Integer_22b.GoodG2BSink(data);
        }
Пример #3
0
        public override void Bad()
        {
            int?data = null;

            /* POTENTIAL FLAW: data is null */
            data            = null;
            badPublicStatic = true;
            CWE476_NULL_Pointer_Dereference__Integer_22b.BadSink(data);
        }