-
Notifications
You must be signed in to change notification settings - Fork 115
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
fix: correct username and token validation #613
Conversation
Codecov Report
@@ Coverage Diff @@
## main #613 +/- ##
==========================================
+ Coverage 84.10% 84.15% +0.05%
==========================================
Files 37 37
Lines 4051 4064 +13
==========================================
+ Hits 3407 3420 +13
Misses 644 644
Continue to review full report at Codecov.
|
lib/auth.js
Outdated
if (typeof username !== 'string') { | ||
errorExit(`username must be a string, received ${typeof username}`); | ||
} | ||
if (!/^[a-zA-Z0-9]+$/.test(username)) { |
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.
These are GitHub usernames, aren't they? They're allowed to contain hyphens, at least according to https://github.com/join:
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.
I added hyphens as a permissible character.
The current username and token validation regular expressions will match any string. This adds tests and fixes the regular expressions.
The current username and token validation regular expressions will match
any string. This adds tests and fixes the regular expressions.