-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Only allow token authentication with 2FA enabled #2184
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7673b8b
Don't allow for plain username/password authentication when 2FA is en…
02a101e
Removed debugging statement
6ce636f
Don't assume a token belongs to a given user, handle two-factor error…
e6484d5
Simplified user/token matching, refactored error handling for two-fac…
f6857ec
Change authentication response to avoid bruteforcing
9a14c6d
Add TODO item as a comment for changing the response for security pur…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,9 +156,22 @@ func HTTP(ctx *context.Context) { | |
ctx.Handle(http.StatusInternalServerError, "UserSignIn error: %v", err) | ||
return | ||
} | ||
} | ||
|
||
if authUser == nil { | ||
authUser, err = models.GetUserByName(authUsername) | ||
|
||
if err != nil { | ||
if models.IsErrUserNotExist(err) { | ||
ctx.HandleText(http.StatusUnauthorized, "invalid credentials") | ||
} else { | ||
ctx.Handle(http.StatusInternalServerError, "GetUserByName", err) | ||
} | ||
return | ||
} | ||
|
||
// Assume username now is a token. | ||
token, err := models.GetAccessTokenBySHA(authUsername) | ||
// Assume password is a token. | ||
token, err := models.GetAccessTokenBySHA(authPasswd) | ||
if err != nil { | ||
if models.IsErrAccessTokenNotExist(err) || models.IsErrAccessTokenEmpty(err) { | ||
ctx.HandleText(http.StatusUnauthorized, "invalid token") | ||
|
@@ -167,13 +180,25 @@ func HTTP(ctx *context.Context) { | |
} | ||
return | ||
} | ||
|
||
if authUser.ID != token.UID { | ||
ctx.HandleText(http.StatusUnauthorized, "invalid credentials") | ||
return | ||
} | ||
|
||
token.Updated = time.Now() | ||
if err = models.UpdateAccessToken(token); err != nil { | ||
ctx.Handle(http.StatusInternalServerError, "UpdateAccessToken", err) | ||
} | ||
authUser, err = models.GetUserByID(token.UID) | ||
if err != nil { | ||
ctx.Handle(http.StatusInternalServerError, "GetUserByID", err) | ||
|
||
} else { | ||
_, err = models.GetTwoFactorByUID(authUser.ID) | ||
|
||
if err == nil { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to also check that |
||
ctx.HandleText(http.StatusUnauthorized, "Users with two-factor authentication enabled cannot perform HTTP/HTTPS operations via plain username and password. Please create and use a personal access token on the user settings page") | ||
return | ||
} else if !models.IsErrTwoFactorNotEnrolled(err) { | ||
ctx.Handle(http.StatusInternalServerError, "IsErrTwoFactorNotEnrolled", err) | ||
return | ||
} | ||
} | ||
|
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.
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.
You need to also check if user
models.GetUserByName(authUsername)
returns correct user and validate that returned user.ID is equal to token.UID