In all the versions of NuProcess where it forks processes by using the JVM's JavajavalangUNIXProcessforkAndExec method (1.2.0+), attackers can use NUL characters in their strings to perform command line injection. Java's ProcessBuilder isn't vulnerable because of a check in ProcessBuilder.start. NuProcess is missing that check.
This vulnerability can only be exploited to inject command line arguments on Linux. - On macOS, any argument with a NUL character is truncated at that character. This means the malicious arguments are never seen by the started process. - On Windows, the entire command line is truncated at the first NUL character. This means the malicious arguments, and any intentional arguments provided after them, are never seen by the started process.
2.0.5
Users of the library can sanitize command strings to remove NUL characters prior to passing them to NuProcess for execution.
None.
{ "nvd_published_at": "2022-09-26T14:15:00Z", "github_reviewed_at": "2022-09-30T04:29:11Z", "severity": "HIGH", "github_reviewed": true, "cwe_ids": [ "CWE-77" ] }