-
Notifications
You must be signed in to change notification settings - Fork 1.4k
validate redirect origin in oidc rp sign-in completion #3241
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
Open
dxbjavid
wants to merge
4
commits into
apache:main
Choose a base branch
from
dxbjavid:oidc-rp-redirect-origin-check
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+138
−1
Open
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
cefae8b
validate redirect origin in oidc rp sign-in completion
dxbjavid b9a1676
harden redirect state in oidc rp filter rather than completion service
dxbjavid e9aef08
derive same-origin base from request uri info instead of message context
dxbjavid ef81a78
add filter test for state with scheme but no authority
dxbjavid 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 hidden or 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
This file contains hidden or 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
100 changes: 100 additions & 0 deletions
100
...oidc/src/test/java/org/apache/cxf/rs/security/oidc/rp/OidcRpAuthenticationFilterTest.java
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,100 @@ | ||
| /** | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
| package org.apache.cxf.rs.security.oidc.rp; | ||
|
|
||
| import java.lang.reflect.Method; | ||
| import java.net.URI; | ||
|
|
||
| import jakarta.ws.rs.container.ContainerRequestContext; | ||
| import jakarta.ws.rs.core.MultivaluedHashMap; | ||
| import jakarta.ws.rs.core.MultivaluedMap; | ||
| import jakarta.ws.rs.core.UriInfo; | ||
|
|
||
| import org.junit.Test; | ||
|
|
||
| import static org.junit.Assert.assertEquals; | ||
| import static org.junit.Assert.assertFalse; | ||
| import static org.junit.Assert.assertTrue; | ||
| import static org.mockito.Mockito.mock; | ||
| import static org.mockito.Mockito.when; | ||
|
|
||
| public class OidcRpAuthenticationFilterTest { | ||
|
|
||
| private static final URI ABSOLUTE_PATH = URI.create("https://app.example.com:8080/services/rp/complete"); | ||
|
|
||
| @Test | ||
| public void testDropsCrossOriginState() { | ||
| MultivaluedMap<String, String> state = requestState("https://evil.example.com/phish"); | ||
| assertFalse(state.containsKey("state")); | ||
| } | ||
|
|
||
| @Test | ||
| public void testDropsProtocolRelativeState() { | ||
| MultivaluedMap<String, String> state = requestState("//evil.example.com/phish"); | ||
| assertFalse(state.containsKey("state")); | ||
| } | ||
|
|
||
| @Test | ||
| public void testDropsUserinfoHostConfusionState() { | ||
| MultivaluedMap<String, String> state = requestState("https://app.example.com:8080@evil.example.com/phish"); | ||
| assertFalse(state.containsKey("state")); | ||
| } | ||
|
|
||
| @Test | ||
| public void testKeepsSameOriginState() { | ||
| MultivaluedMap<String, String> state = requestState("https://app.example.com:8080/services/protected"); | ||
| assertTrue(state.containsKey("state")); | ||
| assertEquals("https://app.example.com:8080/services/protected", state.getFirst("state")); | ||
| } | ||
|
|
||
| @Test | ||
| public void testKeepsRelativeState() { | ||
| MultivaluedMap<String, String> state = requestState("/services/protected"); | ||
| assertTrue(state.containsKey("state")); | ||
| assertEquals("/services/protected", state.getFirst("state")); | ||
| } | ||
|
|
||
| private MultivaluedMap<String, String> requestState(String stateLocation) { | ||
| MultivaluedMap<String, String> query = new MultivaluedHashMap<>(); | ||
| query.putSingle("state", stateLocation); | ||
|
|
||
| UriInfo uriInfo = mock(UriInfo.class); | ||
| when(uriInfo.getQueryParameters(true)).thenReturn(query); | ||
| when(uriInfo.getAbsolutePath()).thenReturn(ABSOLUTE_PATH); | ||
|
|
||
| ContainerRequestContext rc = mock(ContainerRequestContext.class); | ||
| when(rc.getUriInfo()).thenReturn(uriInfo); | ||
| when(rc.getMediaType()).thenReturn(null); | ||
|
|
||
| return invokeToRequestState(new OidcRpAuthenticationFilter(), rc); | ||
| } | ||
|
|
||
| @SuppressWarnings("unchecked") | ||
| private static MultivaluedMap<String, String> invokeToRequestState(OidcRpAuthenticationFilter filter, | ||
| ContainerRequestContext rc) { | ||
| try { | ||
| Method method = OidcRpAuthenticationFilter.class.getDeclaredMethod("toRequestState", | ||
| ContainerRequestContext.class); | ||
| method.setAccessible(true); | ||
| return (MultivaluedMap<String, String>)method.invoke(filter, rc); | ||
| } catch (ReflectiveOperationException ex) { | ||
| throw new IllegalStateException(ex); | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.