mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-23 10:04:01 +08:00
AOSP: Ignore quotes in safe_print().
If the value being printed has embedded quotes ("), then printing those quotes could confuse other tools when parsing the value. This is the simplest CL to fix the security issue, and we can circle back to think about more robust escaping in a future CL. Signed-off-by: Theodore Ts'o <tytso@mit.edu> Bug: 80436257 Test: manual Change-Id: Ica17f2c5701573bceafe34f20110d230a3925483 From AOSP commit: efe90c297a8df591c051fdbfacb92b5283390bba
This commit is contained in:
parent
0c625fed12
commit
c258774300
@ -87,7 +87,9 @@ static void safe_print(const char *cp, int len)
|
||||
fputc('^', stdout);
|
||||
ch ^= 0x40; /* ^@, ^A, ^B; ^? for DEL */
|
||||
}
|
||||
fputc(ch, stdout);
|
||||
if (ch != '"') {
|
||||
fputc(ch, stdout);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user