Skip to content

Commit 3130a74

Browse files
committed
Fix windows parameter encoding to prevent abuse of unicode characters with best fit encoding conversion
1 parent 5aa7b03 commit 3130a74

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Composer/Util/ProcessExecutor.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,9 @@ private static function escapeArgument($argument): string
495495
}
496496

497497
// New lines break cmd.exe command parsing
498-
$argument = strtr($argument, "\n", ' ');
498+
// and special chars like the fullwidth quote can be used to break out
499+
// of parameter encoding via "Best Fit" encoding conversion
500+
$argument = strtr($argument, ["\n" => ' ', '' => '"', '' => ':', '' => '/']);
499501

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

0 commit comments

Comments
 (0)