Query all login events for WP Activity Log Free Version

by Jun 21, 2025IT Tips0 comments

This helps because you can't filter by login events on the free version but you might want to check if any brute force automated login attempts have succeeded:

1
2
3
4
5
6
7
8
9
SELECT
*
FROM
# replace dbname with your database name
# replace wp_prefix_ with your custom wp_ prefix
dbname.wp_prefix_wsal_occurrences
WHERE
event_type = 'login'
ORDER BY id DESC;

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.