mirror of
https://github.com/github/codeql.git
synced 2026-06-19 03:41:07 +02:00
Per review feedback, GOOD/BAD markers don't apply to flow source enumeration tests. Use descriptive comments instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
95 lines
3.0 KiB
C#
95 lines
3.0 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
|
|
namespace Testing
|
|
{
|
|
|
|
public class ViewModel
|
|
{
|
|
public string RequestId { get; set; } // Considered tainted.
|
|
public object RequestIdField; // Considered tainted.
|
|
public string RequestIdOnlyGet { get; } // Not considered tainted as there is no setter.
|
|
public string RequestIdPrivateSet { get; private set; } // Not considered tainted as it has a private setter.
|
|
public static object RequestIdStatic { get; set; } // Not considered tainted as it is static.
|
|
private string RequestIdPrivate { get; set; } // Not considered tainted as it is private.
|
|
}
|
|
|
|
public class TestController : Controller
|
|
{
|
|
public object MyAction(ViewModel viewModel)
|
|
{
|
|
throw null;
|
|
}
|
|
}
|
|
|
|
public class Item
|
|
{
|
|
public string Tainted { get; set; }
|
|
}
|
|
|
|
public class AspRoutingEndpoints
|
|
{
|
|
public delegate void MapGetHandler(string param);
|
|
|
|
public void HandlerMethod(string param) { }
|
|
|
|
public void M1(string[] args)
|
|
{
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
var app = builder.Build();
|
|
|
|
// The delegate parameters are considered flow sources.
|
|
app.MapGet("/api/redirect/{newUrl}", (string newUrl) => { });
|
|
app.MapGet("/{myApi}/redirect/{myUrl}", (string myApi, string myUrl) => { });
|
|
|
|
Action<string> handler = (string lambdaParam) => { };
|
|
app.MapGet("/api/redirect/{lambdaParam}", handler);
|
|
|
|
MapGetHandler handler2 = HandlerMethod;
|
|
app.MapGet("/api/redirect/{mapGetParam}", handler2);
|
|
|
|
app.MapPost("/api/redirect/{mapPostParam}", (string mapPostParam) => { });
|
|
app.MapPut("/api/redirect/{mapPutParam}", (string mapPutParam) => { });
|
|
app.MapDelete("/api/redirect/{mapDeleteParam}", (string mapDeleteParam) => { });
|
|
|
|
app.MapPost("/items", (Item item) => { });
|
|
|
|
app.Run();
|
|
}
|
|
}
|
|
|
|
public abstract class AbstractTestController : Controller
|
|
{
|
|
public void MyActionMethod(string param) { }
|
|
}
|
|
|
|
// Razor Page handler tests
|
|
public class MyPageModel : Microsoft.AspNetCore.Mvc.RazorPages.PageModel
|
|
{
|
|
// Handler method parameters are remote flow sources
|
|
public void OnGet(string id) { }
|
|
|
|
public void OnPost(string command, int count) { }
|
|
|
|
public void OnPostAsync(string data) { }
|
|
|
|
public void OnPut(string value) { }
|
|
|
|
public void OnDelete(string itemId) { }
|
|
|
|
// Not a handler method — does not start with "On", so not a flow source
|
|
public void GetUser(string userId) { }
|
|
|
|
// Excluded by [NonHandler] attribute, so not a flow source
|
|
[Microsoft.AspNetCore.Mvc.RazorPages.NonHandlerAttribute]
|
|
public void OnGetNonHandler(string param) { }
|
|
}
|
|
|
|
// Subclass of a PageModel subclass
|
|
public class DerivedPageModel : MyPageModel
|
|
{
|
|
public void OnPost(string derivedParam) { }
|
|
}
|
|
}
|