mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	add remote ip to the invalid credentials error message (#9918)
This commit is contained in:
		@@ -198,14 +198,14 @@ func HTTP(ctx *context.Context) {
 | 
				
			|||||||
					authUser, err = models.GetUserByName(authUsername)
 | 
										authUser, err = models.GetUserByName(authUsername)
 | 
				
			||||||
					if err != nil {
 | 
										if err != nil {
 | 
				
			||||||
						if models.IsErrUserNotExist(err) {
 | 
											if models.IsErrUserNotExist(err) {
 | 
				
			||||||
							ctx.HandleText(http.StatusUnauthorized, "invalid credentials")
 | 
												ctx.HandleText(http.StatusUnauthorized, fmt.Sprintf("invalid credentials from %s", ctx.RemoteAddr()))
 | 
				
			||||||
						} else {
 | 
											} else {
 | 
				
			||||||
							ctx.ServerError("GetUserByName", err)
 | 
												ctx.ServerError("GetUserByName", err)
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
						return
 | 
											return
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					if authUser.ID != token.UID {
 | 
										if authUser.ID != token.UID {
 | 
				
			||||||
						ctx.HandleText(http.StatusUnauthorized, "invalid credentials")
 | 
											ctx.HandleText(http.StatusUnauthorized, fmt.Sprintf("invalid credentials from %s", ctx.RemoteAddr()))
 | 
				
			||||||
						return
 | 
											return
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
@@ -231,7 +231,7 @@ func HTTP(ctx *context.Context) {
 | 
				
			|||||||
				}
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				if authUser == nil {
 | 
									if authUser == nil {
 | 
				
			||||||
					ctx.HandleText(http.StatusUnauthorized, "invalid credentials")
 | 
										ctx.HandleText(http.StatusUnauthorized, fmt.Sprintf("invalid credentials from %s", ctx.RemoteAddr()))
 | 
				
			||||||
					return
 | 
										return
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user