spring-security-kerberos
spring-security-kerberos copied to clipboard
Spring Security Kerberos
In KerberosServiceAuthenticationProvider the method authenticate may throw GSSException. As GSSException is not a AuthenticationException this causes the ProviderManager to skip other AuthenticationProviders and lead to a 500 response in a...
I have setup the Kerberos environment as per the setup steps in the document here : [http://docs.spring.io/spring-security-kerberos/docs/1.0.2.BUILD-SNAPSHOT/reference/htmlsingle/#browserspnegoconfig] I was able to run the spnego-form-auth samples. However on trying to run...
Hi,I have encountered a problem when I parse the Kerberos Token by constructing org.jaaslounge.decoding.kerberos.KerberosToken,The error info is as below: Malformed Kerberos Token But my data is from windows AD domain...
I have open a question i.e. in the moment the context is being generated: context = SpringApplication.run(new Object[] { WebSecurityConfig.class, VanillaWebConfiguration.class, WebConfiguration.class }, new String[] { "--security.basic.enabled=true", "--security.user.name=username", "--security.user.password=password", "--serverPrincipal="...
Got a "Clock skew too great" error recently and was wondering why the user was not redirected to the login-form after the auto-login failed. The error trace is: 20.01.2016 10:19:23.291...
KerberosRestTemplate doExecute should not wrap HTTPClientErrroException or HTTPServerErrorException into RestClientException
Hi folks, are there plans to integrate the work that was done by Grant Cermak in https://jira.spring.io/browse/SES-94 to allow PAC decoding in order to get the granted authorities for an...
Currently SpnegoAuthenticationProcessingFilter.doFilter() is doing ``` if (header != null && (header.startsWith("Negotiate ") || header.startsWith("Kerberos "))) { ... if (successHandler != null) { successHandler.onAuthenticationSuccess(request, response, authentication); } } chain.doFilter(request, response); ```...
When you check http://docs.spring.io/spring-security-kerberos/docs/1.0.x/api/ click package `demo.app` it shows multiple `Application` and other classes however the links lead to a single file (understandably so). Can be prevented if different packages...
Currently `KerberosRestTemplate` only works with keytab and service principal based credentials. It would be great if we can provide kerberos username and password at runtime to this class and be...