Example #1
0
        public override void Bad(HttpRequest req, HttpResponse resp)
        {
            int data = CWE190_Integer_Overflow__int_Get_Cookies_Web_multiply_61b.BadSource(req, resp);

            if (data > 0) /* ensure we won't have an underflow */
            {
                /* POTENTIAL FLAW: if (data*2) > int.MaxValue, this will overflow */
                int result = (int)(data * 2);
                IO.WriteLine("result: " + result);
            }
        }