mirror of
https://github.com/github/codeql.git
synced 2026-04-10 17:44:03 +02: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
|
|
}
|
|
|
|
}
|
|
|
|
}
|