Пример #1
0
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B(HttpRequest req, HttpResponse resp)
        {
            string data = null;

            /* FIX: Use a hardcoded string */
            data = "foo";
            goodG2BPublicStatic = true;
            CWE89_SQL_Injection__Web_ReadLine_ExecuteNonQuery_22b.GoodG2BSink(data, req, resp);
        }
Пример #2
0
        /* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2(HttpRequest req, HttpResponse resp)
        {
            string data = null;

            data = ""; /* Initialize data */
            {
                /* read user input from console with ReadLine */
                try
                {
                    /* POTENTIAL FLAW: Read data from the console using ReadLine */
                    data = Console.ReadLine();
                }
                catch (IOException exceptIO)
                {
                    IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
                }
            }
            goodB2G2PublicStatic = true;
            CWE89_SQL_Injection__Web_ReadLine_ExecuteNonQuery_22b.GoodB2G2Sink(data, req, resp);
        }