Fix NuGet key leak if publish fails #1530
Merged
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.
I've accidentally found that NuGet key might leak to the build logs if NuGet push fails.
It might happen that NuGet fails to publish package due to different reason (e.g. such version already exists). In this case the NuGet API key will leak to the build log:
You can easily see that NuGet key is
fd3b8f9b-8fc6-4c73-abb7-e2fd27420b2e
.It's very critical issue, as FAKE is used for a lot of OSS projects together with CI (e.g. AppVeyor). Build logs are always publicly available, so if NuGet push fails at least once, NuGet key will become publicly available.
I fix the issue by replacing the key with a
PRIVATEKEY
text in an exception message.