mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
15 lines
345 B
C#
15 lines
345 B
C#
using System.Web;
|
|
|
|
public class HttpHandler : IHttpHandler
|
|
{
|
|
string Surname, Forenames, FormattedName;
|
|
|
|
public void ProcessRequest(HttpContext ctx)
|
|
{
|
|
string format = ctx.Request.QueryString["nameformat"];
|
|
|
|
// BAD: Uncontrolled format string.
|
|
FormattedName = string.Format(format, Surname, Forenames);
|
|
}
|
|
}
|