mirror of
https://github.com/github/codeql.git
synced 2026-02-12 13:11:20 +01:00
17 lines
226 B
C#
17 lines
226 B
C#
using System;
|
|
using System.Web.UI.HtmlControls;
|
|
|
|
namespace UseOfHtmlInputHidden
|
|
{
|
|
class Main
|
|
{
|
|
|
|
public void Foo()
|
|
{
|
|
HtmlInputHidden field = new HtmlInputHidden(); // BAD
|
|
}
|
|
|
|
}
|
|
|
|
}
|