Escape provider name in oauth2 provider redirect (#12648)
Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
		
							parent
							
								
									9bc69ff26e
								
							
						
					
					
						commit
						58f57b3b6c
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -6,6 +6,7 @@ package oauth2 | |||
| 
 | ||||
| import ( | ||||
| 	"net/http" | ||||
| 	"net/url" | ||||
| 
 | ||||
| 	"code.gitea.io/gitea/modules/log" | ||||
| 	"code.gitea.io/gitea/modules/setting" | ||||
|  | @ -119,7 +120,7 @@ func RemoveProvider(providerName string) { | |||
| 
 | ||||
| // used to create different types of goth providers
 | ||||
| func createProvider(providerName, providerType, clientID, clientSecret, openIDConnectAutoDiscoveryURL string, customURLMapping *CustomURLMapping) (goth.Provider, error) { | ||||
| 	callbackURL := setting.AppURL + "user/oauth2/" + providerName + "/callback" | ||||
| 	callbackURL := setting.AppURL + "user/oauth2/" + url.PathEscape(providerName) + "/callback" | ||||
| 
 | ||||
| 	var provider goth.Provider | ||||
| 	var err error | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue