CodeQL documentation

Invalid string formatting

ID: cs/invalid-string-formatting
Kind: path-problem
Security severity: 
Severity: error
Precision: high
Tags:
   - reliability
   - maintainability
Query suites:
   - csharp-security-and-quality.qls

Click to see the query in the CodeQL repository

When using string formatting methods (such as string.Format()), the following should be taken into account:

  1. The formatting string must be formatted correctly, otherwise the exception System.FormatException will be thrown.

  2. All passed arguments should be used by the formatting string, otherwise such arguments will be ignored.

  3. Missing arguments will result in a System.FormatException exception being thrown.

Recommendation

  1. Change the format string so that it is correctly formatted. Ensure that each format item adheres to the syntax:

    {index[,alignment][:formatString]}

    When literals { or } are required, replace them with {{ and }}, respectively, or supply them as arguments.

  2. Change the format string to use the highlighted argument, or remove the unnecessary argument.

  3. Supply the correct number of arguments to the format method, or change the format string to use the correct arguments.

Example

In this example, a format string uses both literals { and }, but the literals are not properly escaped.

using System;

class Bad1
{
    string GenerateEmptyClass(string c)
    {
        return string.Format("class {0} { }", "C");
    }
}

In the revised example, the literals are properly escaped.

using System;

class Good1
{
    string GenerateEmptyClass(string c)
    {
        return string.Format("class {0} {{ }}", "C");
    }
}

Example

Here are three examples where the format string does not use all the arguments.

using System;

class Bad2
{
    void M(Exception ex)
    {
        Console.WriteLine("Error processing file: {0}", ex, ex.HResult);
        Console.WriteLine("Error processing file: {1} ({1})", ex, ex.HResult);
        Console.WriteLine("Error processing file: %s (%d)", ex, ex.HResult);
    }
}
  • On line 7, the second argument (ex.HResult) is not logged.

  • On line 8, the first argument (ex) is not logged but the second argument (ex.HResult) is logged twice.

  • On line 9, a C-style format string is used, which is incorrect, and neither argument will be logged.

Example

Here are two examples where the call to String.Format() is missing arguments.

using System;

class Bad3
{
    void Hello(string first, string last)
    {
        Console.WriteLine("Hello {0} {1}", first);
        Console.WriteLine("Hello {1} {2}", first, last);
    }
}
  • On line 7, the second argument (last) is not supplied.

  • On line 8, the format items are numbered {1} and {2}, instead of {0} and {1} as they should be. In the revised example, both arguments are supplied.

using System;

class Good3
{
    void Hello(string first, string last)
    {
        Console.WriteLine("Hello {0} {1}", first, last);
    }
}

References

  • © GitHub, Inc.
  • Terms
  • Privacy