-
Notifications
You must be signed in to change notification settings - Fork 159
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
[Linter] Flag usage of weak PRNG #4514
Conversation
Pinging @elastic/elastic-agent (Team:Elastic-Agent) |
This pull request does not have a backport label. Could you fix it @ycombinator? 🙏
NOTE: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Absolutely should have this enabled.
I'm not sure this linter check is working as I'd expected. There are a number of occurrences of
Maybe the linter only checks files changed as part of the PR? I'm going to try and add a new use of |
Interestingly, if I install and run
So something about how this linter rule is being enabled in |
148d92a
to
635fddd
Compare
635fddd
to
e4a74d6
Compare
|
Pinging @elastic/elastic-agent-control-plane (Team:Elastic-Agent-Control-Plane) |
Going to close this PR unmerged as I'm not finding time to figure out what's going on (see #4514 (comment)). |
What does this PR do?
This PR implements a linter check that will raise a flag wherever we use a weak pseudorandom number generator in the code.
Why is it important?
To ensure we don't use a weak PRNG in security contexts, e.g. generating random passwords or tokens.
Note that it's perfectly OK to use a weak PRNG in non-security contexts, e.g. generating a random number to use in tests. In fact, we expect that such uses will be more common than security-related uses. Still, we want to have this linter rule in place to err on the side of caution.
To prevent the linter from flagging such non-security-related uses, add the following annotation above the corresponding line of code:
//nolint:gosec // G404 <reason>