# =========================================================================
# Perry Default Live Test Suite
# A crazy set of default fuzzing test cases targeting common endpoints!
# =========================================================================

# --- Authentication & Login (SQLi / XSS) ---
attack=sqli, path=/login, method=POST
attack=sqli, path=/api/login, method=POST
attack=sqli, path=/auth, method=POST
attack=xss, path=/login, method=POST

# --- Search & Retrieval (SQLi / XSS) ---
attack=sqli, path=/search, method=GET
attack=xss, path=/search, method=GET
attack=sqli, path=/api/users, method=GET
attack=xss, path=/api/products, method=GET

# --- File Access & Downloads (Path Traversal) ---
attack=traversal, path=/download, method=GET
attack=traversal, path=/files, method=GET
attack=traversal, path=/api/download, method=GET
attack=traversal, path=/assets, method=GET

# --- System & Network (Command Injection) ---
attack=cmd, path=/ping, method=POST
attack=cmd, path=/test, method=POST
attack=cmd, path=/api/network, method=POST
attack=cmd, path=/health, method=GET

# --- Contact & Forms (XSS / SQLi) ---
attack=xss, path=/contact, method=POST
attack=sqli, path=/contact, method=POST
attack=xss, path=/feedback, method=POST
attack=sqli, path=/feedback, method=POST
