Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade github.com/Masterminds/vcs
to version 1.13.3 or higher.
github.com/Masterminds/vcs is a VCS Repo management through a common interface in Go.
Affected versions of this package are vulnerable to Command Injection via argument injection. When hg
is executed, argument strings are passed to hg
in a way that additional flags can be set. The additional flags can be used to perform a command injection.
package main
import (
"github.com/Masterminds/vcs"
)
func main(){
local := "--config=alias.init=!touch ./HELLO"
repo, _ := vcs.NewHgRepo("remote", local)
repo.Init()
}