Skip to content

Commit 04a63b3

Browse files
committed
Add more characters for best fit encoding protection
1 parent ad8985e commit 04a63b3

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

src/Composer/Util/ProcessExecutor.php

+15-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,21 @@ private static function escapeArgument($argument): string
497497
// New lines break cmd.exe command parsing
498498
// and special chars like the fullwidth quote can be used to break out
499499
// of parameter encoding via "Best Fit" encoding conversion
500-
$argument = strtr($argument, ["\n" => ' ', '' => '"', '' => ':', '' => '/']);
500+
$argument = strtr($argument, [
501+
"\n" => ' ',
502+
"\u{ff02}" => '"',
503+
"\u{02ba}" => '"',
504+
"\u{301d}" => '"',
505+
"\u{301e}" => '"',
506+
"\u{030e}" => '"',
507+
"\u{ff1a}" => ':',
508+
"\u{0589}" => ':',
509+
"\u{2236}" => ':',
510+
"\u{ff0f}" => '/',
511+
"\u{2044}" => '/',
512+
"\u{2215}" => '/',
513+
"\u{00b4}" => '/',
514+
]);
501515

502516
// In addition to whitespace, commas need quoting to preserve paths
503517
$quote = strpbrk($argument, " \t,") !== false;

0 commit comments

Comments
 (0)