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