mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
250 B
C#
14 lines
250 B
C#
using System;
|
|
using System;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
var format = Console.ReadLine(); // $ Source
|
|
|
|
// BAD: Uncontrolled format string.
|
|
var x = string.Format(format, 1, 2); // $ Alert
|
|
}
|
|
}
|