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.
node-result-error
Advanced tools
wrapper for data via error class ResultError
npm install node-result-error
# or
yarn add node-result-error
import {ResultOk, ResultFail} from 'node-result';
import {ResultError} from "node-result-error";
function checkParameter(parameters: object, parameterName: string, regExp: RegExp) {
try {
const parameterValue = parameters[parameterName];
if (!regExp.test(parameterValue)) {
return ResultFail(new ResultError({
statusCode: 400,
body: JSON.stringify({
error: 'Unsupported parameter value.',
parameterName,
parameterValue
})
}));
}
return ResultOk(null);
} catch (error) {
return ResultFail(error);
}
}
((ctx) => {
try {
const user = {
firstName: 'Alex',
lastName: '_Smith',
age: '28'
};
checkParameter(user, 'firstName', /^[A-Z][a-z]+$/).unwrap();
checkParameter(user, 'lastName', /^[A-Z][a-z]+$/).unwrap();
checkParameter(user, 'age', /^[1-9][0-9]?$/).unwrap();
ctx.status = 200;
ctx.body = 'ok';
} catch (error) {
if (error instanceof ResultError) {
const data = error.unwrap();
ctx.status = data.statusCode;
ctx.body = data.body;
} else {
console.error(error);
ctx.status = 500;
}
}
})();
FAQs
wrapper for data via error class ResultError
We found that node-result-error 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.