recon-plumbing
Installation
SKILL.md
RECON-PLUMBING — Sector-Specific Recon for Plumbing Company Sites
When to Use
Use when the target scope includes plumbing, drain cleaning, water heater, or emergency plumbing company domains. Plumbing companies share the SMB service provider profile but have specific characteristics: high-volume emergency calls (means urgency in data capture), drain camera inspection videos/photos (stored on server), water heater specs and pricing pages, and financing/credit application portals that collect sensitive financial information.
Quick Reference
for t in $(cat plumbing-targets.txt); do
echo "=== $t ==="
curl -skI "https://$t/" | grep -iE "wordpress|php|wp-"
curl -sk -o /dev/null -w "%{http_code}" "https://$t/wp-content/debug.log"
curl -sk -o /dev/null -w "%{http_code}" "https://$t/wp-content/uploads/"
curl -skI "https://$t/wp-json/wp/v2/users" -H "Origin: https://evil.com" | grep -i "access-control"
echo "---"
done