
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
mxprobe-core
Advanced tools
The MX Probe engine: DNS tier, SMTP probe and the send / hold / kill verdict contract. Zero dependencies.
The MX Probe engine. Zero dependencies, Node 20+. Two tiers:
hold.import { verify, verifyBatch, createVerifier } from "mxprobe-core";
await verify("hello@example.com");
// { email, action: "send" | "hold" | "kill", verdict: "OK" | "WEAK" | "DEAD", reason, checks: { syntax, mx, smtp, catch_all } }
await verifyBatch(["a@b.com", "c@d.org"], { smtp: true, helo: "probe.example.com", from: "probe@example.com" });
const v = createVerifier({ smtp: true, smtpConcurrency: 3, autoDisableSmtp: false }); // shared limits across calls
checks.smtp is skipped on the DNS tier, else accepted, rejected,
refused, deferred, unreachable or dropped. Only rejected (a 5xx that
names the mailbox) kills; everything else that is not accepted holds.
Options (all optional): smtp, helo, from, port, hostOverride,
dnsTimeoutMs, smtpTimeoutMs, smtpConcurrency, dnsConcurrency,
autoDisableSmtp, resolver (an object with resolveMx, resolve4,
resolve6, reverse, for tests).
Written in TypeScript; the package ships its declarations. VerifyResult,
Action, Verdict, SmtpCheck, Checks, Summary, VerifierOptions,
Resolver and the hosted API's response types (SignupResponse,
VerifyResponse, BalanceResponse, CheckoutResponse, ApiErrorBody)
are exported as types.
MIT. Part of https://github.com/andrewchmr/mxprobe.
FAQs
The MX Probe engine: DNS tier, SMTP probe and the send / hold / kill verdict contract. Zero dependencies.
The npm package mxprobe-core receives a total of 167 weekly downloads. As such, mxprobe-core popularity was classified as not popular.
We found that mxprobe-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.