Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
A JSON validator and safe fallback utility for those rare times you can't trust your config.
A JSON validator and safe fallback utility for those rare times you can't trust your config.
Using npm:
npm install --save alby
Using yarn:
yarn add alby
It is not recommended at this time suitable to use alby for sanitizing JSON which describes any complex relationships or references between data sources, as these will be malformed.
jsonschema
is a proven tool for defining the expected structure, types and formatting of a particular JSON objects by declaring a corresponding schema. Unfortunately in practice, just defining the schema does not make it so. Poor form validation, developer errors or short-sighted data manipulation all conspire against the frontend developer. This can be particularly common case when third-partys are permitted to bulk datasets to your database. (See: Murphy's Law).
alby builds upon jsonschema
by taking its analysis results and in case of error, reverting these back to a safe default value.
In effect, it turns responses like this:
{
"uuid": "12d31a68-66ba-4857-8263-0512bace0385",
"branding": "Unknown column '%all%' in 'where clause'",
}
Into something more like this:
{
"uuid": "12d31a68-66ba-4857-8263-0512bace0385",
"branding": {
"backgroundColor": "firebrick",
"title": "Default Title"
}
}
Meanwhile, the actual errors from the failed response are still retained. This helps keep your frontend app working in production at a sensible default configuration, whilst you can fire off the failures using an analytics service.
const { Validator } = require('jsonschema');
const alby = require('alby');
const validator = new Validator();
const schema = {
id: '/Example',
type: 'object',
properties: {
text: {
title: 'string',
},
},
required: [
'title',
],
};
const backup = {
title: 'Default Title',
};
validator.addSchema(
schema,
);
const getErroneousJson = () => ({
title: 39248,
});
const {
result,
warnings,
} = alby(
validator,
schema,
backup,
getErroneousJson(),
);
console.log(result); // { title: 'Default Title' },
console.log(warnings); // Lots of warnings!
Please check out the tests for further detail.
FAQs
A JSON validator and safe fallback utility for those rare times you can't trust your config.
We found that alby 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.