惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
博客园 - 叶小钗
博客园 - 聂微东
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
小众软件
小众软件
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Bulk-check DNS, SSL and email auth for a whole list of do...
weiseer · 2026-05-31 · via DEV Community

weiseer

If you've ever had a spreadsheet of domains — a lead list, an acquisition target's
footprint, your own portfolio — and needed DNS records, WHOIS, SSL expiry, or email
authentication for all of them, you know the pain: single-domain web tools don't
scale, and dig / whois / openssl loops are fiddly to parse.

Here's how I think about pulling clean, structured domain intelligence in bulk —
and the three small tools I built so I never have to write that loop again.

1. DNS + WHOIS + SSL, in one pass

For each domain you usually want three things together:

  • DNS — A/AAAA/MX/NS/TXT/CNAME (where it points, who runs mail, the DNS provider)
  • WHOIS — registrar, creation/expiry dates, status, name servers
  • SSL — issuer, the valid_from/valid_to window, SAN list

The trick is to do them as protocol calls (DNS resolution, a TLS handshake, WHOIS
on port 43) rather than scraping any website — protocol surfaces are stable, so the
output doesn't break when sites redesign.

If you don't want to wire that yourself, I packaged it as
Domain Intelligence on Apify:
paste a list of domains, get one clean JSON row each. ($0.01/domain, no proxies.)

2. Email authentication (MX / SPF / DMARC / DKIM)

Deliverability and security both hinge on the same DNS records:

  • MX present? which provider? (aspmx.l.google.com → Google Workspace, etc.)
  • SPF — is there a v=spf1 TXT record, and is the qualifier -all (strict) or ~all?
  • DMARC_dmarc TXT with p=reject / quarantine / none?
  • DKIM — does a common selector (google, selector1, k1…) publish a key at <selector>._domainkey.<domain>?

A domain with MX + SPF -all + DMARC reject + DKIM is a "strong" setup; missing
DMARC is the most common gap. You can score a whole list this way in seconds — no SMTP
probing required (which mail servers block anyway). I put this in
Bulk Email Deliverability Checker.

3. The website itself (metadata + tech + security headers)

The HTTP layer rounds out the picture: final URL after redirects, status, <title>,
meta/Open Graph, Server/X-Powered-By, the security headers (HSTS, CSP,
X-Frame-Options…) graded present/missing, and lightweight tech hints (Cloudflare,
nginx, Next.js, Shopify, WordPress…). Useful for SEO audits, tech research, and
lead enrichment: Website Metadata & Tech Profiler.

Putting it together

For lead enrichment you might run all three over a list of company domains: WHOIS for
registrar/age, DNS MX for the email stack, the web profiler for the tech stack, and the
email checker for deliverability — a quick technographic profile per domain, exported
to CSV or pulled via API.

All three are protocol-based and low-maintenance by design. Code and notes:
github.com/weiseer. Happy to take requests for fields to add —
what would you want in a bulk domain report?