Skip to content
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

Pr/630 - DisableSso flag, Delete option, skip when running on non windows #636

Merged
merged 3 commits into from
Jul 2, 2018

Conversation

hazendaz
Copy link
Member

@hazendaz hazendaz commented Jul 1, 2018

This applies all changes of Pr/630 with exception to the browser being forced to windows only.

@hazendaz
Copy link
Member Author

hazendaz commented Jul 1, 2018

@MoreHeapSpace @pedroneil Please take a quick look over this PR adjustment.

The only item pulled out was the disabling if browser was non windows. I agree on that it should be separate init param and not tied to the windows check. I did rewrite the windows check to be more performant so it was not constantly checking that it was on windows from system params and confirming using 'win' which is generally better than 'Windows', although I just released I forgot to handle casing so I'll push that in a moment.

thanks,

Jeremy

MoreHeapSpace and others added 2 commits July 1, 2018 15:13
- Added ability to disable SSO through filter init param 'disableSSO'. This is usefull if you require to bypass the SSO process for troubleshooting/diagnostics and provide login by some other means

- Resume filter chain if deployed on windows platform
@hazendaz
Copy link
Member Author

hazendaz commented Jul 1, 2018

I"m changing 'enableSSO' to disableSSO'. The reason behind that is that this would otherwise disable entirely unless user explicitely sets enableSSO to true in init params. As such it would be a breaking change and I do not believe we should force setting of that value by default. So 'disableSSO' makes more sense. Adjustment coming shortly plus build will be fixed here :)

@hazendaz
Copy link
Member Author

hazendaz commented Jul 1, 2018

reference #630

@hazendaz hazendaz changed the title Pr/630 - EnableSso flag, Delete option, skip when running on non windows Pr/630 - DisableSso flag, Delete option, skip when running on non windows Jul 1, 2018
@hazendaz hazendaz merged commit 15660fa into master Jul 2, 2018
@@ -106,6 +112,20 @@ public void doFilter(final ServletRequest sreq, final ServletResponse sres, fina
NegotiateSecurityFilter.LOGGER.debug("{} {}, contentlength: {}", request.getMethod(), request.getRequestURI(),
Integer.valueOf(request.getContentLength()));

// If we are not in a windows environment, resume filter chain
if (!NegotiateSecurityFilter.isWindows()) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm late to this PR, sorry, but what's the scenario for this? Why would one ever run this filter on a non-windows system? And if that system supports SSO then why would this be skipping it?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can see using vintela and waffle with both activated. This would short ciruit one vs the other allowing them to both remain activated without having to comment one or the other filter out. There are other means to achieve the same but I think trying to do it centrally while waffle doesn't support *nix seems appropriate. I did downgrade the log to debug in this case as I felt info was too high. But then again I'm imagining this the way I'm looking to leverage the feature so not sure of requesters ambitions here :)

