*I'm Having a redirect loop after successfully authenticating against AD ( 
by selecting some user attributes from AD and getting them successfully ), 
I don't know about the MVC dotnet client configuration because the only 
documentation I found was for WebForms ( if it was the reason for that ) , 
please help me with that !*
--------------------------------------------------------
*SERVICE REGISTRY FILE*
--------------------------------------------------------
{
    "@class": "org.apereo.cas.services.RegexRegisteredService",
    "serviceId": "https://localhost:5822/";,
    "name": "AspClient",
    "id": 10000003,
    "description": "This is ASP Client for CAS",
    "attributeReleasePolicy": {
        "@class": 
"org.apereo.cas.services.ReturnAllowedAttributeReleasePolicy",
        "authorizedToReleaseCredentialPassword": false,
        "authorizedToReleaseProxyGrantingTicket": true,
        "allowedAttributes": [
            "java.util.ArrayList",
            [
                "cn",
                "mail",
                "sn",
                "memberOf"
            ]
        ]
    },
    "evaluationOrder": 10000,
    "logoutUrl": "https://localhost:5822/TestCasClient/Home/Logout";,
    "accessStrategy": {
        "@class": 
"org.jasig.cas.services.DefaultRegisteredServiceAccessStrategy",
        "enabled": true,
        "ssoEnabled": true
    },
    "proxyPolicy" : {
    "@class" : "org.jasig.cas.services.RefuseRegisteredServiceProxyPolicy"
  }
}

-----------------------------------------------------------------
*DOTNET CLIENT (MVC) - WEB.CONFIG FILE*
------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please 
visit
  http://go.microsoft.com/fwlink/?LinkId=301880
  -->
<configuration>
  <configSections>
    <section name="casClientConfig" 
type="DotNetCasClient.Configuration.CasClientConfiguration, 
DotNetCasClient" />
  </configSections>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <!-- CAS Configuration -->
    <add key="enableSimpleMembership" value="false" />
    <add key="autoFormsAuthentication" value="false" />
    <!-- /CAS Configuration -->
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.5.2" />
    <httpRuntime targetFramework="4.5.2" />
    <httpModules>
      <add name="ApplicationInsightsWebTracking" 
type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, 
Microsoft.AI.Web" />
      <add name="DotNetCasClient" 
type="DotNetCasClient.CasAuthenticationModule,DotNetCasClient" />
    </httpModules>
    <authentication mode="Forms">
      <forms name=".DotNetCasClientAuth"
             loginUrl="https://localhost:8443/cas/login";
             defaultUrl="~/Home/Index/"
             path="/"
             timeout="30"
             slidingExpiration="true"
             cookieless="UseCookies"/>
    </authentication>


  </system.web>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" culture="neutral" 
publicKeyToken="30ad4fe6b2a6aeed" />
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" 
/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Optimization" 
publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" 
/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="WebGrease" 
publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" 
newVersion="1.5.2.14234" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" 
publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" 
/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" 
publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" 
/>
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" 
publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" 
/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <system.codedom>
    <compilers>
      <compiler language="c#;cs;csharp" extension=".cs" 
type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, 
Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" 
compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
      <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" 
type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, 
Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" 
compilerOptions="/langversion:14 /nowarn:41008 
/define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
    </compilers>
  </system.codedom>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules>
      <remove name="ApplicationInsightsWebTracking" />
      <remove name="DotNetCasClient" />
      <add name="ApplicationInsightsWebTracking" 
type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, 
Microsoft.AI.Web" preCondition="managedHandler" />
      <add name="DotNetCasClient" 
type="DotNetCasClient.CasAuthenticationModule,DotNetCasClient" />
    </modules>
  </system.webServer>
  <casClientConfig casServerLoginUrl="https://localhost:8443/cas/login";
                   casServerUrlPrefix="https://localhost:8443/cas/";
                   serverName="http://localhost:5822/";
                   notAuthorizedUrl="~/Home/NotAuthorized/"
                   cookiesRequiredUrl="~/Home/CookiesRequired/"
                   redirectAfterValidation="true"
                   gateway="false"
                   renew="false"
                   singleSignOut="true"
                   ticketTimeTolerance="5000"
                   ticketValidatorName="Cas20"
                   
                   serviceTicketManager="CacheServiceTicketManager"
                    />
