Query all login events for WP Activity Log Free Version

by James McDonald | Jun 21, 2025 | IT Tips | 0 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:

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.