Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
joi-email-extensions
Advanced tools
Joi extensions for email normalization, MX record validation, matching a domain pattern and checking for free/disposable email provider domains.
Joi extensions providing email normalization, MX record validation, checking for emails from free and disposable email providers and various ways to match against a list of email patterns or domains.
The methods of this extension are chained after the Joi email validator.
import BaseJoi from 'joi'
import JoiEmailExtensions from 'joi-email-extensions'
const Joi = BaseJoi.extend([JoiEmailExtensions])
const schema = Joi.object().keys({
// Normalize an email
normalizedEmail: Joi.string().email().normalize(),
// Check if email is not from known disposable email provider
notAThrowAwayEmail: Joi.string().email().nonDisposable(),
// Validate an email by ensuring the domain has MX records
mxValidatedEmail: Joi.string().email().hasMx(),
// Validate only emails from a given exact domain
exactDomain: Joi.string().email().domains(['mydomain.tld']),
// Validate email against a list of patterns
onlyUkEuDomains: Joi.string().email().domains([
'*.uk',
'*.eu'
], { mode: 'glob' }),
// Allow emails from domains with the word 'awesome' or 'awful'
onlyAwesomeDomains: Joi.string().email().domains([
/awe(some|ful)/
], { mode: 'regexp' })
})
const result = schema.validate({
normalizedEmail: 'someEmaIlAdDress@MydoMaiN.tld',
notAThrowAwayEmail: 'john.doe@mydomain.tld',
mxValidatedEmail: 'webmaster@google.com',
exactDomain: 'john.die@mydomain.tld',
onlyUkEuDomains: 'john.doe@mydomain.eu',
onlyAwesomeDomains: 'john.doe@awesome.tld'
})
console.log(result)
// { error: null,
// value:
// { normalizedEmail: 'someemailaddress@mydomain.tld',
// notAThrowAwayEmail: 'webmastere@mydomain.tld',
// mxValidatedEmail: 'webmaster@google.com',
// exactDomain: 'john.die@mydomain.tld',
// onlyUkEuDomains: 'john.doe@mydomain.eu',
// onlyAwesomeDomains: 'john.doe@awesome.tld' } }
Transforms email string to a normalized form. Uses normalize-email under the hood.
Joi.string().email().normalize()
Require the email to be from a domain that is not a known disposable email provider.
Joi.string().email().nonDisposable()
Require the email to have valid MX records for handling email.
Joi.string().email().hasMx()
Require the email to be from a list of domain names. The domain names to match against are passed as the patterns argument and can be specified as exact strings, or glob patterns or regular expressions. The options argument takes an object containing 'mode' with acceptable values of 'exact'
(default), 'regexp'
or 'glob'
.
Joi.string().email().domains(['mydomain.tld'], { mode: 'exact' })
FAQs
Joi extensions for email normalization, MX record validation, matching a domain pattern and checking for free/disposable email provider domains.
We found that joi-email-extensions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.