File(s): conf/audit.xml, conf/errors.xml, conf/logback.xml, conf/authn/authn.properties(V4.3+)
Format: Native Spring, Logback
...
Another audit record stream exists for logging decisions made by users regarding attribute release and terms of use acceptance and is routed by default through a logger named "Shibboleth-Consent-Audit" to a file called idp-consent-audit.log.
Prior to V4.3, the audit log does not include records of individual authentication success or failure results; only the diagnostic (“process”) log includes (unstructured) records of those events. V4.3 introduces a There is also separate stream of authentication audit events for each supported login flow. By default this feature is not enabled, but if done, these records appear in the same audit stream as the primary auditing. It is straightforward (and usually advisable) to route these records by category to a separate file or destination since the record format is not the same as the primary records.
...
Expand |
---|
|
Field extraction is the process of populating a labeled field in an AuditContext object that is built up over the life of a transaction. The context is just a map of field names to collections of values and the field names are just conventions built-in to the software to provide a standard set of useful fields to audit. Fields are extracted at various points through the life of a transaction so that adequate detail can be exposed about the request, the processing of the request, and the response. These extraction points are associated with collections of field extraction beans that do the actual work to pull data out of the state of the transaction and store it for output. The built-in extraction points and beans are as follows (empty beans are not provided to reduce clutter, but you can add them, per the example below): shibboleth.FlowStartAuditExtractors shibboleth.PostDecodeAuditExtractors shibboleth.PostLookupAuditExtractors shibboleth.PostAssertionAuditExtractors Extractors focused on authentication, session, and attribute information, runs after those processes and after the initial creation of the outgoing assertion (if relevant to the request)
shibboleth.PostResponseAuditExtractors shibboleth.LogoutRequestAuditExtractors shibboleth.LogoutAuditExtractors shibboleth.ErrorViewAuditExtractors Extracts subject, session, and attribute information, runs in the event that a local error is generated
shibboleth.consent.PreConsentAuditExtractors Extracts basic information about the consent step, runs before a decision is made Empty map beans are declared in conf/intercept/consent-intercept-config.xml
shibboleth.consent.ConsentAuditExtractors Extracts information about the decision, runs after a decision is made Empty map beans are declared in conf/intercept/consent-intercept-config.xml
shibboleth.PostRequestAuditExtractors shibboleth.PostInboundResponseAuditExtractors shibboleth.PostInboundAssertionAuditExtractors
Each entry in these maps is a key containing the string label to associate (the name of the field), and a value containing a Function<ProfileRequestContext,Object> instance. Functions can return either single objects that get converted to a string for logging, or a Collection of objects that are converted to strings and separated by commas within the logged field. In this manner, you can add your own fields by implementing a function (or writing a script) to return any data you can find in the context tree and associating it with a custom field label by adding it to one of the maps named above. In V4.3+, a A similar extractor map exists for each login flow in the IdP, allowing different auditing behavior per-flow. All these beans have names based on the underlying login flow (e.g. shibboleth.authn.Password.AuditExtractors, etc.) |
Expand |
---|
title | Custom Field Examples |
---|
|
A skeletal example follows to demonstrate how to create a map to contain a custom field extraction rule: Adding custom fields to the audit log via audit.xml Code Block |
---|
| <!-- Adds a function to extract a custom field called MYFIELD after the final response has been generated. -->
<bean id="shibboleth.PostResponseAuditExtractors" parent="shibboleth.DefaultPostResponseAuditExtractors">
<property name="sourceMap">
<map merge="true">
<entry key="MYFIELD" value-ref="MyExtractionFunctionBean" />
</map>
</property>
</bean> |
A real world example: if you're logging fields containing a URL, you may need to escape characters in a URL because of the delimiter you choose to use in the log format. You can do this using a script: Encoding 'pipe' character appearing in CAS service URLs Code Block |
---|
| <bean id="shibboleth.CASValidationAuditExtractors" parent="shibboleth.DefaultCASValidationAuditExtractors" lazy-init="true">
<property name="sourceMap">
<map merge="true">
<entry>
<key>
<util:constant static-field="net.shibboleth.idp.cas.protocol.CASAuditFields.SERVICE_URL"/>
</key>
<bean parent="shibboleth.ContextFunctions.Scripted" factory-method="inlineScript">
<constructor-arg>
<value>
<![CDATA[
var serviceLookupFunctionClass = Java.type("net.shibboleth.idp.cas.audit.impl.ServiceLookupFunction");
var serviceLookupFunction = new serviceLookupFunctionClass();
var service = serviceLookupFunction.apply(input);
if (service != null) {
var serviceNew = service.replace(/\|/g, '%7C');
}
else {
var serviceNew = null;
}
serviceNew;
]]>
</value>
</constructor-arg>
</bean>
</entry>
</map>
</property>
</bean> |
A rather more convoluted example is to dump the values or arbitrary attributes into the log. To do this we define an abstract bean to emit the attribute values (in an arbitrary format) for any attribute (most of this is really error and null handling): Output Attribute Values Code Block |
---|
| <bean id="AttributeValueExtraction" parent="shibboleth.ContextFunctions.Scripted" factory-method="inlineScript" abstract="true">
<constructor-arg>
<value>
<![CDATA[
var getinfo = function() {
var rpContext = input.getSubcontext("net.shibboleth.idp.profile.context.RelyingPartyContext");
if (null === rpContext) {
return null;
}
var attrContext = rpContext.getSubcontext("net.shibboleth.idp.attribute.context.AttributeContext");
if (null === attrContext) {
return null;
}
var attributes = null
attributes = attrContext.getUnfilteredIdPAttributes();
if (null === attributes) {
return null;
}
attribute = attributes.get(custom);
if (null === attribute || attribute.getValues().isEmpty()) {
return null;
}
var iter = attribute.getValues().iterator();
var result = "";
while (iter.hasNext()) {
result = result + " " + iter.next().toString();
}
return result;
}
getinfo();
]]>
</value>
</constructor-arg>
</bean> |
Then a bean to emit a specific attribute can be easily created: Code Block |
---|
| <bean id="EmailExtraction" parent="AttributeValueExtraction" p:customObject="mail" /> |
|
Expand |
---|
title | Built-in Generic Fields |
---|
|
The generic fields that are supported out of the box are as follows (note that not every field is always populated; that depends on the timing of errors and the specific transaction being audited): Field | Description |
---|
ST | Timestamp for start of flow | T | Timestamp event is recorded | e | WebFlow Event | URL | URL | URI | URI | DEST | Destination URL of outgoing msg | s | IdP session ID | HASHEDs 4.1 | Hashed IdP session ID | AF | Authentication flow ID | SSO | SSO flag | a | Client address | UA | User agent string | P | Profile ID | u | Username | HASHEDu | Hashed username | uu | Impersonating username | attr | Attribute(s) | ROP | Requested authentication operator | RPRIN | Requested authentication principals |
|
Expand |
---|
title | Built-in SAML Fields |
---|
|
The more SAML-oriented fields that are supported out of the box are as follows (note that not every field is always populated; that depends on the timing of errors and the specific transaction being audited): Field | Description |
---|
SP | Service provider name | IDP | Identity provider name | p | Protocol | b | Inbound binding | bb | Outbound binding | RS 4.1 | RelayState | n | NameID value | f | NameID format | SPQ | NameID SPNameQualifier | pf | NameIDPolicy required format | PSPQ | NameIDPolicy required SPNameQualifier | i | Assertion ID | d | Assertion timestamp | I | Inbound message ID | D | Inbound message timestamp | II | InResponseTo | III | Outbound message ID | DD | Outbound message timestamp | t | AuthenticationInstant | x | SessionIndex | ac | AuthenticationContext | S | Status code | SS | Sub-status code | SM | Status message | pasv | IsPassive | fauth | ForceAuthn | SCC 4.2 | Scoping ProxyCount from an AuthnRequest | SCI 4.2 | Scoping IdP list from an AuthnRequest | SCR 4.2 | Scoping Requester ID(s) from an AuthnRequest | PRC 4.2 | ProxyRestriction ProxyCount | PRA 4.2 | ProxyRestriction Audiences | XX | Signed inbound messages | X | Encrypted assertions | XA | Encryption algorithm |
|
Expand |
---|
title | Built-in Authentication FIelds (V4.3+) |
---|
|
A few fields are defined for auditing specific information during authentication, which is a V4.3 feature; many are specific to particular login flows. Note that the Duo fields are for the built-in Duo flow; the newer plugin has a larger set of fields documented on the DuoOIDC configuration page. .Field | Description |
---|
tu | Transformed username submitted for validation (Password flow only) | AR | Results of authentication attempt, either “Success” or classified error strings | CV | Specific CredentialValidator bean used (Password flow only) | X509S | Certificate subject (X.509 flows only) | X509I | Certificate issuer (X.509 flows only) | DuoCID | Duo client identifier/integration key (Duo flow only) | DuoF | Duo factor (Duo flow only) | DuoDID | Duo device ID (Duo flow only) |
|
...
Expand |
---|
|
General beans defined in audit.xml, errors.xml, and related system configuration are: Bean ID | Type | Function |
---|
shibboleth.AuditFormattingMap | Map<String,String> | Map of logging categories to audit formatting strings for general audit logging | shibboleth.AuditDateTimeFormat | String | DateTimeFormat string to apply to DateTime fields (but does not apply to the logback-generated field at the beginning of the log line) | shibboleth.AuditDefaultTimeZone | Boolean | Whether to convert DateTime fields into the machine's default time zone (UTC is used otherwise) | shibboleth.AuditFieldReplacementMap | Map<String,String> | Map of replacement strings to substitute in when populating audit fields (simple way to shrink long constants down to size) | shibboleth.AuditSuppressedProfiles | List<String> | List of profiles to skip auditing | shibboleth.LocalEventMap | Map<String,Boolean> | Map of local error events to flags indicating whether to output an audit log record | shibboleth.SuppressedEvents | List<String> | List of events that should not be logged as "errors" by the process log (generally leaving them to the audit log) | shibboleth.DefaultSuppressedEvents | List<String> | Default list of events used in place of shibboleth.SuppressedEvents bean |
In addition, there are a set of standard beans containing the map of field extractors for all of the various "interception points" of the processing of the IdP. A pair of beans are reserved for each point, a default set that comes out of the box, and a defined bean ID to override or add to those defaults. Each of these beans is of type Map<String,Function<ProfileRequestContext,Object>> shibboleth.FlowStartAuditExtractors / shibboleth.DefaultFlowStartAuditExtractors shibboleth.PostDecodeAuditExtractors / shibboleth.DefaultPostDecodeAuditExtractors shibboleth.PostLookupAuditExtractors / shibboleth.DefaultPostLookupAuditExtractors shibboleth.PostAssertionAuditExtractors / shibboleth.DefaultPostAssertionAuditExtractors shibboleth.PostResponseAuditExtractors / shibboleth.DefaultPostResponseAuditExtractors shibboleth.PostRequestAuditExtractors / shibboleth.DefaultPostRequestAuditExtractors shibboleth.PostInboundResponseAuditExtractors / shibboleth.DefaultPostInboundResponseAuditExtractors shibboleth.PostInboundAssertionAuditExtractors / shibboleth.DefaultPostInboundAssertionAuditExtractors shibboleth.LogoutRequestAuditExtractors / shibboleth.DefaultLogoutRequestAuditExtractors shibboleth.LogoutAuditExtractors / shibboleth.DefaultLogoutAuditExtractors shibboleth.ErrorViewAuditExtractors / shibboleth.DefaultErrorViewAuditExtractors shibboleth.consent.PreConsentAuditExtractors / shibboleth.consent.DefaultPreConsentAuditExtractors shibboleth.consent.ConsentAuditExtractors / shibboleth.consent.DefaultConsentAuditExtractors
With V4.3+, an An additional set of beans for each login flow are addedalso defined: |
Expand |
---|
|
Properties are defined in services.properties to customize various aspects of audit logging: Property | Type | Default | Function |
---|
idp.service.logging.saml1sso | String | SSO | Suffix added to audit logging category when various profiles/flows are audited, you can use this to route different kinds of audit records to different destinations based on general function | idp.service.logging.saml1attrquery | String | AttributeQuery | idp.service.logging.saml1artifact | String | ArtifactResolution | idp.service.logging.saml2sso | String | SSO | idp.service.logging.saml2attrquery | String | AttributeQuery | idp.service.logging.saml2artifact | String | ArtifactResolution | idp.service.logging.saml2slo | String | Logout | idp.service.logging.logout | String | Logout | idp.service.logging.cas | String | SSO | idp.service.logging.status | String | Status | idp.service.logging.resolvertest | String | ResolverTest | idp.service.logging.serviceReload | String | Reload | idp.audit.shortenBindings | Boolean | false | Allows simpler "short names" of SAML bindings and other (configurable) constants to appear in the audit log, instead of full URIs | idp.audit.hashAlgorithm 4.1 | String | SHA-256 | Hash algorithm to apply to various hashed fields | idp.audit.salt 4.1 | String | | Salt to apply to hashed fields, must be set to use those fields |
Additional properties are housed in authn/authn.properties to enable and customize authentication auditing. The <Flow> token in the various property names below is a stand-in for the actual login flow suffix (Password, External, RemoteUser, etc.), as these are per-flow properties. Property | Type | Default | FunctionDescription |
---|
idp.authn.audit.enabled 4.3 | Boolean | false | Enables the authentication audit logging feature | idp.authn.<Flow>.audit.enabled 4.3 | Boolean | %{idp.authn.audit.enabled} | Enables audit logging for a specific login flow | idp.authn.<Flow>.audit.category 4.3 | String | Shibboleth-Audit.<Flow> | Log category for audit records for a specific login flow | idp.authn.Password.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%CV|%u|%tu|%AR|%UA | Audit formatting string for this login flow | idp.authn.Duo.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%u|%AR|%DuoCID|%DuoF|%DuoDID|%UA | Audit formatting string for this login flow | idp.authn.External.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%u|%AR|%UA | Audit formatting string for this login flow | idp.authn.Function.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%u|%AR|%UA | Audit formatting string for this login flow | idp.authn.IPAddress.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%CV|%u|%AR|%UA | Audit formatting string for this login flow | idp.authn.RemoteUser.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%CV|%u|%AR|%UA | Audit formatting string for this login flow | idp.authn.RemoteUserInternal.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%CV|%u|%AR|%UA | Audit formatting string for this login flow | idp.authn.SPNEGO.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%u|%AR|%UA | Audit formatting string for this login flow | idp.authn.X509.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%X509S|%X509I|%AR|%UA | Audit formatting string for this login flow | idp.authn.X509Internal.audit.format 4.3 | String | %a|%T|%SP|%I|%s|%AF|%X509S|%X509I|%AR|%UA | Audit formatting string for this login flow |
|
...