</configuration>


---------------------------------------------------------------------------
*THE LOG FILE*
---------------------------------------------------------------------------

  ____    _____      _      ____   __   __
 |  _ \  | ____|    / \    |  _ \  \ \ / /
 | |_) | |  _|     / _ \   | | | |  \ V /
 |  _ <  | |___   / ___ \  | |_| |   | |
 |_| \_\ |_____| /_/   \_\ |____/    |_|

>
2017-11-15 19:53:52,707 INFO 
[org.apereo.cas.support.events.listener.DefaultCasEventListener] - <>
2017-11-15 19:53:52,707 INFO 
[org.apereo.cas.support.events.listener.DefaultCasEventListener] - <Ready 
to process requests @ [2017-11-15T16:53:52.704Z]>
2017-11-15 19:53:52,710 INFO [org.apereo.cas.web.CasWebApplication] - 
<Started CasWebApplication in 48.45 seconds (JVM running for 51.974)>
2017-11-15 19:54:12,264 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 19:54:22,316 INFO 
[org.apereo.cas.ticket.registry.DefaultTicketRegistryCleaner] - <[0] 
expired tickets removed.>
2017-11-15 19:55:12,269 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 19:56:12,273 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 19:56:22,320 INFO 
[org.apereo.cas.ticket.registry.DefaultTicketRegistryCleaner] - <[0] 
expired tickets removed.>
2017-11-15 19:57:12,276 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 19:58:12,280 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 19:58:22,322 INFO 
[org.apereo.cas.ticket.registry.DefaultTicketRegistryCleaner] - <[0] 
expired tickets removed.>
2017-11-15 19:59:12,283 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:00:12,287 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:00:22,323 INFO 
[org.apereo.cas.ticket.registry.DefaultTicketRegistryCleaner] - <[0] 
expired tickets removed.>
2017-11-15 20:01:12,290 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:02:12,295 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:02:22,324 INFO 
[org.apereo.cas.ticket.registry.DefaultTicketRegistryCleaner] - <[0] 
expired tickets removed.>
2017-11-15 20:03:12,299 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:04:12,303 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:04:22,324 INFO 
[org.apereo.cas.ticket.registry.DefaultTicketRegistryCleaner] - <[0] 
expired tickets removed.>
2017-11-15 20:05:12,306 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:05:35,905 INFO 
[org.apereo.cas.web.flow.InitialFlowSetupAction] - <Setting path for 
cookies for warn cookie generator to: [/cas/] >
2017-11-15 20:05:35,945 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:05:35 AST 
2017,source=RankedAuthenticationProviderWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:35 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:51,474 INFO 
[org.apereo.cas.authentication.PolicyBasedAuthenticationManager] - 
<Authenticated principal [esawy] with attributes [{cn=[esawy], 
sAMAccountName=[esawy], sn=[Emam]}] via credentials [[esawy]].>
2017-11-15 20:05:51,475 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: Supplied credentials: [esawy]
ACTION: AUTHENTICATION_SUCCESS
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:51 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:51,587 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: 
TGT-******************************************************mw7hB7Bb6t-1drGWDgM-Husseinemam
ACTION: TICKET_GRANTING_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:51 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:51,636 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-1-EfohmbNjFncAtQbnQqfPrKeFneY-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:05:51,638 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-1-EfohmbNjFncAtQbnQqfPrKeFneY-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:51 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,335 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:05:52 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,339 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-2-tC3DmbqWPjSwrxry0CsTPwGow9w-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:05:52,339 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-2-tC3DmbqWPjSwrxry0CsTPwGow9w-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,392 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:05:52 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,400 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-3-xfajeQ2W9x9_bB_b7auIMIX3gDM-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:05:52,400 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-3-xfajeQ2W9x9_bB_b7auIMIX3gDM-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,547 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:05:52 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,550 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-4-uqNqyCLSXrWgfTcT5-BL93xXLD4-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:05:52,551 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-4-uqNqyCLSXrWgfTcT5-BL93xXLD4-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,614 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:05:52 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,619 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-5-tKXKwx__BYT3xY-j-Peu0y_SMhU-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:05:52,620 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-5-tKXKwx__BYT3xY-j-Peu0y_SMhU-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,697 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:05:52 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,705 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-6-BCQIO8iyLOlNjHss1nK37_uH3x4-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:05:52,705 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-6-BCQIO8iyLOlNjHss1nK37_uH3x4-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,967 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:05:52 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:05:52,973 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-7-_xMVBgYINs9VFEm7xKAGeuVYY1Y-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:05:52,974 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-7-_xMVBgYINs9VFEm7xKAGeuVYY1Y-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:05:52 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:12,317 INFO 
[org.apereo.cas.services.AbstractServicesManager] - <Loaded [3] service(s) 
from [JsonServiceRegistryDao].>
2017-11-15 20:06:22,326 INFO 
[org.apereo.cas.ticket.registry.DefaultTicketRegistryCleaner] - <[0] 
expired tickets removed.>
2017-11-15 20:06:57,069 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:06:57 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,075 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-8-Be67aJ34uv38ZFrDNJMcT72SM5o-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:06:57,076 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-8-Be67aJ34uv38ZFrDNJMcT72SM5o-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,244 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:06:57 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,249 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-9-XPfK6ZDcP5uLkP9VYVOkxMeFEzs-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:06:57,251 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-9-XPfK6ZDcP5uLkP9VYVOkxMeFEzs-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,346 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:06:57 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,348 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-10-lV2P8lA7AzVsbI-a6Q33orcHTPo-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:06:57,349 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-10-lV2P8lA7AzVsbI-a6Q33orcHTPo-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,401 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:06:57 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,404 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-11-iYbrS_XXvsiDtSuW5gkolqEN3OI-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:06:57,405 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-11-iYbrS_XXvsiDtSuW5gkolqEN3OI-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,452 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:06:57 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,458 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-12-sBYg1TwNvUR5EUg5NBisI2u0YpI-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:06:57,460 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-12-sBYg1TwNvUR5EUg5NBisI2u0YpI-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,530 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:06:57 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,534 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-13-p267epH29PpBiudbXmfNJczN5xw-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:06:57,535 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-13-p267epH29PpBiudbXmfNJczN5xw-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,586 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: audit:unknown
WHAT: [event=success,timestamp=Wed Nov 15 20:06:57 AST 
2017,source=InitialAuthenticationAttemptWebflowEventResolver]
ACTION: AUTHENTICATION_EVENT_TRIGGERED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

>
2017-11-15 20:06:57,589 INFO 
[org.apereo.cas.DefaultCentralAuthenticationService] - <Granted ticket 
[ST-14-PmQlBTJA4Xe4KtZrRHaiQQ90r_w-Husseinemam] for service 
[http://localhost:5822/] and principal [esawy]>
2017-11-15 20:06:57,590 INFO 
[org.apereo.inspektr.audit.support.Slf4jLoggingAuditTrailManager] - <Audit 
trail record BEGIN
=============================================================
WHO: esawy
WHAT: ST-14-PmQlBTJA4Xe4KtZrRHaiQQ90r_w-Husseinemam for 
http://localhost:5822/
ACTION: SERVICE_TICKET_CREATED
APPLICATION: CAS
WHEN: Wed Nov 15 20:06:57 AST 2017
CLIENT IP ADDRESS: 0:0:0:0:0:0:0:1
SERVER IP ADDRESS: 0:0:0:0:0:0:0:1
=============================================================

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
You received this message because you are subscribed to the Google Groups "CAS 
Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/e71d9419-2deb-4be1-a313-fa1c8e5d5deb%40apereo.org.

Reply via email to