Exemple #1
0
 public override void Bad(HttpRequest req, HttpResponse resp)
 {
     data = ""; /* initialize data in case id is not in query string */
     /* POTENTIAL FLAW: Parse id param out of the URL querystring (without using getParameter()) */
     {
         if (req.QueryString["id"] != null)
         {
             data = req.QueryString["id"];
         }
     }
     CWE427_Uncontrolled_Search_Path_Element__QueryString_Web_68b.BadSink(req, resp);
 }
Exemple #2
0
 /* goodG2B() - use goodsource and badsink */
 private static void GoodG2B(HttpRequest req, HttpResponse resp)
 {
     /* FIX: Set the path as the "system" path */
     if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
     {
         data = "/bin";
     }
     else
     {
         data = "%SystemRoot%\\system32";
     }
     CWE427_Uncontrolled_Search_Path_Element__QueryString_Web_68b.GoodG2BSink(req, resp);
 }