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

add verbose flag to prevent logging authtoken #44

Closed
wants to merge 1 commit into from

Conversation

LenaHoinkis
Copy link
Contributor

@LenaHoinkis LenaHoinkis commented Jun 17, 2020

Currently all arguments get logged including the authorization token. Even if a authtokenFile is given it will print the token.
For security reasons I would suggest to only print the argument logs, if the verbose parameter is set.


This change is Reviewable

@coveralls
Copy link

Pull Request Test Coverage Report for Build 135

  • 1 of 1 (100.0%) changed or added relevant line in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 100.0%

Totals Coverage Status
Change from base Build 129: 0.0%
Covered Lines: 378
Relevant Lines: 378

💛 - Coveralls

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LenaHoinkis -- keeping the auth token out of logs is a good idea. I've proposed an alternative strategy that I think will meet your needs and satisfy the typical deployments for M-Lab. Let me know what you think.

Reviewable status: 0 of 1 LGTMs obtained


cmd/github_receiver/main.go, line 42 at r1 (raw file):

var (
	authtoken       = flag.String("authtoken", "", "Oauth2 token for access to github API.")
	authtokenFile   = flagx.FileBytes{}

Hmm, I was just talking about this issue in another repo. I think it's time to fix generally. How about the following strategy instead?

flagx.FileBytesArray{} does the right thing about managing the original file name for flag logging and making the file contents available.

In general, M-Lab wants to preserve the ArgsFromEnv feature for daemons by default. The *WithLog option was added to disable that behavior for CLI commands.

Using flagx.FileBytesArray here should satisfy the same requirements.

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: 0 of 1 LGTMs obtained


cmd/github_receiver/main.go, line 42 at r1 (raw file):

Previously, stephen-soltesz (Stephen Soltesz) wrote…

Hmm, I was just talking about this issue in another repo. I think it's time to fix generally. How about the following strategy instead?

flagx.FileBytesArray{} does the right thing about managing the original file name for flag logging and making the file contents available.

In general, M-Lab wants to preserve the ArgsFromEnv feature for daemons by default. The *WithLog option was added to disable that behavior for CLI commands.

Using flagx.FileBytesArray here should satisfy the same requirements.

@LenaHoinkis -- I'm working on a better fix for this in m-lab/go#124

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LenaHoinkis I've merged m-lab/go#124 which adds a new flagx.File type that has the properties we want here.

If you'd like to complete this PR, please use that type for the authtokenFile.

If I don't hear from you by EOD Monday, I'll make the corresponding change, and close this PR.

Reviewable status: 0 of 1 LGTMs obtained

@stephen-soltesz
Copy link
Contributor

I've merged #46

I'll tag a new version next. I'll close this PR because I believe #46 addresses the same requirement.

Thank you for your help!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants