feat(java): detect ProcessBuilder command/arguments built from macro/override-expanded values (CWE-88) - #144
Open
ai-anant wants to merge 1 commit into
Conversation
…override-expanded values (CWE-88)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
New Java rule for the
java/tree: detects ajava.lang.ProcessBuildercommand (or an argument appended to it via.add(...)/.command(...)) that is assembled from a value produced by environment/macro expansion or an override-map lookup —env.expand(...),hudson.Util.replaceMacro(...), agetOverride(...)/getValue(overrides)resolver, or aMap.get(...)on an override map.Why
Such values are frequently sourced from build parameters / host environment that a less-privileged caller can influence. Because the expanded text is appended verbatim into the process argv, a crafted value can inject additional option verbs (argument injection, CWE-88), which can override flags the invoking program sets (e.g. a credential/
--token/namespace option or client impersonation flags) and can escalate to command injection (CWE-78) wherever a shell later interprets the assembled string.Rule
codevigilant.java.jenkins.command-injection.processbuilder-macro-expanded-argumentjava/jenkins/command-injection/processbuilder-macro-expanded-argument.yamlValidation
semgrep --validate --config java/passes (0 configuration errors)..add(env.expand(...)),.add(getOverride(...))afternew ProcessBuilder()), 0 findings on a literal-only negative repro.Test