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.
validator-handler
Advanced tools
#validator-handler Tiny library to validate and set custom error messages easily.
Install the package:
npm i validator-handler
#Example
import validate, { validator, isNotValid, isValid } from 'validator-handler';
const inputs = {
name: "Thiago Silva",
email: "emaildfdf.com",
password: "123a"
};
const isIncluded = (pattern) => data => pattern.test(data)
// `validator` is a third-party library with its own sets of validators that you can use;
// or create your own custom function.
const validations = {
name: ["Please enter a name.", validator.notEmpty],
email: [
"Please enter an email address.", validator.notEmpty,
"Invalid email address.", validator.isEmail
],
password: [
"Be at least 8 characters or longer.", (x) => x.length > 8,
"Include at least one number or symbol", isIncluded(/[0-9!@#$%¨&*_()+.]/),
"Uppercase and lowercase letter are required.", isIncluded(/(?=[A-Z])(?=[a-z])/)
]
};
const results = validate(inputs, validations);
/*
OUT: { email: [ 'Invalid email address.' ],
password: [ 'Be at least 8 characters or longer.',
'Uppercase and lowercase letter are required.' ] }
*/
// check if results is valid
if (isValid(results)) {
...
}
// check if results is not valid
if (isNotValid(results)) {
// handling error messages
...
}
Functions available | Description |
---|---|
validate(toValidate, validations) | Validate inputs and return error messages if any input invalid. |
isValid(results) | Check if results is valid. |
isNotValid(results) | Opposite of isValid function. |
validator | A library of string validators and sanitizers - list of validators |
FAQs
Tiny library to validate and set custom error messages easily.
The npm package validator-handler receives a total of 0 weekly downloads. As such, validator-handler popularity was classified as not popular.
We found that validator-handler 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.