Auth0 Brute Force
Description
Scheduled rule for brute force detection for Auth0 login or signup which looks for incidents of more than 10 incidents in one hour
Query · python
from panther_core import PantherEvent
def rule(event: PantherEvent) -> bool: # pylint: disable=unused-argument
return True
def title(event: PantherEvent) -> str:
total_incidents = event.get("total_incidents", 5)
return f"Auth0 Brute Force detected: {total_incidents} attempts in the past hour"