-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathTaintedWebClient.cs
31 lines (27 loc) · 996 Bytes
/
TaintedWebClient.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.IO;
using System.Web;
using System.Net;
public class TaintedWebClientHandler : IHttpHandler
{
public void ProcessRequest(HttpContext ctx)
{
String url = ctx.Request.QueryString["domain"];
// BAD: This could read any file on the filesystem. (../../../../etc/passwd)
using(WebClient client = new WebClient()) {
ctx.Response.Write(client.DownloadString(url));
}
// BAD: This could still read any file on the filesystem. (https://../../../../etc/passwd)
if (url.StartsWith("https://")){
using(WebClient client = new WebClient()) {
ctx.Response.Write(client.DownloadString(url));
}
}
// GOOD: IsWellFormedUriString ensures that it is a valid URL
if (Uri.IsWellFormedUriString(url, UriKind.Absolute)){
using(WebClient client = new WebClient()) {
ctx.Response.Write(client.DownloadString(url));
}
}
}
}