Using locale-dependent methods on locale-dependent data can produce unexpected results when the locale is unspecified. Programming language identifiers, protocol keys, and HTML tags are often specified in a particular locale, usually Locale.ENGLISH
. Running a program in a different locale may result in unexpected program behavior or even allow an attacker to bypass input filters. For these reasonreasons, any program that inspects data generated by a locale-dependent function must specify the locale used to generate that data.
...
Code Block |
---|
% java Example TITLE % |
However, most European languages associate languages that use the Latin alphabet associate the letter I
as the uppercase version of i
. But Turkish is an exception: it has a dotted i
whose uppercase version is also dotted : (İ
, ) and an undotted ı
whose uppercase version is undotted (I
). Changing capitalization on most strings in the Turkish locale locale [API 2006] may produce unexpected results:
...
Many programs only use locale-dependent methods for outputting information, such as dates . Provided provided that the locale-dependent data is not inspected by the program, and it may safely rely on the default locale.
Noncompliant Code Example (toUpperCase()
)
Many web apps, such as forum or blogging software, input HTML and then display it. Displaying untrusted HTML can subject a web app to XSS ( cross-site scripting (XSS) or HTML injection vulnerabilities. Therefore, it is vital that HTML be sanitized before sending it to a web browser.
...
In HTML, tags are case-insensitive , and consequently can therefore be specified using uppercase, lowercase, or any mixture of cases. This noncompliant code example uses the locale-dependent String.toUpperCase()
method to convert an HTML tag to upper case, uppercase to check it for further processing. The code must ignore <SCRIPT>
tags, as they indicate code that is to be discarded. While Whereas the English locale would convert "script"
to "SCRIPT"
, the Turkish locale will convert "script"
to "SCRİPT"
, and the check will fail to detect the <SCRIPT>
tag.
Code Block | ||||
---|---|---|---|---|
| ||||
public static void processTag(String tag) { if (tag.toUpperCase().equals("SCRIPT")) { return; } // processProcess tag } |
Compliant Solution (Explicit Locale)
This compliant solution explicitly sets the locale to English to avoid unexpected results.:
Code Block | ||||
---|---|---|---|---|
| ||||
public static void processTag(String tag) { if (tag.toUpperCase(Locale.ENGLISH).equals("SCRIPT")) { return; } // processProcess tag } |
Specifying Locale.ROOT
is a suitable alternative under conditions where when an English-specific locale would not be appropriate.
Compliant Solution (Default Locale)
This compliant solution sets the default locale to English before performing string comparisons.:
Code Block | ||||
---|---|---|---|---|
| ||||
public static void processTag(String tag) { Locale.setDefault(Locale.ENGLISH); if (tag.toUpperCase().equals("SCRIPT")) { return; } // processProcess tag } |
Compliant Solution (String.equalsIgnoreCase()
)
This compliant solution bypasses locales entirely by performing a case-insensitive match. The String.equalsIgnoreCase()
method creates temporary canonical forms of both strings. This , which may render them unreadable, but it performs proper comparison without making them dependent on the current locale [Schindler 12].
Code Block | ||||
---|---|---|---|---|
| ||||
public static void processTag(String tag) { if (tag.equalsIgnoreCase("SCRIPT")) { return; } // processProcess tag } |
This solution is compliant because equalIgnoreCase()
compares two strings, one of which is plain ASCII, and therefore its behavior is well-understood, even if the other string is not plain ASCII. Calling equalIgnoreCase()
where both strings may not be ASCII is not recommended, simply because equalIgnoreCase()
may not behave as expected by the developer.
Noncompliant Code Example (FileReader
)
Java provides classes for handling input and output, which can be based on either bytes or characters. The byte I/O families derive from the InputStream
and OutputStream
interfaces , and are independent of locale or character encoding. However, the character I/O families derive from Reader
and Writer
, and they must convert byte sequences into strings and back. Thus, so they rely on a specified character encoding to do their conversion. This encoding is indicated by the file.encoding
system property, which is part of the current locale. Consequently, a file encoded with one encoding, such as UTF-8, must not be read by a character input method using a different encoding, such as UTF-16.
Programs that read character data (whether directly using a Reader
or indirectly using some method such as constructing a String
from a byte array) must be aware of the source of the data. If the encoding of the data is fixed (such as if the data comes from a file resource that is shipped with the program), then that encoding must be specified by the program. Failure to specify the coding enables an attacker to change the encoding to force the program to read the data using the wrong encoding.
This risk does not apply to programs that read data known to be in the encoding specified by the platform running the program. For example, if the program must open a file provided by the user, it is reasonable to rely on the default encoding, expecting that it will be set correctly.
This noncompliant code example reads its own source code , and prints it out, prepending each line with a line number. If the program is run with the argument : -Dfile.encoding=UTF16
, while its source file is stored as UTF8
, the program will save garbage in the output file.
Code Block | ||||
---|---|---|---|---|
| ||||
import java.io.*; public class PrintMyself { private static String inputFile = "PrintMyself.java"; private static String outputFile = "PrintMyself.txt"; public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new FileReader(inputFile)); PrintWriter writer = new PrintWriter(new FileWriter(outputFile)); int line = 0; while (reader.ready()) { line++; writer.println(line + ": " + reader.readLine()); } reader.close(); writer.close(); } } |
Compliant Solution (Charset
)
In this compliant solution, both the input and output files are explicitly encoded using UTF8. This program behaves correctly regardless of the default encoding.
Code Block | ||||
---|---|---|---|---|
| ||||
public static void main(String[] args) throws IOException { Charset encoding = Charset.forName("UTF8"); BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(inputFile), encoding)); PrintWriter writer = new PrintWriter(new OutputStreamWriter(new FileOutputStream(outputFile), encoding)); int line = 0; /* restRest of code unchanged */ |
Noncompliant Code Example (Date
)
While the The concepts of days and years are universal, but the way in which dates are represented varies across cultures , and are therefore specific to locales. This noncompliant code example examines the current date and prints one of two messages, depending on whether or not the month is June.:
Code Block | ||||
---|---|---|---|---|
| ||||
import java.util.Date;
import java.text.DateFormat;
import java.util.Locale;
// ...
public static void isJune(Date date) {
String myString = DateFormat.getDateInstance().format(date);
System.out.println("The date is " + myString);
if (myString.startsWith("Jun ")) {
System.out.println("Enjoy June!");
} else {
System.out.println("It's not June.");
}
}
|
This program behaves as expected on platforms with an English a US locale:
Code Block |
---|
The date is Jun 20, 2014 Enjoy June! |
but fails on other locales. For example, the output for a German locale (specified by -Duser.language=de
) is:
Code Block |
---|
The date is 20.06.2014 It's not June. |
Compliant Solution (Explicit Locale)
This compliant solution forces the date to be printed in an English format, regardless of the current locale.:
Code Block | ||||
---|---|---|---|---|
| ||||
String myString = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.US).format(rightNow.getTime()); /* ...restRest of code unchanged... */ |
Compliant Solution (Bypass Locale)
This compliant solution checks the date's MONTH
attribute without formatting it. While Although date representations vary by culture, the contents of a Calendar
date do not. Consequently, this code works in any locale.
Code Block | ||||
---|---|---|---|---|
| ||||
if (rightNow.get(Calendar.MONTH) == Calendar.JUNE) { /* ...restRest of code unchanged... */ |
Risk Assessment
Failure to specify the appropriate locale when using locale-dependent methods on local-dependent data without specifying the appropriate locale may result in unexpected behavior.
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
---|
STR02-J |
Medium |
Probable |
Medium | P8 | L2 |
Automated Detection
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
The Checker Framework |
| Tainting Checker | Trust and security errors (see Chapter 8) | ||||||
Parasoft Jtest |
| CERT.STR02.CCL CERT.STR02.CTLC | Use the optional java.util.Locale parameter Do not call 'Character.toLowerCase(char)' or 'Character.toUpperCase(char)' in an internationalized environment | ||||||
SonarQube |
| S1449 | Locale should be used in String operations |
Android Implementation Details
A developer can specify locale on Android using java.util.Locale
.
Bibliography
[API 2006] | Class |
[Seacord 2015] | |
[Schindler 12] |
The Policeman’s Horror: Default Locales, Default Charsets, and Default Timezones |
...
IDS08-J. Sanitize untrusted data passed to a regex IDS10-J. Do not split characters between two data structures