spring-projects / spring-projects/spring-security
Using XML configuration, separate HTTP elements share authentication
Nobody has claimed this yet.
- Dominant language
- Java
- Stars
- 9.6k
- Forks
- 6.3k
- Avg merge
- 2d 11h
- Merged PRs (30d)
- 52
Description
I created an XML file to configure the Spring Security in my application:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/security
https://www.springframework.org/schema/security/spring-security.xsd">
<http pattern="/B.html">
<headers >
<frame-options disabled="true"></frame-options>
</headers>
<http-basic />
<intercept-url pattern="*" access="permitAll" />
</http>
<http pattern="/**">
<intercept-url pattern="/**" access="isAuthenticated()" />
<http-basic />
</http>
.
.
.
</beans:beans>
The expectation is that requests for "/B.html" will have the XFRAME header disabled AND not require authentication, and all other request would have the default headers and require authentication.
In fact, requests for "/B.html" do have the XFRAME header disables (as expected) but require authentication.
It appears that the filter that does the authenication applies the rules for both sections, so that the first rule permits access and the second rule requires authentication, rather than only applying the rules from the relevant HTTP element
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the reported XML configuration with separate elements and requests to /B.html and other paths. Trace how the matching HTTP element's authentication rules are applied; done means /B.html permits access while disabling the XFRAME header, and other requests retain default headers and require authentication.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java, spring
- Domain
- authentication, security
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100