*/
public boolean isNtlmType1PostAuthorizationHeader() {
if (!"POST".equals(this.request.getMethod()) && !"PUT".equals(this.request.getMethod())) {
if (!"POST".equals(this.request.getMethod()) && !"PUT".equals(this.request.getMethod())
&& !"DELETE".equals(this.request.getMethod())) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAIK the NTLM spec says these two methods must be POST or PUT and that the browser will only send those two preemptively - where/when has this changed and with what browser are we seeing it?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue was stated to be with IE. There was a link on the original PR, possibly on here still as well.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm now not convinced this was fixing anything. The two links I read entirely through and it's regarding a POST without a post body during pre-authentication. That is quite different situation than a DELETE being used. I'll look to remove this unless there is compelling reason for it to stay. @MoreHeapSpace Can you elaberate as to why DELETE solves an issue here?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for the late reply. I've encountered this problem during pre-authentication on a DELETE action that contains a body. Yes the articles do only document about POST, sorry should have clarified that the same process happens with the DELETE action

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the spec doesn't call for DELETE we should be very careful adding it. What's the client that's exhibiting this behavior?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, and the client is IE 11

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suspect the same will happen the PATCH method. In fact with any request that contains a body. I have yet to test these as my rest api doesn't make use of that method.

While the NTLM spec only refers to POST or PUT, I believe IE will lock the body all requests

@@ -32,6 +32,7 @@ Filter Options

The filter can be configured with the following `init-param` options.

* disableSSO: Allows for the enabling/disabling of Single-SignOn Security Filter.This is useful if you require to bypass the SSO process for troubleshooting/diagnostics and provide login by some other means.
Copy link
Collaborator

@dblock dblock Jul 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Feels to me that you never would want this feature and if you need to disable SSO for troubleshooting or diagnostics you would comment out/delete the filter.

This is also why the spec for these filters doesn't include an enabled feature, it can be accomplished as easily bu other means.

Finally, this is a negative flag (disable), which is an anti-pattern and if for some reason something like this should be added it probably would be enabled defaulting to true.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can imagine this need for a newly onboarded team member that needs to debug and code within the app but is waiting on getting proper AD access to the app. Sure option is to disable filter by other means but this is nicer I think. Plus some automation can be put around the process, such as a bash script that would ask the user if they wanted it on or off.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have an on-prem offering of our solution where our client's have the ability to enable or disable the use of SSO, and we automate the restarting of the server with whatever selection they've made. Makes it much easier than having a client find and go through xml files to comment/remove xml fragments.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That makes sense, so my comment is really only about naming of this option and the location where it's implemented.

@dblock
Copy link
Collaborator

dblock commented Jul 4, 2018

I'll leave this to you @hazendaz, but I still recommend reverting the entire PR even if a version with these options has shipped. There're no useful explanations of why these features are needed from @MoreHeapSpace #630, I am not personally satisfied with a newly onboarded team member example since I've never seen one such team member. I do see a ton of risks though.

I worry that there's code being introduced that is skipping security filters under various conditions that get increasingly complicated or fragile. This increases security risks and more branches are not even tested (eg. there're no tests that the filer is skipped on linux for example because these filters aren't supposed to even run on Linux).

The OS check for the word "win" in the OS string is a great example of how bad this can get and how that kind of code gets buried deep. When someone gets hacked tomorrow because a non-educated user is toggling enableSSO for "testing purposes" because they see an auth popup in a browser against a production server.

@dblock
Copy link
Collaborator

dblock commented Jul 4, 2018

@pedroneil I'm curious, how is the enable/disable flag helping you? Why are you installing the filter on a non-Windows environment?

Enabling SSO on *nix against Active Directory with Samba would be great. I've spent two years trying to make that work on and off without success when I was actively maintaining this library.

@pedroneil
Copy link
Contributor

@dblock I don't and won't ever use disableSSO and I didn't want the OS checks.

My comment on #630; I should have just written, "please don't". rather make the comments that I did trying to influence a "not pull"

When I deploy the playbooks would use os family and create different web deployments for linux and windows.

PS:
I do understand how some Enterprise deployments someone might only have operator access where all a person can do is change Servlet and Filter parameters and they do not have permissions to "remove" a filter from the chain.

@gstanchev
Copy link

You can set the protected URI to some bogus location which essentially disables the filter just as easy as setting a parameter to false or true. One reason to have enabled/disabled is if you have some tool that actively manages your filters (we have written such tool and it is considerably easier to set a boolean param than moving XML in and out of the deployment descriptor or commenting the filter defs).

@pedroneil
Copy link
Contributor

similarly would be to use the excludePatterns ./. which will exclude everything and there would be no need to introduce a new init-param

@hazendaz
Copy link
Member Author

hazendaz commented Jul 6, 2018

While I normally would not like any ability to disable the filter, working examples I see far too often already have extended and disabled anyways in very inconsistent ways. So given, it's just as easy to disable the entire thing through other means, for automation purposes, I can see some limited value to having a disableSSO. I'm not yet convinced that exposes a security risk here when it's just as easy to do something really stupid and turn it off in a production environment. Hence why I changed the original request so SSO was not otherwise always disabled unless asked for. Although that does call into question the entire original PR.

For the not windows short circuit, I see more value on that and it fits a use case I'm looking at. However, it is easily manipulated check. I do have a flip type of check elsewhere to short circuit vintela in a similar way on windows and a unit test that will pretend to be linux on windows. I think the only way to make that stronger is to not suggest there is another authentication mechanism but to enforce it through some further registration.

Now going further, seeing the other holes here with the exclude pattern urls raises my interest even more. I think we should ultimately prevent a short circuit like that which is rather undocumented.

At the moment, a lot of food for thought.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants