File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed
query-tests/Security Features/CWE-611 Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1- namespace System . Web ;
1+ namespace System
2+ {
3+ public class Uri { }
24
3- public interface IHtmlString { }
5+ namespace Web
6+ {
7+ public interface IHtmlString { }
8+ }
9+ }
Original file line number Diff line number Diff line change @@ -178,6 +178,13 @@ public class HttpRequest
178178 public string RawUrl { get ; set ; }
179179 public HttpCookieCollection Cookies => null ;
180180 public bool IsAuthenticated { get ; set ; }
181+ public NameValueCollection Form { get ; }
182+ public NameValueCollection Headers { get ; }
183+ public NameValueCollection Params { get ; }
184+ public string UserAgent { get ; }
185+ public Uri UrlReferrer { get ; }
186+ public NameValueCollection ServerVariables { get ; }
187+ public String this [ String key ] => null ;
181188 }
182189
183190 public class HttpRequestWrapper : System . Web . HttpRequestBase
You can’t perform that action at this time.
0 commit comments