
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
web参数验证工具
npm i valparams --save
const Valparams = require('valparams');
Valparams.locale('zh-cn');
function list(req, res, next) {
let validater = Valparams.setParams(req, {
sysID : {alias:'sid',type: 'int', required: true, desc: '所属系统id'},
page : {type: 'int', required: false, defValue: 1,range:{min:0}, desc: '页码'},
size : {type: 'int', required: false, defValue: 30, desc: '页面大小'},
offset: {type: 'int', required: false, defValue: 0, desc: '位移'}
}, {
choices : [{fields: ['sysID', 'page'], count: 1, force: false}],
});
if (validater.err && validater.err.length) {
console.log(validater.err);
}
else {
console.log(validater);
//{ query: { page: 1, size: 30 },
// body: {},
// params: { sysID: 2 },
// all: { sysID: 2, page: 1, size: 30 },
// err: null }
// raw: { query: { page: 1, size: 30 },
// body: {},
// params: { sid: 2 },
// }
//}
//do something
}
}
See the api document.
See the wiki document.
FAQs
web 参数验证工具
We found that valparams 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.