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

fix: correct username and token validation #613

Merged
merged 1 commit into from
Apr 6, 2022
Merged

Conversation

Trott
Copy link
Member

@Trott Trott commented Mar 19, 2022

The current username and token validation regular expressions will match
any string. This adds tests and fixes the regular expressions.

@codecov
Copy link

codecov bot commented Mar 19, 2022

Codecov Report

Merging #613 (bb9daab) into main (5e85166) will increase coverage by 0.05%.
The diff coverage is 85.71%.

❗ Current head bb9daab differs from pull request most recent head 3f6e5a2. Consider uploading reports for the commit 3f6e5a2 to get more accurate results

@@            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              
Impacted Files Coverage Δ
lib/auth.js 87.28% <85.71%> (+1.57%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 5e85166...3f6e5a2. Read the comment docs.

lib/auth.js Outdated
if (typeof username !== 'string') {
errorExit(`username must be a string, received ${typeof username}`);
}
if (!/^[a-zA-Z0-9]+$/.test(username)) {
Copy link
Member

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:
image

Copy link
Member Author

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.

Verified

This commit was signed with the committer’s verified signature.
dlrobertson Dan Robertson
The current username and token validation regular expressions will match
any string. This adds tests and fixes the regular expressions.
@Trott Trott merged commit 64a977c into nodejs:main Apr 6, 2022
@Trott Trott deleted the validation branch April 6, 2022 00:33
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.

2 participants