spoofcheck
- Thiru T
- Oct 30, 2024
- 1 min read
A program that checks if a domain can be spoofed from. The program checks SPF and DMARC records for weak configurations that allow spoofing. Additionally it will alert if the domain has DMARC configuration that sends mail or HTTP requests on failed SPF/DKIM emails.
Domains are spoofable if any of the following conditions are met:
Lack of an SPF or DMARC record
SPF record never specifies ~all or -all
DMARC policy is set to p=none or is nonexistent
Install:
git clone https://github.com/BishopFox/spoofcheck; cd spoofcheck; pip install -r requirements.txtUsage:
./spoofcheck.py [DOMAIN]



Comments