VYPR
High severity8.8NVD Advisory· Published Jun 10, 2024· Updated Apr 15, 2026

CVE-2024-35241

CVE-2024-35241

Description

Composer is a dependency manager for PHP. On the 2.x branch prior to versions 2.2.24 and 2.7.7, the status, reinstall and remove commands with packages installed from source via git containing specially crafted branch names in the repository can be used to execute code. Patches for this issue are available in version 2.2.24 for 2.2 LTS or 2.7.7 for mainline. As a workaround, avoid installing dependencies via git by using --prefer-dist or the preferred-install: dist config setting.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
composer/composerPackagist
>= 2.0, < 2.2.242.2.24
composer/composerPackagist
>= 2.3, < 2.7.72.7.7

Patches

2
b93fc6ca437d

Merge pull request from GHSA-47f6-5gq3-vx9c

https://github.com/composer/composerJordi BoggianoJun 10, 2024via ghsa
1 file changed · +1 1
  • src/Composer/Downloader/GitDownloader.php+1 1 modified
    @@ -290,7 +290,7 @@ public function getUnpushedChanges(PackageInterface $package, $path)
                         $unpushedChanges = null;
                     }
                     foreach ($remoteBranches as $remoteBranch) {
    -                    $command = sprintf('git diff --name-status %s...%s --', $remoteBranch, $branch);
    +                    $command = sprintf('git diff --name-status %s --', ProcessExecutor::escape($remoteBranch.'...'.$branch));
                         if (0 !== $this->process->execute($command, $output, $path)) {
                             throw new \RuntimeException('Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput());
                         }
    
ee28354ca8d3

Merge pull request from GHSA-47f6-5gq3-vx9c

https://github.com/composer/composerJordi BoggianoJun 10, 2024via ghsa
1 file changed · +2 2
  • src/Composer/Downloader/GitDownloader.php+2 2 modified
    @@ -294,9 +294,9 @@ public function getUnpushedChanges(PackageInterface $package, string $path): ?st
                         $unpushedChanges = null;
                     }
                     foreach ($remoteBranches as $remoteBranch) {
    -                    $command = sprintf('git diff --name-status %s...%s --', $remoteBranch, $branch);
    +                    $command = ['git', 'diff', '--name-status', $remoteBranch.'...'.$branch, '--'];
                         if (0 !== $this->process->execute($command, $output, $path)) {
    -                        throw new \RuntimeException('Failed to execute ' . $command . "\n\n" . $this->process->getErrorOutput());
    +                        throw new \RuntimeException('Failed to execute ' . implode(' ', $command) . "\n\n" . $this->process->getErrorOutput());
                         }
     
                         $output = trim($output);
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

11

News mentions

0

No linked articles in our index yet.