Re: [cas-user] Radius -MFA in cas 6.6.8

2023-08-29 Thread Petr Bodnár
Hi Vikash, I'm a bit confused now - because what you describe about pinging a Radius server seems to be just fine: you can see in the source code of *RadiusMultifactorAuthenticationProvider* (here

[cas-user] Re: Disable loading of default services into registry on cas-management 6.6.3 server startup

2023-08-29 Thread Petr Bodnár
Martin, thanks for sharing the workaround. Regarding my suggestion above though, are you 100 % sure, you've overwritten the value of "cas.service-registry.core.init-from-json" to "false" in cas-management? Because it does default to "true" in its application.properties

Re: [cas-user] Radius -MFA in cas 6.6.8

2023-08-29 Thread Petr Bodnár
Not quite like that. From the linked source code (I haven't checked it live), its looks like "RadiusMultifactorAuthenticationProvider" (name of the class) is sent as both, username and password via the canPing method. On Tuesday, 29 August 2023 at 21:58:23 UTC+2 vikasha...@gmail.com wrote: > Th

[cas-user] cas.ticket.registry.jpa.autocommit=true ... why not?

2023-08-29 Thread Pablo Vidaurri
Seems default for JPA ticket registry has cas.ticket.registry.jpa.autocommit=false >From its description: The default auto-commit behavior of connections in the pool. Determined whether queries such as update/insert should be immediately executed without waiting for an underlying transaction

Re: [cas-user] Radius -MFA in cas 6.6.8

2023-08-29 Thread Vikash Chandra Ansh
Thanks for the clarification Peter. So you are saying that the username and password in canPing method radius server's inet address and shared secret respectively. On Wed, Aug 30, 2023, 1:15 AM Petr Bodnár wrote: > Hi Vikash, > > I'm a bit confused now - because what you describe about pinging

Re: [cas-user] View and Edit of allowedAtributes in cas-management 6.6.3

2023-08-29 Thread Ray Bon
Martin, Do you have attributes defined in the config file? e.g. cas.authn.attributeRepository.stub.attributes.mail=mail In 6.5 I have those in management.properties. Not sure if they can go in cas.properties. Ray On Tue, 2023-08-29 at 12:50 +, 'Büchler, Martin' via CAS Community wrote: No

[cas-user] View and Edit of allowedAtributes in cas-management 6.6.3

2023-08-29 Thread 'Büchler , Martin' via CAS Community
Hello there, Question is, how do we mange 'allowedAttributes' if we cannot view or edit them in the cas-management app? I want to view and edit the 'allowedAttributes' of 'attributeReleasePolicy' set up per service in the cas-management GUI. The XHR payload from URL http:///api/services/35 is

Re: [cas-user] Radius -MFA in cas 6.6.8

2023-08-29 Thread Vikash Chandra Ansh
Hi All, I have digged down the flow for Radius token MFA. It is referring to a class RadiusMultifactorProvider where canPing() method is called. Which further calls the RadiusServer.java where authenticate method(CasRadiusResponse) is called. This method is now validating username and password ag