Example #1
0
        /* goodG2B() - use goodsource and badsink */
        private static void GoodG2B(HttpRequest req, HttpResponse resp)
        {
            string data;

            /* FIX: Use a hardcoded string */
            data = "foo";
            string[] dataArray = new string[5];
            dataArray[2] = data;
            CWE81_XSS_Error_Message__Web_ReadLine_66b.GoodG2BSink(dataArray, req, resp);
        }
Example #2
0
        public override void Bad(HttpRequest req, HttpResponse resp)
        {
            string data;

            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");
                }
            }
            string[] dataArray = new string[5];
            dataArray[2] = data;
            CWE81_XSS_Error_Message__Web_ReadLine_66b.BadSink(dataArray, req, resp);
        }