Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible injection ? exec.Command() #63

Open
AYDEV-FR opened this issue Sep 21, 2020 · 2 comments
Open

Possible injection ? exec.Command() #63

AYDEV-FR opened this issue Sep 21, 2020 · 2 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@AYDEV-FR
Copy link
Contributor

Hi,
I have already posted an issue on your project, and while re-reading the code, I wonder about possible injections.
By using exec.Command(), especially the line exec.Command("sh -c", params).

cmd = exec.Command("sh", "-c", command)

Also in the UpgradeWithValues function, even if the use of the bianire helm in the first argument of exec.Command() prevents some injection.

cmd := exec.Command("helm", myargs...)

Why not use the Helm Go SDK for most actions on Helm. https://pkg.go.dev/helm.sh/helm/v3@v3.3.3/pkg/action#Upgrade for example.

@cvila84 cvila84 added enhancement New feature or request good first issue Good for newcomers labels Sep 21, 2020
@cvila84
Copy link
Member

cvila84 commented Sep 21, 2020

Hello,

I agree there is room for improvement here. I would be happy to review any PR for this :)

@AYDEV-FR
Copy link
Contributor Author

Hi,

I will fork and try to change only the functions:

func List(namespace string) (map[string]Release, error) {

func UpgradeWithValues(namespace string, releaseName string, chartPath string, resetValues bool, reuseValues bool, valueFiles []string, valuesSet []string, valuesSetString []string, valuesSetFile []string, force bool, timeout int, dryRun bool, debug bool) (Status, error) {

func Fetch(chart string, version string) (string, error) {

from /pkg/helm/helm.go

For the List() function we can probably use : https://pkg.go.dev/helm.sh/helm/v3@v3.3.3/pkg/action#List
For the UpgradeWithValues()we can probably use : https://pkg.go.dev/helm.sh/helm/v3@v3.3.3/pkg/action#Upgrade
For the Fetch()function we can probably use : https://pkg.go.dev/helm.sh/helm/v3@v3.3.3/pkg/action#ChartPull

I think a work is to be considered also on the /pkg/kubectl/kubectl.go file, which also uses a lot of exec.Command(), while there is the Kubernetes Client SDK here : https://github.com/kubernetes/client-go

I will surely propose a PR if I have the time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants