Hi everyone
I'm currently looking for authentication logs of REST API's hosted on ACE. Let's assume that we have an API that is secured with basic authentication, then I want to see the authentication attempts. More specifically I'm interested in the failed authentication attempts.
If you check the activity log, you see logs like this:

Thread ID 10092 (the bottom one) indicates a successful login since there is date going to mq, but thread ID 27332 and 10092 (top one) indicate failed attempts since there is no data being passed on.
This does not give me info on the failed login attempts.
Also the eventviewer/syslog don't give any relevant info.
Next I've enabled the ExceptionLog for the integration server hosting the API (using embedded listener)

And this one is giving me info on the failed login attempts:
...
2023-02-15 11:30:13.410 11504 THROWN BIP2702W SecurityException getUserDNFromBrokerBind 'User does not exist' ['Username and password', 'xxxxx@yyyyy.com', '', 'ldaps://zzzz.com:636'] APSecurityProvider.java:1348
...
2023-02-15 11:31:40.856998 296 THROWN BIP2703W SecurityException authorize 'User is not in Broker authorization group' ['Username and password', 'xxxxx@yyyyy.com', '', 'ldaps://zzzz.com:636', 'gen.HTTP_LDAP_MQPUT'] APSecurityProvider.java:1348
...
2023-02-15 11:32:24.061001 11504 THROWN BIP2702W SecurityException authenticate 'javax.naming.AuthenticationException: [LDAP: error code 49 - 80090308: LdapErr: DSID-0C090447, comment: AcceptSecurityContext error, data 52e, v3839' ['Username and password', 'CN=XXXXX (Admin),OU=YYY,OU=XXX,OU=AAA,OU=USERS,DC=xxxx,DC=xxxx,DC=com', '', 'ldaps://zzzz:636'] APSecurityProvider.java:1348
...
(first line = non existing user, second line = unauthorized user, third line = wrong password)
But it also gives a lot more information :)
Is there any other way of retreiving these attempts, maybe in a more readable format?
------------------------------
Regards
Matthias Blomme
------------------------------