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