From 6cd1ee6ef36580b61610d4c962189f405ae13c4d Mon Sep 17 00:00:00 2001 From: s0lray Date: Fri, 27 Mar 2026 09:22:25 -0400 Subject: [PATCH] Add disposable email domain detection tools to Email Verification (THE-33) Add 3 community-maintained disposable email blocklists to Email Address > Email Verification: - Disposable Email Domains (GitHub) - 5000+ domain blocklist used by PyPI - Disposable Emails Registry - searchable registry with bulk download - Burner Email Providers - curated list with multi-language integrations Excludes WhoisXML API (premium/paid service) per board guidance. Co-Authored-By: Paperclip --- public/arf.json | 60 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/public/arf.json b/public/arf.json index b8b4568..2184507 100644 --- a/public/arf.json +++ b/public/arf.json @@ -504,6 +504,66 @@ "name": "VerifyEmail (R$)", "type": "url", "url": "https://emailable.com/" + }, + { + "name": "Disposable Email Domains (T)", + "type": "url", + "url": "https://github.com/disposable-email-domains/disposable-email-domains", + "description": "Community-maintained blocklist of 5,000+ disposable email domains with allowlist support and multi-language implementation examples. Used by PyPI and other projects.", + "status": "live", + "pricing": "free", + "bestFor": "Detecting disposable and temporary email addresses during verification", + "input": "Domain name to check against the blocklist", + "output": "Match result against the disposable email domain blocklist", + "opsec": "passive", + "opsecNote": "Local list comparison; no external requests made during lookup.", + "localInstall": true, + "googleDork": false, + "registration": false, + "editUrl": false, + "api": false, + "invitationOnly": false, + "deprecated": false + }, + { + "name": "Disposable Emails Registry", + "type": "url", + "url": "https://disposable-emails.github.io/", + "description": "Searchable registry of disposable email domains with bulk download support for threat intelligence integration.", + "status": "live", + "pricing": "free", + "bestFor": "Bulk blocking and threat intelligence integration for disposable email detection", + "input": "Domain name or bulk list download", + "output": "Match result or full disposable domain list (/list.txt)", + "opsec": "passive", + "opsecNote": "Static list download; community-sourced submissions, no external lookups required.", + "localInstall": false, + "googleDork": false, + "registration": false, + "editUrl": false, + "api": false, + "invitationOnly": false, + "deprecated": false + }, + { + "name": "Burner Email Providers (T)", + "type": "url", + "url": "https://github.com/wesbos/burner-email-providers", + "description": "Curated list of temporary email service domains with API references and detection library implementations across multiple languages.", + "status": "live", + "pricing": "free", + "bestFor": "Identifying burner email providers for integration into custom investigation tools", + "input": "Email domain", + "output": "Match result against known burner/temporary email providers", + "opsec": "passive", + "opsecNote": "Local list comparison; MIT licensed for integration use.", + "localInstall": true, + "googleDork": false, + "registration": false, + "editUrl": false, + "api": false, + "invitationOnly": false, + "deprecated": false } ] },