Step 1: Install hibp-downloader
sudo apt install curl jq -yStep 2: Create Check Script
nano check-pwned.shAdd:
#!/bin/bash
EMAIL="admin@example.com"
curl -s "https://haveibeenpwned.com/api/v3/breachedaccount/$EMAIL" -H "hibp-api-key: YOUR_API_KEY" | jq '.[].Name'Step 3: Schedule Weekly Check
crontab -e
0 9 * * 1 /home/user/check-pwned.sh | mail -s "Dark Web Exposure Report" your-emailSign up for free API key at HaveIBeenPwned.