Skip to content

nuclei will want to pull its template repo on first launch — run once before scanning:

fish
nuclei -update-templates

Login bruteforce

for NixOS

fish
set seclists /run/current-system/sw/share/seclists
fish
ffuf -w $seclists/Passwords/Leaked-Databases/rockyou.txt \
	-u https://your-app.com/api/auth/login \
	-X POST \
	-H "Content-Type: application/json" \
	-d '{"login":"admin","password":"FUZZ"}' \
	-fc 401