I've playing with Srping Security OAuth implementation for sime time now. In my SOA application I've implemented OAuth2 auth protocol. All user releated operations are secured with @Secured annotations. These operatoins are not a part from public rest api- like facebook graph api for example. They are part from application backend that serve these operations to the frontend.
So OAuth2 with access_token is one level of security. I want to add http-basic authentication over SSL for those operatoins in order to increase security of the system. If by any chance someone get user access_token to be impossible to connect without proper user:password to the rest operation.
The issues is that I can't find a way to force spring's http-basic filter to be exectuted before every request with the OAuth or before certain operation that requireds valid OAuth authentication.
This is my security configuration:
<http auto-config="true">
<intercept-url pattern="/user/**" access="ROLE_USER" />
<intercept-url pattern="/oauth/**" access="ROLE_USER" />
<intercept-url pattern="/**" access="IS_AUTHENTICATED_ANONYMOUSLY" />
<http-basic/>
<custom-filter ref="basicAuthenticationFilter" before="PRE_AUTH_FILTER"/>
</http>
From this point there is standard authentication-manager with alias "authenticationManager" and spring beans calls for http-basic filter.
Curl call to get access_token I run that
curl -d "username=user&password=user&grant_type=password&client_id=my-trusted-client"
\
http://admin:admin@localhost:8080/application/oauth/authorize
and I get successfull response. If I try to query with wrong http-basic credentials admin: ad - I get 401. And if I remove the http-basic authentication the operation still works.
When I make call to protected resource with / or without http-basic auth and pass correct OAuth header every time rest call returns successfull result.
So I want to force using of http-basic auth for protected resource and this I'm trying to do with security context configuration only - unsuccessfully
Should I implement custon filter for http-basic authentication somewhere elese.
The flow sequence that I'm trying to create for operations are:
Http-basic authe -> success -> OAuth authentication -> success -> access to protected resource.
If http-basic is wrong or OAuth authentication is wrong -> can't access to protected resource.
Now I'm start wondering is there any point from that http-basic filters and just add ssl for the protected operations.