Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
const isOkay = require('is-okay');
const v = isOkay();
v.required('botId')
.string()
.is('not a reseved word [app]', b => b !== 'app')
.is('max 47 chars long', b => b.length <= 47);
v.required('wingbotToken')
.string();
v.optional('tier')
.default('free')
.is('one of allowed values', t => ['free', 'staging', 'production'].includes(t));
const data = v.okay(inputData);
const isOkay = require('is-okay');
const v = isOkay();
v.nullable('opt');
v.required('opt.req').string();
assert.deepEqual(v.okay({}), { opt: null });
assert.throws(() => {
v.okay({
opt: {}
});
});
assert.deepEqual(v.okay({
opt: { req: 'a' }
}), { opt: { req: 'a' } });
All root keys of input will be treated as optional.
const isOkay = require('is-okay');
const v = isOkay();
v.nullable('opt');
v.required('opt.req').string();
v.required('id');
const input = {};
assert.deepEqual(v.okay(input, true), {});
const isOkay = require('is-okay');
const v = isOkay();
v.nullable('some.nested');
v.nullable('array[].value');
v.optional('array[].opt').default(1);
v.optional('array[].notHere');
v.required('array[].required');
v.required('required');
v.nullable('some.nested');
v.nullable('array[].value')
.string();
v.optional('array[].opt')
.default(1);
v.optional('array[].notHere');
v.required('array[].required')
.string();
v.required('required')
.number();
assert.deepEqual(v.okay({
required: 1,
notHere: 2,
array: [
{ required: 'abv', removeMe: 4, value: null },
{ required: 'abc', out: 6, opt: 1 }
]
}), {
required: 1,
some: { nested: null },
array: [
{ required: 'abv', opt: 1, value: null },
{ required: 'abc', opt: 2, value: null }
]
});
{Rule} Validation configurator
Error
function
Validator callback
{Rule} Validation configurator
Kind: global class
this
this
this
this
this
this
this
Sets filter
Kind: instance method of Rule
this
Sets filter
Kind: instance method of Rule
this
Sets filter
Kind: instance method of Rule
this
Sets default value
Kind: instance method of Rule
Param | Type |
---|---|
defaultValue | * |
this
Adds validator
Kind: instance method of Rule
Param | Type |
---|---|
message | string |
fn | validator |
this
Value should not be empty (not falsey)
Kind: instance method of Rule
Error
Kind: global typedef
Properties
Name | Type |
---|---|
invalidKey | string |
status | number |
statusCode | number |
function
Validator callback
Kind: global typedef
Param | Type | Description |
---|---|---|
value | * | found value |
key | * | a key, where the value was found |
FAQs
Simple and fast type validator
We found that is-okay demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.